Skip to content
This repository was archived by the owner on Nov 17, 2021. It is now read-only.

Commit 4b7c1dc

Browse files
authored
Merge pull request #249 from anguslees/rename
Rename git repo to github.com/bitnami/kubecfg
2 parents ad63b22 + b6b0496 commit 4b7c1dc

17 files changed

Lines changed: 23 additions & 24 deletions

File tree

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ modified the input files.
1111

1212
TL;DR: run `make vendor` whenever you add/remove a dependency. run `GO111MODULE=on go get -u .....` to update deps.
1313

14-
This project uses `go mod`, Go modules feature implemented since Go 1.11. This feature needs to be turned on explicitly via the `GO111MODULE` env variable, if you checkout the `kubecfg` repo in its canonical location in the GOPATH (i.e. $GOPATH/github.com/ksonnet/kubecfg). This feature is turned on _automatically_ if you checkout the `kubecfg` repo anywhere else in the filesystem.
14+
This project uses `go mod`, Go modules feature implemented since Go 1.11. This feature needs to be turned on explicitly via the `GO111MODULE` env variable, if you checkout the `kubecfg` repo in its canonical location in the GOPATH (i.e. $GOPATH/github.com/bitnami/kubecfg). This feature is turned on _automatically_ if you checkout the `kubecfg` repo anywhere else in the filesystem.
1515

1616

1717
This repository is configured to use Go modules as a source of truth for dependency information,

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# kubecfg
22

3-
[![Build Status](https://travis-ci.org/ksonnet/kubecfg.svg?branch=master)](https://travis-ci.org/ksonnet/kubecfg)
4-
[![Go Report Card](https://goreportcard.com/badge/github.com/ksonnet/kubecfg)](https://goreportcard.com/report/github.com/ksonnet/kubecfg)
3+
[![Build Status](https://travis-ci.org/bitnami/kubecfg.svg?branch=master)](https://travis-ci.org/bitnami/kubecfg)
4+
[![Go Report Card](https://goreportcard.com/badge/github.com/bitnami/kubecfg)](https://goreportcard.com/report/github.com/bitnami/kubecfg)
55

66
A tool for managing Kubernetes resources as code.
77

@@ -17,7 +17,7 @@ similarly-named internal tool ;)
1717
## Install
1818

1919
Pre-compiled executables exist for some platforms on
20-
the [Github releases](https://github.com/ksonnet/kubecfg/releases)
20+
the [Github releases](https://github.com/bitnami/kubecfg/releases)
2121
page.
2222

2323
On macOS, it can also be installed via [Homebrew](https://brew.sh/):
@@ -27,7 +27,7 @@ To build from source:
2727

2828
```console
2929
% PATH=$PATH:$GOPATH/bin
30-
% go get github.com/ksonnet/kubecfg
30+
% go get github.com/bitnami/kubecfg
3131
```
3232

3333
## Quickstart

cmd/delete.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ package cmd
1818
import (
1919
"github.com/spf13/cobra"
2020

21-
"github.com/ksonnet/kubecfg/pkg/kubecfg"
21+
"github.com/bitnami/kubecfg/pkg/kubecfg"
2222
)
2323

2424
const (

cmd/diff.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ package cmd
1818
import (
1919
"github.com/spf13/cobra"
2020

21-
"github.com/ksonnet/kubecfg/pkg/kubecfg"
21+
"github.com/bitnami/kubecfg/pkg/kubecfg"
2222
)
2323

2424
const flagDiffStrategy = "diff-strategy"

cmd/root.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ import (
4040
"k8s.io/client-go/restmapper"
4141
"k8s.io/client-go/tools/clientcmd"
4242

43-
"github.com/ksonnet/kubecfg/utils"
43+
"github.com/bitnami/kubecfg/utils"
4444

4545
// Register auth plugins
4646
_ "k8s.io/client-go/plugin/pkg/client/auth"

cmd/show.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ package cmd
1818
import (
1919
"github.com/spf13/cobra"
2020

21-
"github.com/ksonnet/kubecfg/pkg/kubecfg"
21+
"github.com/bitnami/kubecfg/pkg/kubecfg"
2222
)
2323

2424
const (

cmd/update.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ package cmd
1818
import (
1919
"github.com/spf13/cobra"
2020

21-
"github.com/ksonnet/kubecfg/pkg/kubecfg"
21+
"github.com/bitnami/kubecfg/pkg/kubecfg"
2222
)
2323

2424
const (

cmd/validate.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ package cmd
1818
import (
1919
"github.com/spf13/cobra"
2020

21-
"github.com/ksonnet/kubecfg/pkg/kubecfg"
21+
"github.com/bitnami/kubecfg/pkg/kubecfg"
2222
)
2323

2424
const (

examples/guestbook.jsonnet

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,8 @@
2424
// kubecfg delete guestbook.jsonnet
2525
// ```
2626

27-
// This example uses kube.libsonnet from Bitnami. There are several
28-
// other Kubernetes libraries available (notably ksonnet/ksonnet-lib),
29-
// or write your own!
27+
// This example uses kube.libsonnet from Bitnami. There are other
28+
// Kubernetes libraries available, or write your own!
3029
local kube = import "https://github.com/bitnami-labs/kube-libsonnet/raw/52ba963ca44f7a4960aeae9ee0fbee44726e481f/kube.libsonnet";
3130

3231
// A function that returns 2 k8s objects: a redis Deployment and Service

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
module github.com/ksonnet/kubecfg
1+
module github.com/bitnami/kubecfg
22

33
require (
44
contrib.go.opencensus.io/exporter/ocagent v0.4.6 // indirect

0 commit comments

Comments
 (0)