diff --git a/.travis.yml b/.travis.yml index 2f0c8fbd..92999ce4 100644 --- a/.travis.yml +++ b/.travis.yml @@ -25,5 +25,5 @@ deploy: - _dist/k3d-linux-arm64 - _dist/k3d-windows-amd64.exe on: - repo: iwilltry42/k3d + repo: rancher/k3d tags: true diff --git a/Makefile b/Makefile index 8b322b0d..6131ede4 100644 --- a/Makefile +++ b/Makefile @@ -16,7 +16,7 @@ PKG := $(shell go mod vendor) TAGS := TESTS := . TESTFLAGS := -LDFLAGS := -w -s -X github.com/iwilltry42/k3d/version.Version=${GIT_TAG} +LDFLAGS := -w -s -X github.com/rancher/k3d/version.Version=${GIT_TAG} GOFLAGS := BINDIR := $(CURDIR)/bin BINARIES := k3d diff --git a/README.md b/README.md index 2f156229..d4d97f56 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ # k3d -[![Build Status](https://travis-ci.com/iwilltry42/k3d.svg?branch=master)](https://travis-ci.com/iwilltry42/k3d) -[![Go Report Card](https://goreportcard.com/badge/github.com/iwilltry42/k3d)](https://goreportcard.com/report/github.com/iwilltry42/k3d) +[![Build Status](https://travis-ci.com/rancher/k3d.svg?branch=master)](https://travis-ci.com/rancher/k3d) +[![Go Report Card](https://goreportcard.com/badge/github.com/rancher/k3d)](https://goreportcard.com/report/github.com/rancher/k3d) ## k3s in docker @@ -20,16 +20,16 @@ Thanks to @zeerorg for the original work! You have several options there: - use the install script to grab the latest release: - - wget: `wget -q -O - https://raw.githubusercontent.com/iwilltry42/k3d/master/install.sh | bash` - - curl: `curl -s https://raw.githubusercontent.com/iwilltry42/k3d/master/install.sh | bash` -- Grab a release from the [release tab](https://github.com/iwilltry42/k3d/releases) and install it yourself. -- Via go: `go install github.com/iwilltry42/k3d` + - wget: `wget -q -O - https://raw.githubusercontent.com/rancher/k3d/master/install.sh | bash` + - curl: `curl -s https://raw.githubusercontent.com/rancher/k3d/master/install.sh | bash` +- Grab a release from the [release tab](https://github.com/rancher/k3d/releases) and install it yourself. +- Via go: `go install github.com/rancher/k3d` or... ## Build -1. Clone this repo, e.g. via `go get -u github.com/iwilltry42/k3d/releases` +1. Clone this repo, e.g. via `go get -u github.com/rancher/k3d/releases` 2. Inside the repo run - `make` to build for your current system - `go install` to install it to your `GOPATH` diff --git a/go.mod b/go.mod index 7f069531..4d3f9f05 100644 --- a/go.mod +++ b/go.mod @@ -1,4 +1,4 @@ -module github.com/iwilltry42/k3d +module github.com/rancher/k3d go 1.12 diff --git a/install.sh b/install.sh index 8b31e6dc..1765b054 100755 --- a/install.sh +++ b/install.sh @@ -1,7 +1,7 @@ #!/usr/bin/env bash APP_NAME="k3d" -REPO_URL="https://github.com/iwilltry42/k3d" +REPO_URL="https://github.com/rancher/k3d" : ${USE_SUDO:="true"} : ${K3D_INSTALL_DIR:="/usr/local/bin"} diff --git a/main.go b/main.go index f38f5a85..bb66e12c 100644 --- a/main.go +++ b/main.go @@ -4,8 +4,8 @@ import ( "log" "os" - run "github.com/iwilltry42/k3d/cli" - "github.com/iwilltry42/k3d/version" + run "github.com/rancher/k3d/cli" + "github.com/rancher/k3d/version" "github.com/urfave/cli" ) @@ -19,9 +19,16 @@ func main() { app.Version = version.GetVersion() app.Authors = []cli.Author{ cli.Author{ - Name: "iwilltry42", + Name: "Thorsten Klein", Email: "iwilltry42@gmail.com", }, + cli.Author{ + Name: "Rishabh Gupta", + Email: "r.g.gupta@outlook.com", + }, + cli.Author{ + Name: "Darren Shepherd", + }, } // commands that you can execute