Skip to content

Commit

Permalink
migrate from nuvo to maorfr
Browse files Browse the repository at this point in the history
  • Loading branch information
maorfr committed Mar 16, 2019
1 parent f3f8aee commit fc65d87
Show file tree
Hide file tree
Showing 9 changed files with 17 additions and 17 deletions.
2 changes: 1 addition & 1 deletion .goreleaser.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,4 +25,4 @@ dockers:
- binary: skbn
dockerfile: Dockerfile
image_templates:
- "nuvo/{{.ProjectName}}:{{ .Tag }}"
- "maorfr/{{.ProjectName}}:{{ .Tag }}"
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ build: fmt vet
# Build skbn docker image
docker: fmt vet
cp bin/skbn skbn
docker build -t nuvo/skbn:latest .
docker build -t maorfr/skbn:latest .
rm skbn


Expand All @@ -33,7 +33,7 @@ ifdef TRAVIS
ifdef DOCKER_USER
ifdef DOCKER_PASSWORD
docker login -u $(DOCKER_USER) -p $(DOCKER_PASSWORD)
docker push nuvo/skbn:latest
docker push maorfr/skbn:latest
endif
endif
endif
Expand Down
16 changes: 8 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
[![Release](https://img.shields.io/github/release/nuvo/skbn.svg)](https://github.com/nuvo/skbn/releases)
[![Travis branch](https://img.shields.io/travis/nuvo/skbn/master.svg)](https://travis-ci.org/nuvo/skbn)
[![Docker Pulls](https://img.shields.io/docker/pulls/nuvo/skbn.svg)](https://hub.docker.com/r/nuvo/skbn/)
[![Go Report Card](https://goreportcard.com/badge/github.com/nuvo/skbn)](https://goreportcard.com/report/github.com/nuvo/skbn)
[![license](https://img.shields.io/github/license/nuvo/skbn.svg)](https://github.com/nuvo/skbn/blob/master/LICENSE)
[![Release](https://img.shields.io/github/release/maorfr/skbn.svg)](https://github.com/maorfr/skbn/releases)
[![Travis branch](https://img.shields.io/travis/maorfr/skbn/master.svg)](https://travis-ci.org/maorfr/skbn)
[![Docker Pulls](https://img.shields.io/docker/pulls/maorfr/skbn.svg)](https://hub.docker.com/r/maorfr/skbn/)
[![Go Report Card](https://goreportcard.com/badge/github.com/maorfr/skbn)](https://goreportcard.com/report/github.com/maorfr/skbn)
[![license](https://img.shields.io/github/license/maorfr/skbn.svg)](https://github.com/maorfr/skbn/blob/master/LICENSE)

# Skbn

Expand All @@ -23,13 +23,13 @@ Skbn currently supports the following providers:

### From a release

Download the latest release from the [Releases page](https://github.com/nuvo/skbn/releases) or use it with a [Docker image](https://hub.docker.com/r/nuvo/skbn)
Download the latest release from the [Releases page](https://github.com/maorfr/skbn/releases) or use it with a [Docker image](https://hub.docker.com/r/maorfr/skbn)

### From source

```
mkdir -p $GOPATH/src/github.com/nuvo && cd $_
git clone https://github.com/nuvo/skbn.git && cd skbn
mkdir -p $GOPATH/src/github.com/maorfr && cd $_
git clone https://github.com/maorfr/skbn.git && cd skbn
make
```

Expand Down
2 changes: 1 addition & 1 deletion cmd/skbn.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (
"log"
"os"

"github.com/nuvo/skbn/pkg/skbn"
"github.com/maorfr/skbn/pkg/skbn"

"github.com/spf13/cobra"
)
Expand Down
2 changes: 1 addition & 1 deletion examples/code/example.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package main
import (
"log"

"github.com/nuvo/skbn/pkg/skbn"
"github.com/maorfr/skbn/pkg/skbn"
)

func main() {
Expand Down
2 changes: 1 addition & 1 deletion examples/in-cluster/job.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ spec:
serviceAccountName: skbn
containers:
- name: skbn
image: nuvo/skbn
image: maorfr/skbn
command: ["skbn"]
args:
- cp
Expand Down
2 changes: 1 addition & 1 deletion pkg/skbn/kube.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import (
"path/filepath"
"strings"

"github.com/nuvo/skbn/pkg/utils"
"github.com/maorfr/skbn/pkg/utils"

core_v1 "k8s.io/api/core/v1"
"k8s.io/apimachinery/pkg/runtime"
Expand Down
2 changes: 1 addition & 1 deletion pkg/skbn/s3.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import (
"strconv"
"strings"

"github.com/nuvo/skbn/pkg/utils"
"github.com/maorfr/skbn/pkg/utils"

"github.com/aws/aws-sdk-go/aws"
"github.com/aws/aws-sdk-go/aws/session"
Expand Down
2 changes: 1 addition & 1 deletion pkg/skbn/skbn.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import (
"math"
"path/filepath"

"github.com/nuvo/skbn/pkg/utils"
"github.com/maorfr/skbn/pkg/utils"

"github.com/djherbis/buffer"
"gopkg.in/djherbis/nio.v2"
Expand Down

0 comments on commit fc65d87

Please sign in to comment.