diff --git a/.circleci/config.yml b/.circleci/config.yml index ca50af42d..c0807a893 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -1,7 +1,7 @@ version: 2 jobs: build: - working_directory: /go/src/k8s.io/helm + working_directory: /go/src/helm.sh/helm parallelism: 3 docker: - image: circleci/golang:1.12 @@ -13,14 +13,14 @@ jobs: - restore_cache: key: gopkg-{{ .Branch }}-{{ checksum "Gopkg.lock" }} paths: - - /go/src/k8s.io/helm/vendor + - /go/src/helm.sh/helm/vendor - run: name: install dependencies command: .circleci/bootstrap.sh - save_cache: key: gopkg-{{ .Branch }}-{{ checksum "Gopkg.lock" }} paths: - - /go/src/k8s.io/helm/vendor + - /go/src/helm.sh/helm/vendor - restore_cache: keys: - build-cache-{{ .Branch }}-{{ .Environment.CIRCLE_PREVIOUS_BUILD_NUM }} diff --git a/.golangci.yml b/.golangci.yml index 3961e05ad..b391a3e18 100644 --- a/.golangci.yml +++ b/.golangci.yml @@ -22,6 +22,6 @@ linters-settings: gofmt: simplify: true goimports: - local-prefixes: k8s.io/helm + local-prefixes: helm.sh/helm dupl: threshold: 400 diff --git a/Makefile b/Makefile index ca9410310..0bf02a518 100644 --- a/Makefile +++ b/Makefile @@ -33,15 +33,15 @@ BINARY_VERSION ?= ${GIT_TAG} # Only set Version if building a tag or VERSION is set ifneq ($(BINARY_VERSION),) - LDFLAGS += -X k8s.io/helm/internal/version.version=${BINARY_VERSION} + LDFLAGS += -X helm.sh/helm/internal/version.version=${BINARY_VERSION} endif # Clear the "unreleased" string in BuildMetadata ifneq ($(GIT_TAG),) - LDFLAGS += -X k8s.io/helm/internal/version.metadata= + LDFLAGS += -X helm.sh/helm/internal/version.metadata= endif -LDFLAGS += -X k8s.io/helm/internal/version.gitCommit=${GIT_COMMIT} -LDFLAGS += -X k8s.io/helm/internal/version.gitTreeState=${GIT_DIRTY} +LDFLAGS += -X helm.sh/helm/internal/version.gitCommit=${GIT_COMMIT} +LDFLAGS += -X helm.sh/helm/internal/version.gitTreeState=${GIT_DIRTY} .PHONY: all all: build @@ -53,7 +53,7 @@ all: build build: $(BINDIR)/$(BINNAME) $(BINDIR)/$(BINNAME): $(SRC) vendor - go build $(GOFLAGS) -tags '$(TAGS)' -ldflags '$(LDFLAGS)' -o $(BINDIR)/$(BINNAME) k8s.io/helm/cmd/helm + go build $(GOFLAGS) -tags '$(TAGS)' -ldflags '$(LDFLAGS)' -o $(BINDIR)/$(BINNAME) helm.sh/helm/cmd/helm # ------------------------------------------------------------------------------ # test @@ -85,7 +85,7 @@ coverage: .PHONY: format format: $(GOIMPORTS) - go list -f '{{.Dir}}' ./... | xargs $(GOIMPORTS) -w -local k8s.io/helm + go list -f '{{.Dir}}' ./... | xargs $(GOIMPORTS) -w -local helm.sh/helm # ------------------------------------------------------------------------------ # dependencies @@ -122,7 +122,7 @@ Gopkg.toml: $(DEP) build-cross: LDFLAGS += -extldflags "-static" build-cross: vendor build-cross: $(GOX) - CGO_ENABLED=0 $(GOX) -parallel=3 -output="_dist/{{.OS}}-{{.Arch}}/$(BINNAME)" -osarch='$(TARGETS)' $(GOFLAGS) -tags '$(TAGS)' -ldflags '$(LDFLAGS)' k8s.io/helm/cmd/helm + CGO_ENABLED=0 $(GOX) -parallel=3 -output="_dist/{{.OS}}-{{.Arch}}/$(BINNAME)" -osarch='$(TARGETS)' $(GOFLAGS) -tags '$(TAGS)' -ldflags '$(LDFLAGS)' helm.sh/helm/cmd/helm .PHONY: dist dist: diff --git a/README.md b/README.md index 2239f8e50..1d50f6116 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@ [![CircleCI](https://circleci.com/gh/helm/helm.svg?style=shield)](https://circleci.com/gh/helm/helm) [![Go Report Card](https://goreportcard.com/badge/github.com/helm/helm)](https://goreportcard.com/report/github.com/helm/helm) -[![GoDoc](https://godoc.org/k8s.io/helm?status.svg)](https://godoc.org/k8s.io/helm) +[![GoDoc](https://godoc.org/helm.sh/helm?status.svg)](https://godoc.org/helm.sh/helm) Helm is a tool for managing Charts. Charts are packages of pre-configured Kubernetes resources. diff --git a/cmd/helm/chart.go b/cmd/helm/chart.go index 8cfed8801..dd4af9273 100644 --- a/cmd/helm/chart.go +++ b/cmd/helm/chart.go @@ -21,7 +21,7 @@ import ( "github.com/sirupsen/logrus" "github.com/spf13/cobra" - "k8s.io/helm/pkg/action" + "helm.sh/helm/pkg/action" ) const chartHelp = ` diff --git a/cmd/helm/chart_export.go b/cmd/helm/chart_export.go index cf57f0668..117220f9d 100644 --- a/cmd/helm/chart_export.go +++ b/cmd/helm/chart_export.go @@ -21,8 +21,8 @@ import ( "github.com/spf13/cobra" - "k8s.io/helm/cmd/helm/require" - "k8s.io/helm/pkg/action" + "helm.sh/helm/cmd/helm/require" + "helm.sh/helm/pkg/action" ) const chartExportDesc = ` diff --git a/cmd/helm/chart_list.go b/cmd/helm/chart_list.go index f3ac4e5f2..868fcd15a 100644 --- a/cmd/helm/chart_list.go +++ b/cmd/helm/chart_list.go @@ -21,7 +21,7 @@ import ( "github.com/spf13/cobra" - "k8s.io/helm/pkg/action" + "helm.sh/helm/pkg/action" ) const chartListDesc = ` diff --git a/cmd/helm/chart_pull.go b/cmd/helm/chart_pull.go index af6c82318..ade952cb8 100644 --- a/cmd/helm/chart_pull.go +++ b/cmd/helm/chart_pull.go @@ -21,8 +21,8 @@ import ( "github.com/spf13/cobra" - "k8s.io/helm/cmd/helm/require" - "k8s.io/helm/pkg/action" + "helm.sh/helm/cmd/helm/require" + "helm.sh/helm/pkg/action" ) const chartPullDesc = ` diff --git a/cmd/helm/chart_push.go b/cmd/helm/chart_push.go index eb6d8325a..6f5591b97 100644 --- a/cmd/helm/chart_push.go +++ b/cmd/helm/chart_push.go @@ -21,8 +21,8 @@ import ( "github.com/spf13/cobra" - "k8s.io/helm/cmd/helm/require" - "k8s.io/helm/pkg/action" + "helm.sh/helm/cmd/helm/require" + "helm.sh/helm/pkg/action" ) const chartPushDesc = ` diff --git a/cmd/helm/chart_remove.go b/cmd/helm/chart_remove.go index 672799d6c..5ab1d64c3 100644 --- a/cmd/helm/chart_remove.go +++ b/cmd/helm/chart_remove.go @@ -21,8 +21,8 @@ import ( "github.com/spf13/cobra" - "k8s.io/helm/cmd/helm/require" - "k8s.io/helm/pkg/action" + "helm.sh/helm/cmd/helm/require" + "helm.sh/helm/pkg/action" ) const chartRemoveDesc = ` diff --git a/cmd/helm/chart_save.go b/cmd/helm/chart_save.go index 0bd451587..c04bde9ba 100644 --- a/cmd/helm/chart_save.go +++ b/cmd/helm/chart_save.go @@ -21,8 +21,8 @@ import ( "github.com/spf13/cobra" - "k8s.io/helm/cmd/helm/require" - "k8s.io/helm/pkg/action" + "helm.sh/helm/cmd/helm/require" + "helm.sh/helm/pkg/action" ) const chartSaveDesc = ` diff --git a/cmd/helm/create.go b/cmd/helm/create.go index 2e4ddebc5..0caf11d42 100644 --- a/cmd/helm/create.go +++ b/cmd/helm/create.go @@ -23,9 +23,9 @@ import ( "github.com/spf13/cobra" - "k8s.io/helm/cmd/helm/require" - "k8s.io/helm/pkg/chart" - "k8s.io/helm/pkg/chartutil" + "helm.sh/helm/cmd/helm/require" + "helm.sh/helm/pkg/chart" + "helm.sh/helm/pkg/chartutil" ) const createDesc = ` diff --git a/cmd/helm/create_test.go b/cmd/helm/create_test.go index a97f34efd..33d3b8eee 100644 --- a/cmd/helm/create_test.go +++ b/cmd/helm/create_test.go @@ -23,9 +23,9 @@ import ( "path/filepath" "testing" - "k8s.io/helm/pkg/chart" - "k8s.io/helm/pkg/chart/loader" - "k8s.io/helm/pkg/chartutil" + "helm.sh/helm/pkg/chart" + "helm.sh/helm/pkg/chart/loader" + "helm.sh/helm/pkg/chartutil" ) func TestCreateCmd(t *testing.T) { diff --git a/cmd/helm/dependency.go b/cmd/helm/dependency.go index e497158aa..3942d9b19 100644 --- a/cmd/helm/dependency.go +++ b/cmd/helm/dependency.go @@ -21,8 +21,8 @@ import ( "github.com/spf13/cobra" - "k8s.io/helm/cmd/helm/require" - "k8s.io/helm/pkg/action" + "helm.sh/helm/cmd/helm/require" + "helm.sh/helm/pkg/action" ) const dependencyDesc = ` diff --git a/cmd/helm/dependency_build.go b/cmd/helm/dependency_build.go index 2b05b355e..1162fa883 100644 --- a/cmd/helm/dependency_build.go +++ b/cmd/helm/dependency_build.go @@ -23,10 +23,10 @@ import ( "github.com/spf13/cobra" "k8s.io/client-go/util/homedir" - "k8s.io/helm/cmd/helm/require" - "k8s.io/helm/pkg/action" - "k8s.io/helm/pkg/downloader" - "k8s.io/helm/pkg/getter" + "helm.sh/helm/cmd/helm/require" + "helm.sh/helm/pkg/action" + "helm.sh/helm/pkg/downloader" + "helm.sh/helm/pkg/getter" ) const dependencyBuildDesc = ` diff --git a/cmd/helm/dependency_build_test.go b/cmd/helm/dependency_build_test.go index 67dc0db91..0d4c5bf04 100644 --- a/cmd/helm/dependency_build_test.go +++ b/cmd/helm/dependency_build_test.go @@ -21,9 +21,9 @@ import ( "strings" "testing" - "k8s.io/helm/pkg/provenance" - "k8s.io/helm/pkg/repo" - "k8s.io/helm/pkg/repo/repotest" + "helm.sh/helm/pkg/provenance" + "helm.sh/helm/pkg/repo" + "helm.sh/helm/pkg/repo/repotest" ) func TestDependencyBuildCmd(t *testing.T) { diff --git a/cmd/helm/dependency_update.go b/cmd/helm/dependency_update.go index bad61e709..623bce755 100644 --- a/cmd/helm/dependency_update.go +++ b/cmd/helm/dependency_update.go @@ -21,10 +21,10 @@ import ( "github.com/spf13/cobra" - "k8s.io/helm/cmd/helm/require" - "k8s.io/helm/pkg/action" - "k8s.io/helm/pkg/downloader" - "k8s.io/helm/pkg/getter" + "helm.sh/helm/cmd/helm/require" + "helm.sh/helm/pkg/action" + "helm.sh/helm/pkg/downloader" + "helm.sh/helm/pkg/getter" ) const dependencyUpDesc = ` diff --git a/cmd/helm/dependency_update_test.go b/cmd/helm/dependency_update_test.go index 1cbe5979b..7e366bde2 100644 --- a/cmd/helm/dependency_update_test.go +++ b/cmd/helm/dependency_update_test.go @@ -23,11 +23,11 @@ import ( "strings" "testing" - "k8s.io/helm/pkg/chart" - "k8s.io/helm/pkg/chartutil" - "k8s.io/helm/pkg/provenance" - "k8s.io/helm/pkg/repo" - "k8s.io/helm/pkg/repo/repotest" + "helm.sh/helm/pkg/chart" + "helm.sh/helm/pkg/chartutil" + "helm.sh/helm/pkg/provenance" + "helm.sh/helm/pkg/repo" + "helm.sh/helm/pkg/repo/repotest" ) func TestDependencyUpdateCmd(t *testing.T) { diff --git a/cmd/helm/docs.go b/cmd/helm/docs.go index fb219d490..e3846eeb3 100644 --- a/cmd/helm/docs.go +++ b/cmd/helm/docs.go @@ -23,7 +23,7 @@ import ( "github.com/spf13/cobra" "github.com/spf13/cobra/doc" - "k8s.io/helm/cmd/helm/require" + "helm.sh/helm/cmd/helm/require" ) const docsDesc = ` diff --git a/cmd/helm/get.go b/cmd/helm/get.go index e6e853305..bc98c33c2 100644 --- a/cmd/helm/get.go +++ b/cmd/helm/get.go @@ -21,8 +21,8 @@ import ( "github.com/spf13/cobra" - "k8s.io/helm/cmd/helm/require" - "k8s.io/helm/pkg/action" + "helm.sh/helm/cmd/helm/require" + "helm.sh/helm/pkg/action" ) var getHelp = ` diff --git a/cmd/helm/get_hooks.go b/cmd/helm/get_hooks.go index 6ac8aed6a..82a375dab 100644 --- a/cmd/helm/get_hooks.go +++ b/cmd/helm/get_hooks.go @@ -22,8 +22,8 @@ import ( "github.com/spf13/cobra" - "k8s.io/helm/cmd/helm/require" - "k8s.io/helm/pkg/action" + "helm.sh/helm/cmd/helm/require" + "helm.sh/helm/pkg/action" ) const getHooksHelp = ` diff --git a/cmd/helm/get_hooks_test.go b/cmd/helm/get_hooks_test.go index 6b58ee3f1..990ae77be 100644 --- a/cmd/helm/get_hooks_test.go +++ b/cmd/helm/get_hooks_test.go @@ -19,7 +19,7 @@ package main import ( "testing" - "k8s.io/helm/pkg/release" + "helm.sh/helm/pkg/release" ) func TestGetHooks(t *testing.T) { diff --git a/cmd/helm/get_manifest.go b/cmd/helm/get_manifest.go index 8a76c7f2e..c9e13ee98 100644 --- a/cmd/helm/get_manifest.go +++ b/cmd/helm/get_manifest.go @@ -22,8 +22,8 @@ import ( "github.com/spf13/cobra" - "k8s.io/helm/cmd/helm/require" - "k8s.io/helm/pkg/action" + "helm.sh/helm/cmd/helm/require" + "helm.sh/helm/pkg/action" ) var getManifestHelp = ` diff --git a/cmd/helm/get_manifest_test.go b/cmd/helm/get_manifest_test.go index 28a0ec1f0..93a0bbd6d 100644 --- a/cmd/helm/get_manifest_test.go +++ b/cmd/helm/get_manifest_test.go @@ -19,7 +19,7 @@ package main import ( "testing" - "k8s.io/helm/pkg/release" + "helm.sh/helm/pkg/release" ) func TestGetManifest(t *testing.T) { diff --git a/cmd/helm/get_test.go b/cmd/helm/get_test.go index 0cecd6802..21eba28e1 100644 --- a/cmd/helm/get_test.go +++ b/cmd/helm/get_test.go @@ -19,7 +19,7 @@ package main import ( "testing" - "k8s.io/helm/pkg/release" + "helm.sh/helm/pkg/release" ) func TestGetCmd(t *testing.T) { diff --git a/cmd/helm/get_values.go b/cmd/helm/get_values.go index f29f6c865..1f998dbf0 100644 --- a/cmd/helm/get_values.go +++ b/cmd/helm/get_values.go @@ -22,8 +22,8 @@ import ( "github.com/spf13/cobra" - "k8s.io/helm/cmd/helm/require" - "k8s.io/helm/pkg/action" + "helm.sh/helm/cmd/helm/require" + "helm.sh/helm/pkg/action" ) var getValuesHelp = ` diff --git a/cmd/helm/get_values_test.go b/cmd/helm/get_values_test.go index 56b247032..9673e5312 100644 --- a/cmd/helm/get_values_test.go +++ b/cmd/helm/get_values_test.go @@ -19,7 +19,7 @@ package main import ( "testing" - "k8s.io/helm/pkg/release" + "helm.sh/helm/pkg/release" ) func TestGetValuesCmd(t *testing.T) { diff --git a/cmd/helm/helm.go b/cmd/helm/helm.go index b50bd152b..3a780da21 100644 --- a/cmd/helm/helm.go +++ b/cmd/helm/helm.go @@ -14,7 +14,7 @@ See the License for the specific language governing permissions and limitations under the License. */ -package main // import "k8s.io/helm/cmd/helm" +package main // import "helm.sh/helm/cmd/helm" import ( "fmt" @@ -26,11 +26,11 @@ import ( "k8s.io/cli-runtime/pkg/genericclioptions" _ "k8s.io/client-go/plugin/pkg/client/auth" - "k8s.io/helm/pkg/action" - "k8s.io/helm/pkg/cli" - "k8s.io/helm/pkg/kube" - "k8s.io/helm/pkg/storage" - "k8s.io/helm/pkg/storage/driver" + "helm.sh/helm/pkg/action" + "helm.sh/helm/pkg/cli" + "helm.sh/helm/pkg/kube" + "helm.sh/helm/pkg/storage" + "helm.sh/helm/pkg/storage/driver" ) var ( diff --git a/cmd/helm/helm_test.go b/cmd/helm/helm_test.go index f5b39cbb6..755c0a3a2 100644 --- a/cmd/helm/helm_test.go +++ b/cmd/helm/helm_test.go @@ -28,14 +28,14 @@ import ( "github.com/spf13/cobra" "k8s.io/client-go/kubernetes/fake" - "k8s.io/helm/internal/test" - "k8s.io/helm/pkg/action" - "k8s.io/helm/pkg/helmpath" - "k8s.io/helm/pkg/kube" - "k8s.io/helm/pkg/release" - "k8s.io/helm/pkg/repo" - "k8s.io/helm/pkg/storage" - "k8s.io/helm/pkg/storage/driver" + "helm.sh/helm/internal/test" + "helm.sh/helm/pkg/action" + "helm.sh/helm/pkg/helmpath" + "helm.sh/helm/pkg/kube" + "helm.sh/helm/pkg/release" + "helm.sh/helm/pkg/repo" + "helm.sh/helm/pkg/storage" + "helm.sh/helm/pkg/storage/driver" ) func testTimestamper() time.Time { return time.Unix(242085845, 0).UTC() } diff --git a/cmd/helm/history.go b/cmd/helm/history.go index b16f6c8d0..699cf38ca 100644 --- a/cmd/helm/history.go +++ b/cmd/helm/history.go @@ -22,8 +22,8 @@ import ( "github.com/spf13/cobra" - "k8s.io/helm/cmd/helm/require" - "k8s.io/helm/pkg/action" + "helm.sh/helm/cmd/helm/require" + "helm.sh/helm/pkg/action" ) var historyHelp = ` diff --git a/cmd/helm/history_test.go b/cmd/helm/history_test.go index b04b8109f..b9d1290d9 100644 --- a/cmd/helm/history_test.go +++ b/cmd/helm/history_test.go @@ -19,7 +19,7 @@ package main import ( "testing" - "k8s.io/helm/pkg/release" + "helm.sh/helm/pkg/release" ) func TestHistoryCmd(t *testing.T) { diff --git a/cmd/helm/home.go b/cmd/helm/home.go index 24d0a40a2..2f6e9f31a 100644 --- a/cmd/helm/home.go +++ b/cmd/helm/home.go @@ -22,7 +22,7 @@ import ( "github.com/spf13/cobra" - "k8s.io/helm/cmd/helm/require" + "helm.sh/helm/cmd/helm/require" ) var longHomeHelp = ` diff --git a/cmd/helm/init.go b/cmd/helm/init.go index 57f562b74..a3f6e721d 100644 --- a/cmd/helm/init.go +++ b/cmd/helm/init.go @@ -27,12 +27,12 @@ import ( "github.com/pkg/errors" "github.com/spf13/cobra" - "k8s.io/helm/cmd/helm/require" - "k8s.io/helm/pkg/getter" - "k8s.io/helm/pkg/helmpath" - "k8s.io/helm/pkg/plugin" - "k8s.io/helm/pkg/plugin/installer" - "k8s.io/helm/pkg/repo" + "helm.sh/helm/cmd/helm/require" + "helm.sh/helm/pkg/getter" + "helm.sh/helm/pkg/helmpath" + "helm.sh/helm/pkg/plugin" + "helm.sh/helm/pkg/plugin/installer" + "helm.sh/helm/pkg/repo" ) const initDesc = ` diff --git a/cmd/helm/init_test.go b/cmd/helm/init_test.go index 964846c4f..270b12672 100644 --- a/cmd/helm/init_test.go +++ b/cmd/helm/init_test.go @@ -21,7 +21,7 @@ import ( "os" "testing" - "k8s.io/helm/pkg/helmpath" + "helm.sh/helm/pkg/helmpath" ) const testPluginsFile = "testdata/plugins.yaml" diff --git a/cmd/helm/install.go b/cmd/helm/install.go index de20f0f68..b0f8919d2 100644 --- a/cmd/helm/install.go +++ b/cmd/helm/install.go @@ -19,17 +19,17 @@ package main import ( "io" - "k8s.io/helm/pkg/release" + "helm.sh/helm/pkg/release" "github.com/spf13/cobra" "github.com/spf13/pflag" - "k8s.io/helm/cmd/helm/require" - "k8s.io/helm/pkg/action" - "k8s.io/helm/pkg/chart/loader" - "k8s.io/helm/pkg/chartutil" - "k8s.io/helm/pkg/downloader" - "k8s.io/helm/pkg/getter" + "helm.sh/helm/cmd/helm/require" + "helm.sh/helm/pkg/action" + "helm.sh/helm/pkg/chart/loader" + "helm.sh/helm/pkg/chartutil" + "helm.sh/helm/pkg/downloader" + "helm.sh/helm/pkg/getter" ) const installDesc = ` diff --git a/cmd/helm/lint.go b/cmd/helm/lint.go index eb6c7402a..65797e67b 100644 --- a/cmd/helm/lint.go +++ b/cmd/helm/lint.go @@ -24,7 +24,7 @@ import ( "github.com/pkg/errors" "github.com/spf13/cobra" - "k8s.io/helm/pkg/action" + "helm.sh/helm/pkg/action" ) var longLintHelp = ` diff --git a/cmd/helm/list.go b/cmd/helm/list.go index 2c3a89cfb..7ed340482 100644 --- a/cmd/helm/list.go +++ b/cmd/helm/list.go @@ -22,8 +22,8 @@ import ( "github.com/spf13/cobra" - "k8s.io/helm/cmd/helm/require" - "k8s.io/helm/pkg/action" + "helm.sh/helm/cmd/helm/require" + "helm.sh/helm/pkg/action" ) var listHelp = ` diff --git a/cmd/helm/load_plugins.go b/cmd/helm/load_plugins.go index 309fad3c1..8c8dc3495 100644 --- a/cmd/helm/load_plugins.go +++ b/cmd/helm/load_plugins.go @@ -26,7 +26,7 @@ import ( "github.com/pkg/errors" "github.com/spf13/cobra" - "k8s.io/helm/pkg/plugin" + "helm.sh/helm/pkg/plugin" ) // loadPlugins loads plugins into the command list. diff --git a/cmd/helm/package.go b/cmd/helm/package.go index efd35b067..09241fea7 100644 --- a/cmd/helm/package.go +++ b/cmd/helm/package.go @@ -22,13 +22,13 @@ import ( "io/ioutil" "path/filepath" - "k8s.io/helm/pkg/action" + "helm.sh/helm/pkg/action" "github.com/pkg/errors" "github.com/spf13/cobra" - "k8s.io/helm/pkg/downloader" - "k8s.io/helm/pkg/getter" + "helm.sh/helm/pkg/downloader" + "helm.sh/helm/pkg/getter" ) const packageDesc = ` diff --git a/cmd/helm/package_test.go b/cmd/helm/package_test.go index d83b02c05..ac4f3aef6 100644 --- a/cmd/helm/package_test.go +++ b/cmd/helm/package_test.go @@ -28,10 +28,10 @@ import ( "github.com/spf13/cobra" - "k8s.io/helm/pkg/chart" - "k8s.io/helm/pkg/chart/loader" - "k8s.io/helm/pkg/chartutil" - "k8s.io/helm/pkg/helmpath" + "helm.sh/helm/pkg/chart" + "helm.sh/helm/pkg/chart/loader" + "helm.sh/helm/pkg/chartutil" + "helm.sh/helm/pkg/helmpath" ) func TestPackage(t *testing.T) { diff --git a/cmd/helm/plugin.go b/cmd/helm/plugin.go index e5f8d1f11..7c325a84c 100644 --- a/cmd/helm/plugin.go +++ b/cmd/helm/plugin.go @@ -23,7 +23,7 @@ import ( "github.com/pkg/errors" "github.com/spf13/cobra" - "k8s.io/helm/pkg/plugin" + "helm.sh/helm/pkg/plugin" ) const pluginHelp = ` diff --git a/cmd/helm/plugin_install.go b/cmd/helm/plugin_install.go index ca054b618..619bcda6d 100644 --- a/cmd/helm/plugin_install.go +++ b/cmd/helm/plugin_install.go @@ -21,10 +21,10 @@ import ( "github.com/spf13/cobra" - "k8s.io/helm/cmd/helm/require" - "k8s.io/helm/pkg/helmpath" - "k8s.io/helm/pkg/plugin" - "k8s.io/helm/pkg/plugin/installer" + "helm.sh/helm/cmd/helm/require" + "helm.sh/helm/pkg/helmpath" + "helm.sh/helm/pkg/plugin" + "helm.sh/helm/pkg/plugin/installer" ) type pluginInstallOptions struct { diff --git a/cmd/helm/plugin_list.go b/cmd/helm/plugin_list.go index b9f7f545f..b9a355e69 100644 --- a/cmd/helm/plugin_list.go +++ b/cmd/helm/plugin_list.go @@ -22,7 +22,7 @@ import ( "github.com/gosuri/uitable" "github.com/spf13/cobra" - "k8s.io/helm/pkg/helmpath" + "helm.sh/helm/pkg/helmpath" ) type pluginListOptions struct { diff --git a/cmd/helm/plugin_remove.go b/cmd/helm/plugin_remove.go index 82e863bdc..e58a607f6 100644 --- a/cmd/helm/plugin_remove.go +++ b/cmd/helm/plugin_remove.go @@ -24,8 +24,8 @@ import ( "github.com/pkg/errors" "github.com/spf13/cobra" - "k8s.io/helm/pkg/helmpath" - "k8s.io/helm/pkg/plugin" + "helm.sh/helm/pkg/helmpath" + "helm.sh/helm/pkg/plugin" ) type pluginRemoveOptions struct { diff --git a/cmd/helm/plugin_test.go b/cmd/helm/plugin_test.go index dd4742449..a2021db88 100644 --- a/cmd/helm/plugin_test.go +++ b/cmd/helm/plugin_test.go @@ -25,8 +25,8 @@ import ( "github.com/spf13/cobra" - "k8s.io/helm/pkg/helmpath" - "k8s.io/helm/pkg/plugin" + "helm.sh/helm/pkg/helmpath" + "helm.sh/helm/pkg/plugin" ) func TestManuallyProcessArgs(t *testing.T) { diff --git a/cmd/helm/plugin_update.go b/cmd/helm/plugin_update.go index 13c9bff06..0c7c341fd 100644 --- a/cmd/helm/plugin_update.go +++ b/cmd/helm/plugin_update.go @@ -24,9 +24,9 @@ import ( "github.com/pkg/errors" "github.com/spf13/cobra" - "k8s.io/helm/pkg/helmpath" - "k8s.io/helm/pkg/plugin" - "k8s.io/helm/pkg/plugin/installer" + "helm.sh/helm/pkg/helmpath" + "helm.sh/helm/pkg/plugin" + "helm.sh/helm/pkg/plugin/installer" ) type pluginUpdateOptions struct { diff --git a/cmd/helm/printer.go b/cmd/helm/printer.go index 8f7677930..0f2207695 100644 --- a/cmd/helm/printer.go +++ b/cmd/helm/printer.go @@ -23,8 +23,8 @@ import ( "github.com/ghodss/yaml" - "k8s.io/helm/pkg/chartutil" - "k8s.io/helm/pkg/release" + "helm.sh/helm/pkg/chartutil" + "helm.sh/helm/pkg/release" ) var printReleaseTemplate = `REVISION: {{.Release.Version}} diff --git a/cmd/helm/pull.go b/cmd/helm/pull.go index cd1adf8c2..76b4240d4 100644 --- a/cmd/helm/pull.go +++ b/cmd/helm/pull.go @@ -22,8 +22,8 @@ import ( "github.com/spf13/cobra" - "k8s.io/helm/cmd/helm/require" - "k8s.io/helm/pkg/action" + "helm.sh/helm/cmd/helm/require" + "helm.sh/helm/pkg/action" ) const pullDesc = ` diff --git a/cmd/helm/pull_test.go b/cmd/helm/pull_test.go index feba9fe5c..5559fec61 100644 --- a/cmd/helm/pull_test.go +++ b/cmd/helm/pull_test.go @@ -24,7 +24,7 @@ import ( "strings" "testing" - "k8s.io/helm/pkg/repo/repotest" + "helm.sh/helm/pkg/repo/repotest" ) func TestPullCmd(t *testing.T) { diff --git a/cmd/helm/release_testing.go b/cmd/helm/release_testing.go index bd27a618d..f6cf0a14a 100644 --- a/cmd/helm/release_testing.go +++ b/cmd/helm/release_testing.go @@ -23,9 +23,9 @@ import ( "github.com/pkg/errors" "github.com/spf13/cobra" - "k8s.io/helm/cmd/helm/require" - "k8s.io/helm/pkg/action" - "k8s.io/helm/pkg/release" + "helm.sh/helm/cmd/helm/require" + "helm.sh/helm/pkg/action" + "helm.sh/helm/pkg/release" ) const releaseTestDesc = ` diff --git a/cmd/helm/release_testing_test.go b/cmd/helm/release_testing_test.go index d228f175b..a9ab5d76e 100644 --- a/cmd/helm/release_testing_test.go +++ b/cmd/helm/release_testing_test.go @@ -20,7 +20,7 @@ import ( "testing" "time" - "k8s.io/helm/pkg/release" + "helm.sh/helm/pkg/release" ) func TestReleaseTesting(t *testing.T) { diff --git a/cmd/helm/repo.go b/cmd/helm/repo.go index 1868ba4dd..afd5850d5 100644 --- a/cmd/helm/repo.go +++ b/cmd/helm/repo.go @@ -21,7 +21,7 @@ import ( "github.com/spf13/cobra" - "k8s.io/helm/cmd/helm/require" + "helm.sh/helm/cmd/helm/require" ) var repoHelm = ` diff --git a/cmd/helm/repo_add.go b/cmd/helm/repo_add.go index ad43f3430..9df0f946a 100644 --- a/cmd/helm/repo_add.go +++ b/cmd/helm/repo_add.go @@ -23,10 +23,10 @@ import ( "github.com/pkg/errors" "github.com/spf13/cobra" - "k8s.io/helm/cmd/helm/require" - "k8s.io/helm/pkg/getter" - "k8s.io/helm/pkg/helmpath" - "k8s.io/helm/pkg/repo" + "helm.sh/helm/cmd/helm/require" + "helm.sh/helm/pkg/getter" + "helm.sh/helm/pkg/helmpath" + "helm.sh/helm/pkg/repo" ) type repoAddOptions struct { diff --git a/cmd/helm/repo_add_test.go b/cmd/helm/repo_add_test.go index be320bc7c..9fd33390a 100644 --- a/cmd/helm/repo_add_test.go +++ b/cmd/helm/repo_add_test.go @@ -21,8 +21,8 @@ import ( "os" "testing" - "k8s.io/helm/pkg/repo" - "k8s.io/helm/pkg/repo/repotest" + "helm.sh/helm/pkg/repo" + "helm.sh/helm/pkg/repo/repotest" ) func TestRepoAddCmd(t *testing.T) { diff --git a/cmd/helm/repo_index.go b/cmd/helm/repo_index.go index e7ebbce23..677f532b1 100644 --- a/cmd/helm/repo_index.go +++ b/cmd/helm/repo_index.go @@ -24,8 +24,8 @@ import ( "github.com/pkg/errors" "github.com/spf13/cobra" - "k8s.io/helm/cmd/helm/require" - "k8s.io/helm/pkg/repo" + "helm.sh/helm/cmd/helm/require" + "helm.sh/helm/pkg/repo" ) const repoIndexDesc = ` diff --git a/cmd/helm/repo_index_test.go b/cmd/helm/repo_index_test.go index 7b2e8e275..b66bc565a 100644 --- a/cmd/helm/repo_index_test.go +++ b/cmd/helm/repo_index_test.go @@ -23,7 +23,7 @@ import ( "path/filepath" "testing" - "k8s.io/helm/pkg/repo" + "helm.sh/helm/pkg/repo" ) func TestRepoIndexCmd(t *testing.T) { diff --git a/cmd/helm/repo_list.go b/cmd/helm/repo_list.go index 9eecef166..b20e652dd 100644 --- a/cmd/helm/repo_list.go +++ b/cmd/helm/repo_list.go @@ -24,9 +24,9 @@ import ( "github.com/pkg/errors" "github.com/spf13/cobra" - "k8s.io/helm/cmd/helm/require" - "k8s.io/helm/pkg/helmpath" - "k8s.io/helm/pkg/repo" + "helm.sh/helm/cmd/helm/require" + "helm.sh/helm/pkg/helmpath" + "helm.sh/helm/pkg/repo" ) type repoListOptions struct { diff --git a/cmd/helm/repo_remove.go b/cmd/helm/repo_remove.go index 4755a7224..75eb1a9bd 100644 --- a/cmd/helm/repo_remove.go +++ b/cmd/helm/repo_remove.go @@ -24,9 +24,9 @@ import ( "github.com/pkg/errors" "github.com/spf13/cobra" - "k8s.io/helm/cmd/helm/require" - "k8s.io/helm/pkg/helmpath" - "k8s.io/helm/pkg/repo" + "helm.sh/helm/cmd/helm/require" + "helm.sh/helm/pkg/helmpath" + "helm.sh/helm/pkg/repo" ) type repoRemoveOptions struct { diff --git a/cmd/helm/repo_remove_test.go b/cmd/helm/repo_remove_test.go index 99316a061..44bd20d70 100644 --- a/cmd/helm/repo_remove_test.go +++ b/cmd/helm/repo_remove_test.go @@ -22,8 +22,8 @@ import ( "strings" "testing" - "k8s.io/helm/pkg/repo" - "k8s.io/helm/pkg/repo/repotest" + "helm.sh/helm/pkg/repo" + "helm.sh/helm/pkg/repo/repotest" ) func TestRepoRemove(t *testing.T) { diff --git a/cmd/helm/repo_update.go b/cmd/helm/repo_update.go index b704e4c84..a941c0867 100644 --- a/cmd/helm/repo_update.go +++ b/cmd/helm/repo_update.go @@ -24,10 +24,10 @@ import ( "github.com/pkg/errors" "github.com/spf13/cobra" - "k8s.io/helm/cmd/helm/require" - "k8s.io/helm/pkg/getter" - "k8s.io/helm/pkg/helmpath" - "k8s.io/helm/pkg/repo" + "helm.sh/helm/cmd/helm/require" + "helm.sh/helm/pkg/getter" + "helm.sh/helm/pkg/helmpath" + "helm.sh/helm/pkg/repo" ) const updateDesc = ` diff --git a/cmd/helm/repo_update_test.go b/cmd/helm/repo_update_test.go index de62d03bb..17213d9b3 100644 --- a/cmd/helm/repo_update_test.go +++ b/cmd/helm/repo_update_test.go @@ -23,10 +23,10 @@ import ( "strings" "testing" - "k8s.io/helm/pkg/getter" - "k8s.io/helm/pkg/helmpath" - "k8s.io/helm/pkg/repo" - "k8s.io/helm/pkg/repo/repotest" + "helm.sh/helm/pkg/getter" + "helm.sh/helm/pkg/helmpath" + "helm.sh/helm/pkg/repo" + "helm.sh/helm/pkg/repo/repotest" ) func TestUpdateCmd(t *testing.T) { diff --git a/cmd/helm/rollback.go b/cmd/helm/rollback.go index f691fbfb9..3da4231ab 100644 --- a/cmd/helm/rollback.go +++ b/cmd/helm/rollback.go @@ -22,8 +22,8 @@ import ( "github.com/spf13/cobra" - "k8s.io/helm/cmd/helm/require" - "k8s.io/helm/pkg/action" + "helm.sh/helm/cmd/helm/require" + "helm.sh/helm/pkg/action" ) const rollbackDesc = ` diff --git a/cmd/helm/rollback_test.go b/cmd/helm/rollback_test.go index 3898ce6a9..42763d298 100644 --- a/cmd/helm/rollback_test.go +++ b/cmd/helm/rollback_test.go @@ -19,8 +19,8 @@ package main import ( "testing" - "k8s.io/helm/pkg/chart" - "k8s.io/helm/pkg/release" + "helm.sh/helm/pkg/chart" + "helm.sh/helm/pkg/release" ) func TestRollbackCmd(t *testing.T) { diff --git a/cmd/helm/root.go b/cmd/helm/root.go index d1ef58a05..5a6f43d6e 100644 --- a/cmd/helm/root.go +++ b/cmd/helm/root.go @@ -14,7 +14,7 @@ See the License for the specific language governing permissions and limitations under the License. */ -package main // import "k8s.io/helm/cmd/helm" +package main // import "helm.sh/helm/cmd/helm" import ( "io" @@ -22,9 +22,9 @@ import ( "github.com/containerd/containerd/remotes/docker" "github.com/spf13/cobra" - "k8s.io/helm/cmd/helm/require" - "k8s.io/helm/pkg/action" - "k8s.io/helm/pkg/registry" + "helm.sh/helm/cmd/helm/require" + "helm.sh/helm/pkg/action" + "helm.sh/helm/pkg/registry" ) var globalUsage = `The Kubernetes package manager diff --git a/cmd/helm/search.go b/cmd/helm/search.go index 3ef9ed1d7..25228ee48 100644 --- a/cmd/helm/search.go +++ b/cmd/helm/search.go @@ -26,9 +26,9 @@ import ( "github.com/pkg/errors" "github.com/spf13/cobra" - "k8s.io/helm/cmd/helm/search" - "k8s.io/helm/pkg/helmpath" - "k8s.io/helm/pkg/repo" + "helm.sh/helm/cmd/helm/search" + "helm.sh/helm/pkg/helmpath" + "helm.sh/helm/pkg/repo" ) const searchDesc = ` diff --git a/cmd/helm/search/search.go b/cmd/helm/search/search.go index dfc640ccc..a78f46da8 100644 --- a/cmd/helm/search/search.go +++ b/cmd/helm/search/search.go @@ -31,7 +31,7 @@ import ( "github.com/Masterminds/semver" "github.com/pkg/errors" - "k8s.io/helm/pkg/repo" + "helm.sh/helm/pkg/repo" ) // Result is a search result. diff --git a/cmd/helm/search/search_test.go b/cmd/helm/search/search_test.go index 69fb1b82e..47c0a0e9f 100644 --- a/cmd/helm/search/search_test.go +++ b/cmd/helm/search/search_test.go @@ -20,8 +20,8 @@ import ( "strings" "testing" - "k8s.io/helm/pkg/chart" - "k8s.io/helm/pkg/repo" + "helm.sh/helm/pkg/chart" + "helm.sh/helm/pkg/repo" ) func TestSortScore(t *testing.T) { diff --git a/cmd/helm/show.go b/cmd/helm/show.go index d8970f077..4b23473af 100644 --- a/cmd/helm/show.go +++ b/cmd/helm/show.go @@ -22,8 +22,8 @@ import ( "github.com/spf13/cobra" - "k8s.io/helm/cmd/helm/require" - "k8s.io/helm/pkg/action" + "helm.sh/helm/cmd/helm/require" + "helm.sh/helm/pkg/action" ) const showDesc = ` diff --git a/cmd/helm/status.go b/cmd/helm/status.go index 0c6bee728..9f2a1576c 100644 --- a/cmd/helm/status.go +++ b/cmd/helm/status.go @@ -24,8 +24,8 @@ import ( "github.com/pkg/errors" "github.com/spf13/cobra" - "k8s.io/helm/cmd/helm/require" - "k8s.io/helm/pkg/action" + "helm.sh/helm/cmd/helm/require" + "helm.sh/helm/pkg/action" ) var statusHelp = ` diff --git a/cmd/helm/status_test.go b/cmd/helm/status_test.go index fe4f460a7..169e6c621 100644 --- a/cmd/helm/status_test.go +++ b/cmd/helm/status_test.go @@ -20,9 +20,9 @@ import ( "testing" "time" - "k8s.io/helm/pkg/chart" + "helm.sh/helm/pkg/chart" - "k8s.io/helm/pkg/release" + "helm.sh/helm/pkg/release" ) func TestStatusCmd(t *testing.T) { diff --git a/cmd/helm/template.go b/cmd/helm/template.go index f33237dea..5c4dca5ef 100644 --- a/cmd/helm/template.go +++ b/cmd/helm/template.go @@ -25,11 +25,11 @@ import ( "github.com/spf13/cobra" "k8s.io/client-go/kubernetes/fake" - "k8s.io/helm/cmd/helm/require" - "k8s.io/helm/pkg/action" - "k8s.io/helm/pkg/kube" - "k8s.io/helm/pkg/storage" - "k8s.io/helm/pkg/storage/driver" + "helm.sh/helm/cmd/helm/require" + "helm.sh/helm/pkg/action" + "helm.sh/helm/pkg/kube" + "helm.sh/helm/pkg/storage" + "helm.sh/helm/pkg/storage/driver" ) const templateDesc = ` diff --git a/cmd/helm/testdata/helmhome/repository/cache/testing-index.yaml b/cmd/helm/testdata/helmhome/repository/cache/testing-index.yaml index 4774812ef..aab74f742 100644 --- a/cmd/helm/testdata/helmhome/repository/cache/testing-index.yaml +++ b/cmd/helm/testdata/helmhome/repository/cache/testing-index.yaml @@ -4,7 +4,7 @@ entries: - name: alpine url: https://kubernetes-charts.storage.googleapis.com/alpine-0.1.0.tgz checksum: 0e6661f193211d7a5206918d42f5c2a9470b737d - home: https://k8s.io/helm + home: https://helm.sh/helm sources: - https://github.com/helm/helm version: 0.1.0 @@ -16,7 +16,7 @@ entries: - name: alpine url: https://kubernetes-charts.storage.googleapis.com/alpine-0.2.0.tgz checksum: 0e6661f193211d7a5206918d42f5c2a9470b737d - home: https://k8s.io/helm + home: https://helm.sh/helm sources: - https://github.com/helm/helm version: 0.2.0 diff --git a/cmd/helm/testdata/testcharts/alpine/Chart.yaml b/cmd/helm/testdata/testcharts/alpine/Chart.yaml index fea865aa5..e45d7326a 100644 --- a/cmd/helm/testdata/testcharts/alpine/Chart.yaml +++ b/cmd/helm/testdata/testcharts/alpine/Chart.yaml @@ -1,5 +1,5 @@ description: Deploy a basic Alpine Linux pod -home: https://k8s.io/helm +home: https://helm.sh/helm name: alpine sources: - https://github.com/helm/helm diff --git a/cmd/helm/testdata/testcharts/chart-bad-type/Chart.yaml b/cmd/helm/testdata/testcharts/chart-bad-type/Chart.yaml index 95ddba77a..75767a62c 100644 --- a/cmd/helm/testdata/testcharts/chart-bad-type/Chart.yaml +++ b/cmd/helm/testdata/testcharts/chart-bad-type/Chart.yaml @@ -1,5 +1,5 @@ description: Deploy a basic Alpine Linux pod -home: https://k8s.io/helm +home: https://helm.sh/helm name: chart-bad-type sources: - https://github.com/helm/helm diff --git a/cmd/helm/testdata/testcharts/empty/Chart.yaml b/cmd/helm/testdata/testcharts/empty/Chart.yaml index a87f4201f..8bdba0330 100644 --- a/cmd/helm/testdata/testcharts/empty/Chart.yaml +++ b/cmd/helm/testdata/testcharts/empty/Chart.yaml @@ -1,5 +1,5 @@ description: Empty testing chart -home: https://k8s.io/helm +home: https://helm.sh/helm name: empty sources: - https://github.com/helm/helm diff --git a/cmd/helm/testdata/testcharts/issue1979/Chart.yaml b/cmd/helm/testdata/testcharts/issue1979/Chart.yaml index fea865aa5..e45d7326a 100644 --- a/cmd/helm/testdata/testcharts/issue1979/Chart.yaml +++ b/cmd/helm/testdata/testcharts/issue1979/Chart.yaml @@ -1,5 +1,5 @@ description: Deploy a basic Alpine Linux pod -home: https://k8s.io/helm +home: https://helm.sh/helm name: alpine sources: - https://github.com/helm/helm diff --git a/cmd/helm/testdata/testcharts/novals/Chart.yaml b/cmd/helm/testdata/testcharts/novals/Chart.yaml index 85f7a5d83..905258117 100644 --- a/cmd/helm/testdata/testcharts/novals/Chart.yaml +++ b/cmd/helm/testdata/testcharts/novals/Chart.yaml @@ -1,5 +1,5 @@ description: Deploy a basic Alpine Linux pod -home: https://k8s.io/helm +home: https://helm.sh/helm name: novals sources: - https://github.com/helm/helm diff --git a/cmd/helm/testdata/testcharts/signtest/alpine/Chart.yaml b/cmd/helm/testdata/testcharts/signtest/alpine/Chart.yaml index fea865aa5..e45d7326a 100644 --- a/cmd/helm/testdata/testcharts/signtest/alpine/Chart.yaml +++ b/cmd/helm/testdata/testcharts/signtest/alpine/Chart.yaml @@ -1,5 +1,5 @@ description: Deploy a basic Alpine Linux pod -home: https://k8s.io/helm +home: https://helm.sh/helm name: alpine sources: - https://github.com/helm/helm diff --git a/cmd/helm/uninstall.go b/cmd/helm/uninstall.go index a52d151e4..7d0bb09ff 100644 --- a/cmd/helm/uninstall.go +++ b/cmd/helm/uninstall.go @@ -22,8 +22,8 @@ import ( "github.com/spf13/cobra" - "k8s.io/helm/cmd/helm/require" - "k8s.io/helm/pkg/action" + "helm.sh/helm/cmd/helm/require" + "helm.sh/helm/pkg/action" ) const uninstallDesc = ` diff --git a/cmd/helm/uninstall_test.go b/cmd/helm/uninstall_test.go index 8012a8d92..5ebb20ead 100644 --- a/cmd/helm/uninstall_test.go +++ b/cmd/helm/uninstall_test.go @@ -19,7 +19,7 @@ package main import ( "testing" - "k8s.io/helm/pkg/release" + "helm.sh/helm/pkg/release" ) func TestUninstall(t *testing.T) { diff --git a/cmd/helm/upgrade.go b/cmd/helm/upgrade.go index a5079e91e..7a5aebdbc 100644 --- a/cmd/helm/upgrade.go +++ b/cmd/helm/upgrade.go @@ -23,10 +23,10 @@ import ( "github.com/pkg/errors" "github.com/spf13/cobra" - "k8s.io/helm/cmd/helm/require" - "k8s.io/helm/pkg/action" - "k8s.io/helm/pkg/chart/loader" - "k8s.io/helm/pkg/storage/driver" + "helm.sh/helm/cmd/helm/require" + "helm.sh/helm/pkg/action" + "helm.sh/helm/pkg/chart/loader" + "helm.sh/helm/pkg/storage/driver" ) const upgradeDesc = ` diff --git a/cmd/helm/upgrade_test.go b/cmd/helm/upgrade_test.go index 4cc44e2f1..bba9256fc 100644 --- a/cmd/helm/upgrade_test.go +++ b/cmd/helm/upgrade_test.go @@ -20,10 +20,10 @@ import ( "fmt" "testing" - "k8s.io/helm/pkg/chart" - "k8s.io/helm/pkg/chart/loader" - "k8s.io/helm/pkg/chartutil" - "k8s.io/helm/pkg/release" + "helm.sh/helm/pkg/chart" + "helm.sh/helm/pkg/chart/loader" + "helm.sh/helm/pkg/chartutil" + "helm.sh/helm/pkg/release" ) func TestUpgradeCmd(t *testing.T) { diff --git a/cmd/helm/verify.go b/cmd/helm/verify.go index d9069312a..a44f46238 100644 --- a/cmd/helm/verify.go +++ b/cmd/helm/verify.go @@ -20,8 +20,8 @@ import ( "github.com/spf13/cobra" - "k8s.io/helm/cmd/helm/require" - "k8s.io/helm/pkg/action" + "helm.sh/helm/cmd/helm/require" + "helm.sh/helm/pkg/action" ) const verifyDesc = ` diff --git a/cmd/helm/version.go b/cmd/helm/version.go index 9bf2761a1..07c2db324 100644 --- a/cmd/helm/version.go +++ b/cmd/helm/version.go @@ -23,8 +23,8 @@ import ( "github.com/spf13/cobra" - "k8s.io/helm/cmd/helm/require" - "k8s.io/helm/internal/version" + "helm.sh/helm/cmd/helm/require" + "helm.sh/helm/internal/version" ) const versionDesc = ` diff --git a/docs/chart_repository.md b/docs/chart_repository.md index d015dcb4a..5a6d6b7c8 100644 --- a/docs/chart_repository.md +++ b/docs/chart_repository.md @@ -75,7 +75,7 @@ entries: - created: 2016-10-06T16:23:20.499814565-06:00 description: Deploy a basic Alpine Linux pod digest: 99c76e403d752c84ead610644d4b1c2f2b453a74b921f422b9dcb8a7c8b559cd - home: https://k8s.io/helm + home: https://helm.sh/helm name: alpine sources: - https://github.com/helm/helm @@ -85,7 +85,7 @@ entries: - created: 2016-10-06T16:23:20.499543808-06:00 description: Deploy a basic Alpine Linux pod digest: 515c58e5f79d8b2913a10cb400ebb6fa9c77fe813287afbacf1a0b897cd78727 - home: https://k8s.io/helm + home: https://helm.sh/helm name: alpine sources: - https://github.com/helm/helm @@ -96,7 +96,7 @@ entries: - created: 2016-10-06T16:23:20.499543808-06:00 description: Create a basic nginx HTTP server digest: aaff4545f79d8b2913a10cb400ebb6fa9c77fe813287afbacf1a0b897cdffffff - home: https://k8s.io/helm + home: https://helm.sh/helm name: nginx sources: - https://github.com/helm/charts diff --git a/docs/chart_repository_sync_example.md b/docs/chart_repository_sync_example.md index b98f98e8f..8a83d7408 100644 --- a/docs/chart_repository_sync_example.md +++ b/docs/chart_repository_sync_example.md @@ -29,7 +29,7 @@ Upload the contents of the directory to your GCS bucket by running `scripts/sync For example: ```console $ pwd -/Users/me/code/go/src/k8s.io/helm +/Users/me/code/go/src/helm.sh/helm $ scripts/sync-repo.sh fantastic-charts/ fantastic-charts Getting ready to sync your local directory (fantastic-charts/) to a remote repository at gs://fantastic-charts Verifying Prerequisites.... diff --git a/docs/chart_template_guide/control_structures.md b/docs/chart_template_guide/control_structures.md index 7575ebc35..3c945a849 100644 --- a/docs/chart_template_guide/control_structures.md +++ b/docs/chart_template_guide/control_structures.md @@ -94,7 +94,7 @@ Initially, this looks good. But if we run it through the template engine, we'll ```console $ helm install --dry-run --debug ./mychart SERVER: "localhost:44134" -CHART PATH: /Users/mattbutcher/Code/Go/src/k8s.io/helm/_scratch/mychart +CHART PATH: /Users/mattbutcher/Code/Go/src/helm.sh/helm/_scratch/mychart Error: YAML parse error on mychart/templates/configmap.yaml: error converting YAML to JSON: yaml: line 9: did not find expected key ``` diff --git a/docs/chart_template_guide/getting_started.md b/docs/chart_template_guide/getting_started.md index 4971ef05f..c2bda06bb 100644 --- a/docs/chart_template_guide/getting_started.md +++ b/docs/chart_template_guide/getting_started.md @@ -192,7 +192,7 @@ At this point, we've seen templates at their most basic: YAML files that have te ```console $ helm install --debug --dry-run ./mychart SERVER: "localhost:44134" -CHART PATH: /Users/mattbutcher/Code/Go/src/k8s.io/helm/_scratch/mychart +CHART PATH: /Users/mattbutcher/Code/Go/src/helm.sh/helm/_scratch/mychart NAME: goodly-guppy TARGET NAMESPACE: default CHART: mychart 0.1.0 diff --git a/docs/chart_template_guide/subcharts_and_globals.md b/docs/chart_template_guide/subcharts_and_globals.md index 33274effe..413e841b4 100644 --- a/docs/chart_template_guide/subcharts_and_globals.md +++ b/docs/chart_template_guide/subcharts_and_globals.md @@ -48,7 +48,7 @@ Because every subchart is a _stand-alone chart_, we can test `mysubchart` on its ```console $ helm install --dry-run --debug mychart/charts/mysubchart SERVER: "localhost:44134" -CHART PATH: /Users/mattbutcher/Code/Go/src/k8s.io/helm/_scratch/mychart/charts/mysubchart +CHART PATH: /Users/mattbutcher/Code/Go/src/helm.sh/helm/_scratch/mychart/charts/mysubchart NAME: newbie-elk TARGET NAMESPACE: default CHART: mysubchart 0.1.0 diff --git a/docs/chart_template_guide/values_files.md b/docs/chart_template_guide/values_files.md index 32a178735..5b201ad87 100644 --- a/docs/chart_template_guide/values_files.md +++ b/docs/chart_template_guide/values_files.md @@ -36,7 +36,7 @@ Let's see how this renders. ```console $ helm install --dry-run --debug ./mychart SERVER: "localhost:44134" -CHART PATH: /Users/mattbutcher/Code/Go/src/k8s.io/helm/_scratch/mychart +CHART PATH: /Users/mattbutcher/Code/Go/src/helm.sh/helm/_scratch/mychart NAME: geared-marsupi TARGET NAMESPACE: default CHART: mychart 0.1.0 @@ -57,7 +57,7 @@ Because `favoriteDrink` is set in the default `values.yaml` file to `coffee`, th ``` helm install --dry-run --debug --set favoriteDrink=slurm ./mychart SERVER: "localhost:44134" -CHART PATH: /Users/mattbutcher/Code/Go/src/k8s.io/helm/_scratch/mychart +CHART PATH: /Users/mattbutcher/Code/Go/src/helm.sh/helm/_scratch/mychart NAME: solid-vulture TARGET NAMESPACE: default CHART: mychart 0.1.0 diff --git a/docs/developers.md b/docs/developers.md index 86f241c6f..ac6423115 100644 --- a/docs/developers.md +++ b/docs/developers.md @@ -18,7 +18,7 @@ We use Make to build our programs. The simplest way to get started is: $ make bootstrap build ``` -NOTE: This will fail if not running from the path `$GOPATH/src/k8s.io/helm`. The +NOTE: This will fail if not running from the path `$GOPATH/src/helm.sh/helm`. The directory `k8s.io` should not be a symlink or `build` will not find the relevant packages. @@ -41,7 +41,7 @@ To expose the Helm man pages to your `man` client, you can put the files in your `$MANPATH`: ``` -$ export MANPATH=$GOPATH/src/k8s.io/helm/docs/man:$MANPATH +$ export MANPATH=$GOPATH/src/helm.sh/helm/docs/man:$MANPATH $ man helm ``` @@ -101,7 +101,7 @@ workflow for doing this is as follows: 1. Go to your `$GOPATH/src/k8s.io` directory and `git clone` the `github.com/helm/helm` repository. 2. Fork that repository into your GitHub account -3. Add your repository as a remote for `$GOPATH/src/k8s.io/helm` +3. Add your repository as a remote for `$GOPATH/src/helm.sh/helm` 4. Create a new working branch (`git checkout -b feat/my-feature`) and do your work on that branch. 5. When you are ready for us to review, push your branch to GitHub, and diff --git a/docs/using_helm.md b/docs/using_helm.md index 06a3d6661..17ed82ef4 100755 --- a/docs/using_helm.md +++ b/docs/using_helm.md @@ -92,7 +92,7 @@ simplest, it takes only one argument: The name of the chart. ``` $ helm install stable/mariadb -Fetched stable/mariadb-0.3.0 to /Users/mattbutcher/Code/Go/src/k8s.io/helm/mariadb-0.3.0.tgz +Fetched stable/mariadb-0.3.0 to /Users/mattbutcher/Code/Go/src/helm.sh/helm/mariadb-0.3.0.tgz happy-panda Last Deployed: Wed Sep 28 12:32:28 2016 Namespace: default @@ -180,7 +180,7 @@ values`: ```console helm inspect values stable/mariadb -Fetched stable/mariadb-0.3.0.tgz to /Users/mattbutcher/Code/Go/src/k8s.io/helm/mariadb-0.3.0.tgz +Fetched stable/mariadb-0.3.0.tgz to /Users/mattbutcher/Code/Go/src/helm.sh/helm/mariadb-0.3.0.tgz ## Bitnami MariaDB image version ## ref: https://hub.docker.com/r/bitnami/mariadb/tags/ ## @@ -325,7 +325,7 @@ update things that have changed since the last release. ```console $ helm upgrade -f panda.yaml happy-panda stable/mariadb -Fetched stable/mariadb-0.3.0.tgz to /Users/mattbutcher/Code/Go/src/k8s.io/helm/mariadb-0.3.0.tgz +Fetched stable/mariadb-0.3.0.tgz to /Users/mattbutcher/Code/Go/src/helm.sh/helm/mariadb-0.3.0.tgz happy-panda has been upgraded. Happy Helming! Last Deployed: Wed Sep 28 12:47:54 2016 Namespace: default diff --git a/internal/version/version.go b/internal/version/version.go index b7ec040bf..41271c042 100644 --- a/internal/version/version.go +++ b/internal/version/version.go @@ -14,10 +14,10 @@ See the License for the specific language governing permissions and limitations under the License. */ -package version // import "k8s.io/helm/internal/version" +package version // import "helm.sh/helm/internal/version" import ( - hversion "k8s.io/helm/pkg/version" + hversion "helm.sh/helm/pkg/version" ) var ( diff --git a/pkg/action/action.go b/pkg/action/action.go index 24bab62fa..31a1758bd 100644 --- a/pkg/action/action.go +++ b/pkg/action/action.go @@ -24,11 +24,11 @@ import ( metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" "k8s.io/client-go/discovery" - "k8s.io/helm/pkg/chartutil" - "k8s.io/helm/pkg/kube" - "k8s.io/helm/pkg/registry" - "k8s.io/helm/pkg/release" - "k8s.io/helm/pkg/storage" + "helm.sh/helm/pkg/chartutil" + "helm.sh/helm/pkg/kube" + "helm.sh/helm/pkg/registry" + "helm.sh/helm/pkg/release" + "helm.sh/helm/pkg/storage" ) // Timestamper is a function capable of producing a timestamp.Timestamper. diff --git a/pkg/action/action_test.go b/pkg/action/action_test.go index acf0c2d19..a99fe44e2 100644 --- a/pkg/action/action_test.go +++ b/pkg/action/action_test.go @@ -25,11 +25,11 @@ import ( "github.com/pkg/errors" "k8s.io/client-go/kubernetes/fake" - "k8s.io/helm/pkg/chart" - "k8s.io/helm/pkg/kube" - "k8s.io/helm/pkg/release" - "k8s.io/helm/pkg/storage" - "k8s.io/helm/pkg/storage/driver" + "helm.sh/helm/pkg/chart" + "helm.sh/helm/pkg/kube" + "helm.sh/helm/pkg/release" + "helm.sh/helm/pkg/storage" + "helm.sh/helm/pkg/storage/driver" ) var verbose = flag.Bool("test.log", false, "enable test logging") diff --git a/pkg/action/chart_export.go b/pkg/action/chart_export.go index 3afa05384..5bfb002de 100644 --- a/pkg/action/chart_export.go +++ b/pkg/action/chart_export.go @@ -20,8 +20,8 @@ import ( "fmt" "io" - "k8s.io/helm/pkg/chartutil" - "k8s.io/helm/pkg/registry" + "helm.sh/helm/pkg/chartutil" + "helm.sh/helm/pkg/registry" ) // ChartExport performs a chart export operation. diff --git a/pkg/action/chart_pull.go b/pkg/action/chart_pull.go index eca743deb..f4388a5ea 100644 --- a/pkg/action/chart_pull.go +++ b/pkg/action/chart_pull.go @@ -19,7 +19,7 @@ package action import ( "io" - "k8s.io/helm/pkg/registry" + "helm.sh/helm/pkg/registry" ) // ChartPull performs a chart pull operation. diff --git a/pkg/action/chart_push.go b/pkg/action/chart_push.go index 229d62c4a..97ab77fc0 100644 --- a/pkg/action/chart_push.go +++ b/pkg/action/chart_push.go @@ -19,7 +19,7 @@ package action import ( "io" - "k8s.io/helm/pkg/registry" + "helm.sh/helm/pkg/registry" ) // ChartPush performs a chart push operation. diff --git a/pkg/action/chart_remove.go b/pkg/action/chart_remove.go index dbf677b76..ae1d93135 100644 --- a/pkg/action/chart_remove.go +++ b/pkg/action/chart_remove.go @@ -19,7 +19,7 @@ package action import ( "io" - "k8s.io/helm/pkg/registry" + "helm.sh/helm/pkg/registry" ) // ChartRemove performs a chart remove operation. diff --git a/pkg/action/chart_save.go b/pkg/action/chart_save.go index 5d756381f..24d5dbd27 100644 --- a/pkg/action/chart_save.go +++ b/pkg/action/chart_save.go @@ -20,8 +20,8 @@ import ( "io" "path/filepath" - "k8s.io/helm/pkg/chart/loader" - "k8s.io/helm/pkg/registry" + "helm.sh/helm/pkg/chart/loader" + "helm.sh/helm/pkg/registry" ) // ChartSave performs a chart save operation. diff --git a/pkg/action/dependency.go b/pkg/action/dependency.go index b17a09aa4..de4735577 100644 --- a/pkg/action/dependency.go +++ b/pkg/action/dependency.go @@ -25,8 +25,8 @@ import ( "github.com/Masterminds/semver" "github.com/gosuri/uitable" - "k8s.io/helm/pkg/chart" - "k8s.io/helm/pkg/chart/loader" + "helm.sh/helm/pkg/chart" + "helm.sh/helm/pkg/chart/loader" ) // Dependency is the action for building a given chart's dependency tree. diff --git a/pkg/action/get.go b/pkg/action/get.go index f4726c48c..7b3b0b24e 100644 --- a/pkg/action/get.go +++ b/pkg/action/get.go @@ -17,7 +17,7 @@ limitations under the License. package action import ( - "k8s.io/helm/pkg/release" + "helm.sh/helm/pkg/release" ) // Get is the action for checking a given release's information. diff --git a/pkg/action/get_values.go b/pkg/action/get_values.go index eaea54929..cf7cabbea 100644 --- a/pkg/action/get_values.go +++ b/pkg/action/get_values.go @@ -19,7 +19,7 @@ package action import ( "github.com/ghodss/yaml" - "k8s.io/helm/pkg/chartutil" + "helm.sh/helm/pkg/chartutil" ) // GetValues is the action for checking a given release's values. diff --git a/pkg/action/history.go b/pkg/action/history.go index d90350708..290154986 100644 --- a/pkg/action/history.go +++ b/pkg/action/history.go @@ -24,9 +24,9 @@ import ( "github.com/gosuri/uitable" "github.com/pkg/errors" - "k8s.io/helm/pkg/chart" - "k8s.io/helm/pkg/release" - "k8s.io/helm/pkg/releaseutil" + "helm.sh/helm/pkg/chart" + "helm.sh/helm/pkg/release" + "helm.sh/helm/pkg/releaseutil" ) type releaseInfo struct { diff --git a/pkg/action/install.go b/pkg/action/install.go index b3cb92d04..163ac40e4 100644 --- a/pkg/action/install.go +++ b/pkg/action/install.go @@ -34,18 +34,18 @@ import ( "github.com/ghodss/yaml" "github.com/pkg/errors" - "k8s.io/helm/pkg/chart" - "k8s.io/helm/pkg/chartutil" - "k8s.io/helm/pkg/cli" - "k8s.io/helm/pkg/downloader" - "k8s.io/helm/pkg/engine" - "k8s.io/helm/pkg/getter" - "k8s.io/helm/pkg/hooks" - "k8s.io/helm/pkg/release" - "k8s.io/helm/pkg/releaseutil" - "k8s.io/helm/pkg/repo" - "k8s.io/helm/pkg/strvals" - "k8s.io/helm/pkg/version" + "helm.sh/helm/pkg/chart" + "helm.sh/helm/pkg/chartutil" + "helm.sh/helm/pkg/cli" + "helm.sh/helm/pkg/downloader" + "helm.sh/helm/pkg/engine" + "helm.sh/helm/pkg/getter" + "helm.sh/helm/pkg/hooks" + "helm.sh/helm/pkg/release" + "helm.sh/helm/pkg/releaseutil" + "helm.sh/helm/pkg/repo" + "helm.sh/helm/pkg/strvals" + "helm.sh/helm/pkg/version" ) // releaseNameMaxLen is the maximum length of a release name. diff --git a/pkg/action/install_test.go b/pkg/action/install_test.go index 4d338deb6..82a1420fb 100644 --- a/pkg/action/install_test.go +++ b/pkg/action/install_test.go @@ -24,7 +24,7 @@ import ( "github.com/stretchr/testify/assert" - "k8s.io/helm/pkg/release" + "helm.sh/helm/pkg/release" ) type nameTemplateTestCase struct { diff --git a/pkg/action/lint.go b/pkg/action/lint.go index e7e464e92..5ec870570 100644 --- a/pkg/action/lint.go +++ b/pkg/action/lint.go @@ -24,9 +24,9 @@ import ( "github.com/pkg/errors" - "k8s.io/helm/pkg/chartutil" - "k8s.io/helm/pkg/lint" - "k8s.io/helm/pkg/lint/support" + "helm.sh/helm/pkg/chartutil" + "helm.sh/helm/pkg/lint" + "helm.sh/helm/pkg/lint/support" ) var errLintNoChart = errors.New("no chart found for linting (missing Chart.yaml)") diff --git a/pkg/action/list.go b/pkg/action/list.go index 27e6577d9..3f077af5a 100644 --- a/pkg/action/list.go +++ b/pkg/action/list.go @@ -22,8 +22,8 @@ import ( "github.com/gosuri/uitable" - "k8s.io/helm/pkg/release" - "k8s.io/helm/pkg/releaseutil" + "helm.sh/helm/pkg/release" + "helm.sh/helm/pkg/releaseutil" ) // ListStates represents zero or more status codes that a list item may have set diff --git a/pkg/action/list_test.go b/pkg/action/list_test.go index 3a1bf6a72..cb62f0e43 100644 --- a/pkg/action/list_test.go +++ b/pkg/action/list_test.go @@ -21,8 +21,8 @@ import ( "github.com/stretchr/testify/assert" - "k8s.io/helm/pkg/release" - "k8s.io/helm/pkg/storage" + "helm.sh/helm/pkg/release" + "helm.sh/helm/pkg/storage" ) func TestListStates(t *testing.T) { diff --git a/pkg/action/package.go b/pkg/action/package.go index 8624118fc..77fcdc4fe 100644 --- a/pkg/action/package.go +++ b/pkg/action/package.go @@ -26,10 +26,10 @@ import ( "github.com/pkg/errors" "golang.org/x/crypto/ssh/terminal" - "k8s.io/helm/pkg/chart" - "k8s.io/helm/pkg/chart/loader" - "k8s.io/helm/pkg/chartutil" - "k8s.io/helm/pkg/provenance" + "helm.sh/helm/pkg/chart" + "helm.sh/helm/pkg/chart/loader" + "helm.sh/helm/pkg/chartutil" + "helm.sh/helm/pkg/provenance" ) // Package is the action for packaging a chart. diff --git a/pkg/action/package_test.go b/pkg/action/package_test.go index 7bb84756d..c526d7055 100644 --- a/pkg/action/package_test.go +++ b/pkg/action/package_test.go @@ -19,7 +19,7 @@ package action import ( "testing" - "k8s.io/helm/pkg/chart" + "helm.sh/helm/pkg/chart" ) func TestSetVersion(t *testing.T) { diff --git a/pkg/action/printer.go b/pkg/action/printer.go index 4ed0d39b8..30f46b0ee 100644 --- a/pkg/action/printer.go +++ b/pkg/action/printer.go @@ -26,7 +26,7 @@ import ( "github.com/gosuri/uitable" "github.com/gosuri/uitable/util/strutil" - "k8s.io/helm/pkg/release" + "helm.sh/helm/pkg/release" ) // PrintRelease prints info about a release diff --git a/pkg/action/pull.go b/pkg/action/pull.go index 0c23941ca..8925c7190 100644 --- a/pkg/action/pull.go +++ b/pkg/action/pull.go @@ -25,11 +25,11 @@ import ( "github.com/pkg/errors" - "k8s.io/helm/pkg/chartutil" - "k8s.io/helm/pkg/cli" - "k8s.io/helm/pkg/downloader" - "k8s.io/helm/pkg/getter" - "k8s.io/helm/pkg/repo" + "helm.sh/helm/pkg/chartutil" + "helm.sh/helm/pkg/cli" + "helm.sh/helm/pkg/downloader" + "helm.sh/helm/pkg/getter" + "helm.sh/helm/pkg/repo" ) // Pull is the action for checking a given release's information. diff --git a/pkg/action/release_testing.go b/pkg/action/release_testing.go index f98ecbe3f..2314257cd 100644 --- a/pkg/action/release_testing.go +++ b/pkg/action/release_testing.go @@ -19,8 +19,8 @@ package action import ( "github.com/pkg/errors" - "k8s.io/helm/pkg/release" - reltesting "k8s.io/helm/pkg/releasetesting" + "helm.sh/helm/pkg/release" + reltesting "helm.sh/helm/pkg/releasetesting" ) // ReleaseTesting is the action for testing a release. diff --git a/pkg/action/resource_policy.go b/pkg/action/resource_policy.go index 53da7a002..d36f6a5a1 100644 --- a/pkg/action/resource_policy.go +++ b/pkg/action/resource_policy.go @@ -20,8 +20,8 @@ import ( "bytes" "strings" - "k8s.io/helm/pkg/kube" - "k8s.io/helm/pkg/releaseutil" + "helm.sh/helm/pkg/kube" + "helm.sh/helm/pkg/releaseutil" ) // resourcePolicyAnno is the annotation name for a resource policy diff --git a/pkg/action/rollback.go b/pkg/action/rollback.go index 48c4dfda2..53276f0c9 100644 --- a/pkg/action/rollback.go +++ b/pkg/action/rollback.go @@ -24,8 +24,8 @@ import ( "github.com/pkg/errors" - "k8s.io/helm/pkg/hooks" - "k8s.io/helm/pkg/release" + "helm.sh/helm/pkg/hooks" + "helm.sh/helm/pkg/release" ) // Rollback is the action for rolling back to a given release. diff --git a/pkg/action/show.go b/pkg/action/show.go index d12cabc71..fd78dfeb0 100644 --- a/pkg/action/show.go +++ b/pkg/action/show.go @@ -22,8 +22,8 @@ import ( "github.com/ghodss/yaml" - "k8s.io/helm/pkg/chart" - "k8s.io/helm/pkg/chart/loader" + "helm.sh/helm/pkg/chart" + "helm.sh/helm/pkg/chart/loader" ) type ShowOutputFormat string diff --git a/pkg/action/status.go b/pkg/action/status.go index 3f7f684a3..6297e28ca 100644 --- a/pkg/action/status.go +++ b/pkg/action/status.go @@ -17,7 +17,7 @@ limitations under the License. package action import ( - "k8s.io/helm/pkg/release" + "helm.sh/helm/pkg/release" ) // Status is the action for checking the deployment status of releases. diff --git a/pkg/action/uninstall.go b/pkg/action/uninstall.go index 37df65921..e44b15583 100644 --- a/pkg/action/uninstall.go +++ b/pkg/action/uninstall.go @@ -24,10 +24,10 @@ import ( "github.com/pkg/errors" - "k8s.io/helm/pkg/hooks" - "k8s.io/helm/pkg/kube" - "k8s.io/helm/pkg/release" - "k8s.io/helm/pkg/releaseutil" + "helm.sh/helm/pkg/hooks" + "helm.sh/helm/pkg/kube" + "helm.sh/helm/pkg/release" + "helm.sh/helm/pkg/releaseutil" ) // Uninstall is the action for uninstalling releases. diff --git a/pkg/action/upgrade.go b/pkg/action/upgrade.go index 8e8dce162..5d1a06df9 100644 --- a/pkg/action/upgrade.go +++ b/pkg/action/upgrade.go @@ -27,14 +27,14 @@ import ( "github.com/pkg/errors" "k8s.io/client-go/discovery" - "k8s.io/helm/pkg/chart" - "k8s.io/helm/pkg/chartutil" - "k8s.io/helm/pkg/engine" - "k8s.io/helm/pkg/hooks" - "k8s.io/helm/pkg/kube" - "k8s.io/helm/pkg/release" - "k8s.io/helm/pkg/releaseutil" - "k8s.io/helm/pkg/version" + "helm.sh/helm/pkg/chart" + "helm.sh/helm/pkg/chartutil" + "helm.sh/helm/pkg/engine" + "helm.sh/helm/pkg/hooks" + "helm.sh/helm/pkg/kube" + "helm.sh/helm/pkg/release" + "helm.sh/helm/pkg/releaseutil" + "helm.sh/helm/pkg/version" ) // Upgrade is the action for upgrading releases. diff --git a/pkg/action/verify.go b/pkg/action/verify.go index 533ef8813..e78d50a14 100644 --- a/pkg/action/verify.go +++ b/pkg/action/verify.go @@ -17,7 +17,7 @@ limitations under the License. package action import ( - "k8s.io/helm/pkg/downloader" + "helm.sh/helm/pkg/downloader" ) // Verify is the action for building a given chart's Verify tree. diff --git a/pkg/chart/loader/archive.go b/pkg/chart/loader/archive.go index 2b2433c72..514f2e1bb 100644 --- a/pkg/chart/loader/archive.go +++ b/pkg/chart/loader/archive.go @@ -26,7 +26,7 @@ import ( "github.com/pkg/errors" - "k8s.io/helm/pkg/chart" + "helm.sh/helm/pkg/chart" ) // FileLoader loads a chart from a file diff --git a/pkg/chart/loader/directory.go b/pkg/chart/loader/directory.go index b670abfaa..921b5a166 100644 --- a/pkg/chart/loader/directory.go +++ b/pkg/chart/loader/directory.go @@ -24,9 +24,9 @@ import ( "github.com/pkg/errors" - "k8s.io/helm/pkg/chart" - "k8s.io/helm/pkg/ignore" - "k8s.io/helm/pkg/sympath" + "helm.sh/helm/pkg/chart" + "helm.sh/helm/pkg/ignore" + "helm.sh/helm/pkg/sympath" ) // DirLoader loads a chart from a directory diff --git a/pkg/chart/loader/load.go b/pkg/chart/loader/load.go index d5d02cff1..0782a964e 100644 --- a/pkg/chart/loader/load.go +++ b/pkg/chart/loader/load.go @@ -25,7 +25,7 @@ import ( "github.com/ghodss/yaml" "github.com/pkg/errors" - "k8s.io/helm/pkg/chart" + "helm.sh/helm/pkg/chart" ) // ChartLoader loads a chart. diff --git a/pkg/chart/loader/load_test.go b/pkg/chart/loader/load_test.go index f2d072aa6..686f50dcf 100644 --- a/pkg/chart/loader/load_test.go +++ b/pkg/chart/loader/load_test.go @@ -19,7 +19,7 @@ package loader import ( "testing" - "k8s.io/helm/pkg/chart" + "helm.sh/helm/pkg/chart" ) func TestLoadDir(t *testing.T) { diff --git a/pkg/chart/loader/testdata/frobnitz/charts/alpine/Chart.yaml b/pkg/chart/loader/testdata/frobnitz/charts/alpine/Chart.yaml index 38a4aaa54..4cc36dca5 100644 --- a/pkg/chart/loader/testdata/frobnitz/charts/alpine/Chart.yaml +++ b/pkg/chart/loader/testdata/frobnitz/charts/alpine/Chart.yaml @@ -1,4 +1,4 @@ name: alpine description: Deploy a basic Alpine Linux pod version: 0.1.0 -home: https://k8s.io/helm +home: https://helm.sh/helm diff --git a/pkg/chart/loader/testdata/frobnitz_backslash/charts/alpine/Chart.yaml b/pkg/chart/loader/testdata/frobnitz_backslash/charts/alpine/Chart.yaml index 38a4aaa54..4cc36dca5 100755 --- a/pkg/chart/loader/testdata/frobnitz_backslash/charts/alpine/Chart.yaml +++ b/pkg/chart/loader/testdata/frobnitz_backslash/charts/alpine/Chart.yaml @@ -1,4 +1,4 @@ name: alpine description: Deploy a basic Alpine Linux pod version: 0.1.0 -home: https://k8s.io/helm +home: https://helm.sh/helm diff --git a/pkg/chart/metadata.go b/pkg/chart/metadata.go index 95dfe88ef..d0f03a61a 100644 --- a/pkg/chart/metadata.go +++ b/pkg/chart/metadata.go @@ -27,7 +27,7 @@ type Maintainer struct { // Metadata for a Chart file. This models the structure of a Chart.yaml file. // -// Spec: https://k8s.io/helm/blob/master/docs/design/chart_format.md#the-chart-file +// Spec: https://helm.sh/helm/blob/master/docs/design/chart_format.md#the-chart-file type Metadata struct { // The name of the chart Name string `json:"name,omitempty"` diff --git a/pkg/chartutil/chartfile.go b/pkg/chartutil/chartfile.go index 7e90966b4..17d6e2bb2 100644 --- a/pkg/chartutil/chartfile.go +++ b/pkg/chartutil/chartfile.go @@ -25,7 +25,7 @@ import ( "github.com/ghodss/yaml" "github.com/pkg/errors" - "k8s.io/helm/pkg/chart" + "helm.sh/helm/pkg/chart" ) // LoadChartfile loads a Chart.yaml file into a *chart.Metadata. diff --git a/pkg/chartutil/chartfile_test.go b/pkg/chartutil/chartfile_test.go index 4c388ef8e..358c8231d 100644 --- a/pkg/chartutil/chartfile_test.go +++ b/pkg/chartutil/chartfile_test.go @@ -19,7 +19,7 @@ package chartutil import ( "testing" - "k8s.io/helm/pkg/chart" + "helm.sh/helm/pkg/chart" ) const testfile = "testdata/chartfiletest.yaml" diff --git a/pkg/chartutil/create.go b/pkg/chartutil/create.go index b5bed235f..763f92735 100644 --- a/pkg/chartutil/create.go +++ b/pkg/chartutil/create.go @@ -26,8 +26,8 @@ import ( "github.com/ghodss/yaml" "github.com/pkg/errors" - "k8s.io/helm/pkg/chart" - "k8s.io/helm/pkg/chart/loader" + "helm.sh/helm/pkg/chart" + "helm.sh/helm/pkg/chart/loader" ) const ( diff --git a/pkg/chartutil/create_test.go b/pkg/chartutil/create_test.go index 79a17b27f..ab8b43e96 100644 --- a/pkg/chartutil/create_test.go +++ b/pkg/chartutil/create_test.go @@ -23,8 +23,8 @@ import ( "strings" "testing" - "k8s.io/helm/pkg/chart" - "k8s.io/helm/pkg/chart/loader" + "helm.sh/helm/pkg/chart" + "helm.sh/helm/pkg/chart/loader" ) func TestCreate(t *testing.T) { diff --git a/pkg/chartutil/dependencies.go b/pkg/chartutil/dependencies.go index 20041b758..e362e35ff 100644 --- a/pkg/chartutil/dependencies.go +++ b/pkg/chartutil/dependencies.go @@ -19,8 +19,8 @@ import ( "log" "strings" - "k8s.io/helm/pkg/chart" - "k8s.io/helm/pkg/version" + "helm.sh/helm/pkg/chart" + "helm.sh/helm/pkg/version" ) // ProcessDependencies checks through this chart's dependencies, processing accordingly. diff --git a/pkg/chartutil/dependencies_test.go b/pkg/chartutil/dependencies_test.go index ea6ce066d..10f7d250f 100644 --- a/pkg/chartutil/dependencies_test.go +++ b/pkg/chartutil/dependencies_test.go @@ -21,9 +21,9 @@ import ( "strconv" "testing" - "k8s.io/helm/pkg/chart" - "k8s.io/helm/pkg/chart/loader" - "k8s.io/helm/pkg/version" + "helm.sh/helm/pkg/chart" + "helm.sh/helm/pkg/chart/loader" + "helm.sh/helm/pkg/version" ) func loadChart(t *testing.T, path string) *chart.Chart { diff --git a/pkg/chartutil/doc.go b/pkg/chartutil/doc.go index b479bc075..db90c12fe 100644 --- a/pkg/chartutil/doc.go +++ b/pkg/chartutil/doc.go @@ -38,7 +38,7 @@ For accepting raw compressed tar file data from an io.Reader, the 'loader.LoadArchive()' will read in the data, uncompress it, and unpack it into a Chart. -When creating charts in memory, use the 'k8s.io/helm/pkg/proto/chart' +When creating charts in memory, use the 'helm.sh/helm/pkg/proto/chart' package directly. */ -package chartutil // import "k8s.io/helm/pkg/chartutil" +package chartutil // import "helm.sh/helm/pkg/chartutil" diff --git a/pkg/chartutil/save.go b/pkg/chartutil/save.go index 72462f626..a456b206e 100644 --- a/pkg/chartutil/save.go +++ b/pkg/chartutil/save.go @@ -27,7 +27,7 @@ import ( "github.com/ghodss/yaml" "github.com/pkg/errors" - "k8s.io/helm/pkg/chart" + "helm.sh/helm/pkg/chart" ) var headerBytes = []byte("+aHR0cHM6Ly95b3V0dS5iZS96OVV6MWljandyTQo=") diff --git a/pkg/chartutil/save_test.go b/pkg/chartutil/save_test.go index e0634081d..72b804c81 100644 --- a/pkg/chartutil/save_test.go +++ b/pkg/chartutil/save_test.go @@ -22,8 +22,8 @@ import ( "strings" "testing" - "k8s.io/helm/pkg/chart" - "k8s.io/helm/pkg/chart/loader" + "helm.sh/helm/pkg/chart" + "helm.sh/helm/pkg/chart/loader" ) func TestSave(t *testing.T) { diff --git a/pkg/chartutil/testdata/dependent-chart-alias/charts/alpine/Chart.yaml b/pkg/chartutil/testdata/dependent-chart-alias/charts/alpine/Chart.yaml index 38a4aaa54..4cc36dca5 100644 --- a/pkg/chartutil/testdata/dependent-chart-alias/charts/alpine/Chart.yaml +++ b/pkg/chartutil/testdata/dependent-chart-alias/charts/alpine/Chart.yaml @@ -1,4 +1,4 @@ name: alpine description: Deploy a basic Alpine Linux pod version: 0.1.0 -home: https://k8s.io/helm +home: https://helm.sh/helm diff --git a/pkg/chartutil/testdata/dependent-chart-helmignore/charts/alpine/Chart.yaml b/pkg/chartutil/testdata/dependent-chart-helmignore/charts/alpine/Chart.yaml index 38a4aaa54..4cc36dca5 100644 --- a/pkg/chartutil/testdata/dependent-chart-helmignore/charts/alpine/Chart.yaml +++ b/pkg/chartutil/testdata/dependent-chart-helmignore/charts/alpine/Chart.yaml @@ -1,4 +1,4 @@ name: alpine description: Deploy a basic Alpine Linux pod version: 0.1.0 -home: https://k8s.io/helm +home: https://helm.sh/helm diff --git a/pkg/chartutil/testdata/dependent-chart-no-requirements-yaml/charts/alpine/Chart.yaml b/pkg/chartutil/testdata/dependent-chart-no-requirements-yaml/charts/alpine/Chart.yaml index 38a4aaa54..4cc36dca5 100644 --- a/pkg/chartutil/testdata/dependent-chart-no-requirements-yaml/charts/alpine/Chart.yaml +++ b/pkg/chartutil/testdata/dependent-chart-no-requirements-yaml/charts/alpine/Chart.yaml @@ -1,4 +1,4 @@ name: alpine description: Deploy a basic Alpine Linux pod version: 0.1.0 -home: https://k8s.io/helm +home: https://helm.sh/helm diff --git a/pkg/chartutil/testdata/dependent-chart-with-all-in-requirements-yaml/charts/alpine/Chart.yaml b/pkg/chartutil/testdata/dependent-chart-with-all-in-requirements-yaml/charts/alpine/Chart.yaml index 38a4aaa54..4cc36dca5 100644 --- a/pkg/chartutil/testdata/dependent-chart-with-all-in-requirements-yaml/charts/alpine/Chart.yaml +++ b/pkg/chartutil/testdata/dependent-chart-with-all-in-requirements-yaml/charts/alpine/Chart.yaml @@ -1,4 +1,4 @@ name: alpine description: Deploy a basic Alpine Linux pod version: 0.1.0 -home: https://k8s.io/helm +home: https://helm.sh/helm diff --git a/pkg/chartutil/testdata/dependent-chart-with-mixed-requirements-yaml/charts/alpine/Chart.yaml b/pkg/chartutil/testdata/dependent-chart-with-mixed-requirements-yaml/charts/alpine/Chart.yaml index 38a4aaa54..4cc36dca5 100644 --- a/pkg/chartutil/testdata/dependent-chart-with-mixed-requirements-yaml/charts/alpine/Chart.yaml +++ b/pkg/chartutil/testdata/dependent-chart-with-mixed-requirements-yaml/charts/alpine/Chart.yaml @@ -1,4 +1,4 @@ name: alpine description: Deploy a basic Alpine Linux pod version: 0.1.0 -home: https://k8s.io/helm +home: https://helm.sh/helm diff --git a/pkg/chartutil/testdata/frobnitz/charts/alpine/Chart.yaml b/pkg/chartutil/testdata/frobnitz/charts/alpine/Chart.yaml index 38a4aaa54..4cc36dca5 100644 --- a/pkg/chartutil/testdata/frobnitz/charts/alpine/Chart.yaml +++ b/pkg/chartutil/testdata/frobnitz/charts/alpine/Chart.yaml @@ -1,4 +1,4 @@ name: alpine description: Deploy a basic Alpine Linux pod version: 0.1.0 -home: https://k8s.io/helm +home: https://helm.sh/helm diff --git a/pkg/chartutil/testdata/frobnitz_backslash/charts/alpine/Chart.yaml b/pkg/chartutil/testdata/frobnitz_backslash/charts/alpine/Chart.yaml index 38a4aaa54..4cc36dca5 100755 --- a/pkg/chartutil/testdata/frobnitz_backslash/charts/alpine/Chart.yaml +++ b/pkg/chartutil/testdata/frobnitz_backslash/charts/alpine/Chart.yaml @@ -1,4 +1,4 @@ name: alpine description: Deploy a basic Alpine Linux pod version: 0.1.0 -home: https://k8s.io/helm +home: https://helm.sh/helm diff --git a/pkg/chartutil/values.go b/pkg/chartutil/values.go index 8c7328701..7d299601f 100644 --- a/pkg/chartutil/values.go +++ b/pkg/chartutil/values.go @@ -26,7 +26,7 @@ import ( "github.com/ghodss/yaml" "github.com/pkg/errors" - "k8s.io/helm/pkg/chart" + "helm.sh/helm/pkg/chart" ) // ErrNoTable indicates that a chart does not have a matching table. diff --git a/pkg/chartutil/values_test.go b/pkg/chartutil/values_test.go index 2d56f771a..2faaf7828 100644 --- a/pkg/chartutil/values_test.go +++ b/pkg/chartutil/values_test.go @@ -25,7 +25,7 @@ import ( kversion "k8s.io/apimachinery/pkg/version" - "k8s.io/helm/pkg/chart" + "helm.sh/helm/pkg/chart" ) func TestReadValues(t *testing.T) { diff --git a/pkg/cli/environment.go b/pkg/cli/environment.go index a3f65643c..bb83304d6 100644 --- a/pkg/cli/environment.go +++ b/pkg/cli/environment.go @@ -29,7 +29,7 @@ import ( "github.com/spf13/pflag" "k8s.io/client-go/util/homedir" - "k8s.io/helm/pkg/helmpath" + "helm.sh/helm/pkg/helmpath" ) // defaultHelmHome is the default HELM_HOME. diff --git a/pkg/cli/environment_test.go b/pkg/cli/environment_test.go index e5411406f..06ddf73bd 100644 --- a/pkg/cli/environment_test.go +++ b/pkg/cli/environment_test.go @@ -23,7 +23,7 @@ import ( "github.com/spf13/pflag" - "k8s.io/helm/pkg/helmpath" + "helm.sh/helm/pkg/helmpath" ) func TestEnvSettings(t *testing.T) { diff --git a/pkg/downloader/chart_downloader.go b/pkg/downloader/chart_downloader.go index 6d67c984e..6cb917915 100644 --- a/pkg/downloader/chart_downloader.go +++ b/pkg/downloader/chart_downloader.go @@ -26,11 +26,11 @@ import ( "github.com/pkg/errors" - "k8s.io/helm/pkg/getter" - "k8s.io/helm/pkg/helmpath" - "k8s.io/helm/pkg/provenance" - "k8s.io/helm/pkg/repo" - "k8s.io/helm/pkg/urlutil" + "helm.sh/helm/pkg/getter" + "helm.sh/helm/pkg/helmpath" + "helm.sh/helm/pkg/provenance" + "helm.sh/helm/pkg/repo" + "helm.sh/helm/pkg/urlutil" ) // VerificationStrategy describes a strategy for determining whether to verify a chart. diff --git a/pkg/downloader/chart_downloader_test.go b/pkg/downloader/chart_downloader_test.go index f8b47c57c..33964641b 100644 --- a/pkg/downloader/chart_downloader_test.go +++ b/pkg/downloader/chart_downloader_test.go @@ -25,11 +25,11 @@ import ( "path/filepath" "testing" - "k8s.io/helm/pkg/cli" - "k8s.io/helm/pkg/getter" - "k8s.io/helm/pkg/helmpath" - "k8s.io/helm/pkg/repo" - "k8s.io/helm/pkg/repo/repotest" + "helm.sh/helm/pkg/cli" + "helm.sh/helm/pkg/getter" + "helm.sh/helm/pkg/helmpath" + "helm.sh/helm/pkg/repo" + "helm.sh/helm/pkg/repo/repotest" ) func TestResolveChartRef(t *testing.T) { diff --git a/pkg/downloader/manager.go b/pkg/downloader/manager.go index 1800be48e..779857405 100644 --- a/pkg/downloader/manager.go +++ b/pkg/downloader/manager.go @@ -30,14 +30,14 @@ import ( "github.com/ghodss/yaml" "github.com/pkg/errors" - "k8s.io/helm/pkg/chart" - "k8s.io/helm/pkg/chart/loader" - "k8s.io/helm/pkg/chartutil" - "k8s.io/helm/pkg/getter" - "k8s.io/helm/pkg/helmpath" - "k8s.io/helm/pkg/repo" - "k8s.io/helm/pkg/resolver" - "k8s.io/helm/pkg/urlutil" + "helm.sh/helm/pkg/chart" + "helm.sh/helm/pkg/chart/loader" + "helm.sh/helm/pkg/chartutil" + "helm.sh/helm/pkg/getter" + "helm.sh/helm/pkg/helmpath" + "helm.sh/helm/pkg/repo" + "helm.sh/helm/pkg/resolver" + "helm.sh/helm/pkg/urlutil" ) // Manager handles the lifecycle of fetching, resolving, and storing dependencies. diff --git a/pkg/downloader/manager_test.go b/pkg/downloader/manager_test.go index ad230ba74..8f1c74cf6 100644 --- a/pkg/downloader/manager_test.go +++ b/pkg/downloader/manager_test.go @@ -20,8 +20,8 @@ import ( "reflect" "testing" - "k8s.io/helm/pkg/chart" - "k8s.io/helm/pkg/helmpath" + "helm.sh/helm/pkg/chart" + "helm.sh/helm/pkg/helmpath" ) func TestVersionEquals(t *testing.T) { diff --git a/pkg/downloader/testdata/helmhome/repository/cache/kubernetes-charts-index.yaml b/pkg/downloader/testdata/helmhome/repository/cache/kubernetes-charts-index.yaml index 95cb2a5d4..9a4640923 100644 --- a/pkg/downloader/testdata/helmhome/repository/cache/kubernetes-charts-index.yaml +++ b/pkg/downloader/testdata/helmhome/repository/cache/kubernetes-charts-index.yaml @@ -5,7 +5,7 @@ entries: urls: - https://kubernetes-charts.storage.googleapis.com/alpine-0.1.0.tgz checksum: 0e6661f193211d7a5206918d42f5c2a9470b737d - home: https://k8s.io/helm + home: https://helm.sh/helm sources: - https://github.com/helm/helm version: 0.1.0 @@ -17,7 +17,7 @@ entries: urls: - https://kubernetes-charts.storage.googleapis.com/alpine-0.2.0.tgz checksum: 0e6661f193211d7a5206918d42f5c2a9470b737d - home: https://k8s.io/helm + home: https://helm.sh/helm sources: - https://github.com/helm/helm version: 0.2.0 diff --git a/pkg/downloader/testdata/helmhome/repository/cache/malformed-index.yaml b/pkg/downloader/testdata/helmhome/repository/cache/malformed-index.yaml index f29c73407..887e129e9 100644 --- a/pkg/downloader/testdata/helmhome/repository/cache/malformed-index.yaml +++ b/pkg/downloader/testdata/helmhome/repository/cache/malformed-index.yaml @@ -5,7 +5,7 @@ entries: urls: - alpine-1.2.3.tgz checksum: 0e6661f193211d7a5206918d42f5c2a9470b737d - home: https://k8s.io/helm + home: https://helm.sh/helm sources: - https://github.com/helm/helm version: 1.2.3 diff --git a/pkg/downloader/testdata/helmhome/repository/cache/testing-basicauth-index.yaml b/pkg/downloader/testdata/helmhome/repository/cache/testing-basicauth-index.yaml index f9891dc1a..da3ed5108 100644 --- a/pkg/downloader/testdata/helmhome/repository/cache/testing-basicauth-index.yaml +++ b/pkg/downloader/testdata/helmhome/repository/cache/testing-basicauth-index.yaml @@ -3,7 +3,7 @@ entries: foo: - name: foo description: Foo Chart - home: https://k8s.io/helm + home: https://helm.sh/helm keywords: [] maintainers: [] sources: diff --git a/pkg/downloader/testdata/helmhome/repository/cache/testing-https-index.yaml b/pkg/downloader/testdata/helmhome/repository/cache/testing-https-index.yaml index 460bb5f48..17cdde1c6 100644 --- a/pkg/downloader/testdata/helmhome/repository/cache/testing-https-index.yaml +++ b/pkg/downloader/testdata/helmhome/repository/cache/testing-https-index.yaml @@ -3,7 +3,7 @@ entries: foo: - name: foo description: Foo Chart - home: https://k8s.io/helm + home: https://helm.sh/helm keywords: [] maintainers: [] sources: diff --git a/pkg/downloader/testdata/helmhome/repository/cache/testing-index.yaml b/pkg/downloader/testdata/helmhome/repository/cache/testing-index.yaml index 662d5d689..16abc7317 100644 --- a/pkg/downloader/testdata/helmhome/repository/cache/testing-index.yaml +++ b/pkg/downloader/testdata/helmhome/repository/cache/testing-index.yaml @@ -5,7 +5,7 @@ entries: urls: - http://example.com/alpine-1.2.3.tgz checksum: 0e6661f193211d7a5206918d42f5c2a9470b737d - home: https://k8s.io/helm + home: https://helm.sh/helm sources: - https://github.com/helm/helm version: 1.2.3 @@ -18,7 +18,7 @@ entries: - http://example.com/alpine-0.2.0.tgz - https://kubernetes-charts.storage.googleapis.com/alpine-0.2.0.tgz checksum: 0e6661f193211d7a5206918d42f5c2a9470b737d - home: https://k8s.io/helm + home: https://helm.sh/helm sources: - https://github.com/helm/helm version: 0.2.0 @@ -29,7 +29,7 @@ entries: foo: - name: foo description: Foo Chart - home: https://k8s.io/helm + home: https://helm.sh/helm keywords: [] maintainers: [] sources: diff --git a/pkg/downloader/testdata/helmhome/repository/cache/testing-querystring-index.yaml b/pkg/downloader/testdata/helmhome/repository/cache/testing-querystring-index.yaml index f29c73407..887e129e9 100644 --- a/pkg/downloader/testdata/helmhome/repository/cache/testing-querystring-index.yaml +++ b/pkg/downloader/testdata/helmhome/repository/cache/testing-querystring-index.yaml @@ -5,7 +5,7 @@ entries: urls: - alpine-1.2.3.tgz checksum: 0e6661f193211d7a5206918d42f5c2a9470b737d - home: https://k8s.io/helm + home: https://helm.sh/helm sources: - https://github.com/helm/helm version: 1.2.3 diff --git a/pkg/downloader/testdata/helmhome/repository/cache/testing-relative-index.yaml b/pkg/downloader/testdata/helmhome/repository/cache/testing-relative-index.yaml index e82368193..62197b698 100644 --- a/pkg/downloader/testdata/helmhome/repository/cache/testing-relative-index.yaml +++ b/pkg/downloader/testdata/helmhome/repository/cache/testing-relative-index.yaml @@ -3,7 +3,7 @@ entries: foo: - name: foo description: Foo Chart With Relative Path - home: https://k8s.io/helm + home: https://helm.sh/helm keywords: [] maintainers: [] sources: @@ -15,7 +15,7 @@ entries: bar: - name: bar description: Bar Chart With Relative Path - home: https://k8s.io/helm + home: https://helm.sh/helm keywords: [] maintainers: [] sources: diff --git a/pkg/downloader/testdata/helmhome/repository/cache/testing-relative-trailing-slash-index.yaml b/pkg/downloader/testdata/helmhome/repository/cache/testing-relative-trailing-slash-index.yaml index e82368193..62197b698 100644 --- a/pkg/downloader/testdata/helmhome/repository/cache/testing-relative-trailing-slash-index.yaml +++ b/pkg/downloader/testdata/helmhome/repository/cache/testing-relative-trailing-slash-index.yaml @@ -3,7 +3,7 @@ entries: foo: - name: foo description: Foo Chart With Relative Path - home: https://k8s.io/helm + home: https://helm.sh/helm keywords: [] maintainers: [] sources: @@ -15,7 +15,7 @@ entries: bar: - name: bar description: Bar Chart With Relative Path - home: https://k8s.io/helm + home: https://helm.sh/helm keywords: [] maintainers: [] sources: diff --git a/pkg/downloader/testdata/signtest/alpine/Chart.yaml b/pkg/downloader/testdata/signtest/alpine/Chart.yaml index fea865aa5..e45d7326a 100644 --- a/pkg/downloader/testdata/signtest/alpine/Chart.yaml +++ b/pkg/downloader/testdata/signtest/alpine/Chart.yaml @@ -1,5 +1,5 @@ description: Deploy a basic Alpine Linux pod -home: https://k8s.io/helm +home: https://helm.sh/helm name: alpine sources: - https://github.com/helm/helm diff --git a/pkg/engine/doc.go b/pkg/engine/doc.go index 63c036605..fc96b7bd6 100644 --- a/pkg/engine/doc.go +++ b/pkg/engine/doc.go @@ -20,4 +20,4 @@ Tiller provides a simple interface for taking a Chart and rendering its template The 'engine' package implements this interface using Go's built-in 'text/template' package. */ -package engine // import "k8s.io/helm/pkg/engine" +package engine // import "helm.sh/helm/pkg/engine" diff --git a/pkg/engine/engine.go b/pkg/engine/engine.go index a34e49888..177f1b44c 100644 --- a/pkg/engine/engine.go +++ b/pkg/engine/engine.go @@ -24,8 +24,8 @@ import ( "github.com/pkg/errors" - "k8s.io/helm/pkg/chart" - "k8s.io/helm/pkg/chartutil" + "helm.sh/helm/pkg/chart" + "helm.sh/helm/pkg/chartutil" ) // Engine is an implementation of 'cmd/tiller/environment'.Engine that uses Go templates. diff --git a/pkg/engine/engine_test.go b/pkg/engine/engine_test.go index 90f10d368..aebb2ad09 100644 --- a/pkg/engine/engine_test.go +++ b/pkg/engine/engine_test.go @@ -22,8 +22,8 @@ import ( "sync" "testing" - "k8s.io/helm/pkg/chart" - "k8s.io/helm/pkg/chartutil" + "helm.sh/helm/pkg/chart" + "helm.sh/helm/pkg/chartutil" ) func TestSortTemplates(t *testing.T) { diff --git a/pkg/engine/files.go b/pkg/engine/files.go index 654ec6ada..6caf9ca86 100644 --- a/pkg/engine/files.go +++ b/pkg/engine/files.go @@ -23,7 +23,7 @@ import ( "github.com/gobwas/glob" - "k8s.io/helm/pkg/chart" + "helm.sh/helm/pkg/chart" ) // files is a map of files in a chart that can be accessed from a template. diff --git a/pkg/getter/getter.go b/pkg/getter/getter.go index 087cc0805..d305395ee 100644 --- a/pkg/getter/getter.go +++ b/pkg/getter/getter.go @@ -21,7 +21,7 @@ import ( "github.com/pkg/errors" - "k8s.io/helm/pkg/cli" + "helm.sh/helm/pkg/cli" ) // Getter is an interface to support GET to the specified URL. diff --git a/pkg/getter/httpgetter.go b/pkg/getter/httpgetter.go index 84a7d94a6..961840dba 100644 --- a/pkg/getter/httpgetter.go +++ b/pkg/getter/httpgetter.go @@ -22,8 +22,8 @@ import ( "github.com/pkg/errors" - "k8s.io/helm/pkg/tlsutil" - "k8s.io/helm/pkg/urlutil" + "helm.sh/helm/pkg/tlsutil" + "helm.sh/helm/pkg/urlutil" ) // HTTPGetter is the efault HTTP(/S) backend handler diff --git a/pkg/getter/plugingetter.go b/pkg/getter/plugingetter.go index 61c1eda90..c3a88297b 100644 --- a/pkg/getter/plugingetter.go +++ b/pkg/getter/plugingetter.go @@ -23,8 +23,8 @@ import ( "github.com/pkg/errors" - "k8s.io/helm/pkg/cli" - "k8s.io/helm/pkg/plugin" + "helm.sh/helm/pkg/cli" + "helm.sh/helm/pkg/plugin" ) // collectPlugins scans for getter plugins. diff --git a/pkg/getter/plugingetter_test.go b/pkg/getter/plugingetter_test.go index a147928b3..470515dae 100644 --- a/pkg/getter/plugingetter_test.go +++ b/pkg/getter/plugingetter_test.go @@ -22,8 +22,8 @@ import ( "strings" "testing" - "k8s.io/helm/pkg/cli" - "k8s.io/helm/pkg/helmpath" + "helm.sh/helm/pkg/cli" + "helm.sh/helm/pkg/helmpath" ) func hh(debug bool) cli.EnvSettings { diff --git a/pkg/hooks/hooks.go b/pkg/hooks/hooks.go index 011cdc960..6b6c6fdcc 100644 --- a/pkg/hooks/hooks.go +++ b/pkg/hooks/hooks.go @@ -17,7 +17,7 @@ limitations under the License. package hooks import ( - "k8s.io/helm/pkg/release" + "helm.sh/helm/pkg/release" ) // HookAnno is the label name for a hook diff --git a/pkg/ignore/doc.go b/pkg/ignore/doc.go index 85cc91060..770200ce3 100644 --- a/pkg/ignore/doc.go +++ b/pkg/ignore/doc.go @@ -64,4 +64,4 @@ Notable differences from .gitignore: - The evaluation of escape sequences has not been tested for compatibility - There is no support for '\!' as a special leading sequence. */ -package ignore // import "k8s.io/helm/pkg/ignore" +package ignore // import "helm.sh/helm/pkg/ignore" diff --git a/pkg/kube/client.go b/pkg/kube/client.go index ef2d73ae8..f520f743d 100644 --- a/pkg/kube/client.go +++ b/pkg/kube/client.go @@ -14,7 +14,7 @@ See the License for the specific language governing permissions and limitations under the License. */ -package kube // import "k8s.io/helm/pkg/kube" +package kube // import "helm.sh/helm/pkg/kube" import ( "bytes" diff --git a/pkg/kube/config.go b/pkg/kube/config.go index 2e430d5ac..f82e3f4fd 100644 --- a/pkg/kube/config.go +++ b/pkg/kube/config.go @@ -14,7 +14,7 @@ See the License for the specific language governing permissions and limitations under the License. */ -package kube // import "k8s.io/helm/pkg/kube" +package kube // import "helm.sh/helm/pkg/kube" import "k8s.io/cli-runtime/pkg/genericclioptions" diff --git a/pkg/kube/converter.go b/pkg/kube/converter.go index b056129e9..1f967bd38 100644 --- a/pkg/kube/converter.go +++ b/pkg/kube/converter.go @@ -14,7 +14,7 @@ See the License for the specific language governing permissions and limitations under the License. */ -package kube // import "k8s.io/helm/pkg/kube" +package kube // import "helm.sh/helm/pkg/kube" import ( "k8s.io/apimachinery/pkg/runtime" diff --git a/pkg/kube/factory.go b/pkg/kube/factory.go index 26dad8379..880a1f595 100644 --- a/pkg/kube/factory.go +++ b/pkg/kube/factory.go @@ -14,7 +14,7 @@ See the License for the specific language governing permissions and limitations under the License. */ -package kube // import "k8s.io/helm/pkg/kube" +package kube // import "helm.sh/helm/pkg/kube" import ( "k8s.io/cli-runtime/pkg/genericclioptions/resource" diff --git a/pkg/kube/result.go b/pkg/kube/result.go index cc222a66f..5c3535499 100644 --- a/pkg/kube/result.go +++ b/pkg/kube/result.go @@ -14,7 +14,7 @@ See the License for the specific language governing permissions and limitations under the License. */ -package kube // import "k8s.io/helm/pkg/kube" +package kube // import "helm.sh/helm/pkg/kube" import "k8s.io/cli-runtime/pkg/genericclioptions/resource" diff --git a/pkg/kube/result_test.go b/pkg/kube/result_test.go index c4cf989b8..d5cd31e6e 100644 --- a/pkg/kube/result_test.go +++ b/pkg/kube/result_test.go @@ -14,7 +14,7 @@ See the License for the specific language governing permissions and limitations under the License. */ -package kube // import "k8s.io/helm/pkg/kube" +package kube // import "helm.sh/helm/pkg/kube" import ( "testing" diff --git a/pkg/kube/wait.go b/pkg/kube/wait.go index 229caf436..229fb977a 100644 --- a/pkg/kube/wait.go +++ b/pkg/kube/wait.go @@ -14,7 +14,7 @@ See the License for the specific language governing permissions and limitations under the License. */ -package kube // import "k8s.io/helm/pkg/kube" +package kube // import "helm.sh/helm/pkg/kube" import ( "time" diff --git a/pkg/lint/lint.go b/pkg/lint/lint.go index 534085cd1..e4848e7af 100644 --- a/pkg/lint/lint.go +++ b/pkg/lint/lint.go @@ -14,13 +14,13 @@ See the License for the specific language governing permissions and limitations under the License. */ -package lint // import "k8s.io/helm/pkg/lint" +package lint // import "helm.sh/helm/pkg/lint" import ( "path/filepath" - "k8s.io/helm/pkg/lint/rules" - "k8s.io/helm/pkg/lint/support" + "helm.sh/helm/pkg/lint/rules" + "helm.sh/helm/pkg/lint/support" ) // All runs all of the available linters on the given base directory. diff --git a/pkg/lint/lint_test.go b/pkg/lint/lint_test.go index 2336bc7ec..e4fc67152 100644 --- a/pkg/lint/lint_test.go +++ b/pkg/lint/lint_test.go @@ -20,7 +20,7 @@ import ( "strings" "testing" - "k8s.io/helm/pkg/lint/support" + "helm.sh/helm/pkg/lint/support" ) var values map[string]interface{} diff --git a/pkg/lint/rules/chartfile.go b/pkg/lint/rules/chartfile.go index 7a2cbed20..f1abf55d4 100644 --- a/pkg/lint/rules/chartfile.go +++ b/pkg/lint/rules/chartfile.go @@ -14,7 +14,7 @@ See the License for the specific language governing permissions and limitations under the License. */ -package rules // import "k8s.io/helm/pkg/lint/rules" +package rules // import "helm.sh/helm/pkg/lint/rules" import ( "os" @@ -24,9 +24,9 @@ import ( "github.com/asaskevich/govalidator" "github.com/pkg/errors" - "k8s.io/helm/pkg/chart" - "k8s.io/helm/pkg/chartutil" - "k8s.io/helm/pkg/lint/support" + "helm.sh/helm/pkg/chart" + "helm.sh/helm/pkg/chartutil" + "helm.sh/helm/pkg/lint/support" ) // Chartfile runs a set of linter rules related to Chart.yaml file diff --git a/pkg/lint/rules/chartfile_test.go b/pkg/lint/rules/chartfile_test.go index a07a31413..e9ef3a29d 100644 --- a/pkg/lint/rules/chartfile_test.go +++ b/pkg/lint/rules/chartfile_test.go @@ -24,9 +24,9 @@ import ( "github.com/pkg/errors" - "k8s.io/helm/pkg/chart" - "k8s.io/helm/pkg/chartutil" - "k8s.io/helm/pkg/lint/support" + "helm.sh/helm/pkg/chart" + "helm.sh/helm/pkg/chartutil" + "helm.sh/helm/pkg/lint/support" ) const ( diff --git a/pkg/lint/rules/template.go b/pkg/lint/rules/template.go index 6b7f53578..e69b9e0fb 100644 --- a/pkg/lint/rules/template.go +++ b/pkg/lint/rules/template.go @@ -23,10 +23,10 @@ import ( "github.com/ghodss/yaml" "github.com/pkg/errors" - "k8s.io/helm/pkg/chart/loader" - "k8s.io/helm/pkg/chartutil" - "k8s.io/helm/pkg/engine" - "k8s.io/helm/pkg/lint/support" + "helm.sh/helm/pkg/chart/loader" + "helm.sh/helm/pkg/chartutil" + "helm.sh/helm/pkg/engine" + "helm.sh/helm/pkg/lint/support" ) // Templates lints the templates in the Linter. diff --git a/pkg/lint/rules/template_test.go b/pkg/lint/rules/template_test.go index 8731cf96e..c31e695cb 100644 --- a/pkg/lint/rules/template_test.go +++ b/pkg/lint/rules/template_test.go @@ -22,7 +22,7 @@ import ( "strings" "testing" - "k8s.io/helm/pkg/lint/support" + "helm.sh/helm/pkg/lint/support" ) const templateTestBasedir = "./testdata/albatross" diff --git a/pkg/lint/rules/values.go b/pkg/lint/rules/values.go index d698cea71..f3d9a7317 100644 --- a/pkg/lint/rules/values.go +++ b/pkg/lint/rules/values.go @@ -22,8 +22,8 @@ import ( "github.com/pkg/errors" - "k8s.io/helm/pkg/chartutil" - "k8s.io/helm/pkg/lint/support" + "helm.sh/helm/pkg/chartutil" + "helm.sh/helm/pkg/lint/support" ) // Values lints a chart's values.yaml file. diff --git a/pkg/lint/support/doc.go b/pkg/lint/support/doc.go index ede608906..4d2ea80af 100644 --- a/pkg/lint/support/doc.go +++ b/pkg/lint/support/doc.go @@ -19,4 +19,4 @@ limitations under the License. Linting is the process of testing charts for errors or warnings regarding formatting, compilation, or standards compliance. */ -package support // import "k8s.io/helm/pkg/lint/support" +package support // import "helm.sh/helm/pkg/lint/support" diff --git a/pkg/plugin/cache/cache.go b/pkg/plugin/cache/cache.go index d846126f1..70a7cd20e 100644 --- a/pkg/plugin/cache/cache.go +++ b/pkg/plugin/cache/cache.go @@ -14,7 +14,7 @@ limitations under the License. */ // Package cache provides a key generator for vcs urls. -package cache // import "k8s.io/helm/pkg/plugin/cache" +package cache // import "helm.sh/helm/pkg/plugin/cache" import ( "net/url" diff --git a/pkg/plugin/hooks.go b/pkg/plugin/hooks.go index 82636fbbe..c2fc829dd 100644 --- a/pkg/plugin/hooks.go +++ b/pkg/plugin/hooks.go @@ -13,7 +13,7 @@ See the License for the specific language governing permissions and limitations under the License. */ -package plugin // import "k8s.io/helm/pkg/plugin" +package plugin // import "helm.sh/helm/pkg/plugin" // Types of hooks const ( diff --git a/pkg/plugin/installer/base.go b/pkg/plugin/installer/base.go index 61f3dfb63..e22c2e10e 100644 --- a/pkg/plugin/installer/base.go +++ b/pkg/plugin/installer/base.go @@ -13,13 +13,13 @@ See the License for the specific language governing permissions and limitations under the License. */ -package installer // import "k8s.io/helm/pkg/plugin/installer" +package installer // import "helm.sh/helm/pkg/plugin/installer" import ( "os" "path/filepath" - "k8s.io/helm/pkg/helmpath" + "helm.sh/helm/pkg/helmpath" ) type base struct { diff --git a/pkg/plugin/installer/doc.go b/pkg/plugin/installer/doc.go index 0089e33f8..e5f7c1e45 100644 --- a/pkg/plugin/installer/doc.go +++ b/pkg/plugin/installer/doc.go @@ -14,4 +14,4 @@ limitations under the License. */ // Package installer provides an interface for installing Helm plugins. -package installer // import "k8s.io/helm/pkg/plugin/installer" +package installer // import "helm.sh/helm/pkg/plugin/installer" diff --git a/pkg/plugin/installer/http_installer.go b/pkg/plugin/installer/http_installer.go index c1348a63e..e3789bb37 100644 --- a/pkg/plugin/installer/http_installer.go +++ b/pkg/plugin/installer/http_installer.go @@ -13,7 +13,7 @@ See the License for the specific language governing permissions and limitations under the License. */ -package installer // import "k8s.io/helm/pkg/plugin/installer" +package installer // import "helm.sh/helm/pkg/plugin/installer" import ( "archive/tar" @@ -27,10 +27,10 @@ import ( "github.com/pkg/errors" - "k8s.io/helm/pkg/cli" - "k8s.io/helm/pkg/getter" - "k8s.io/helm/pkg/helmpath" - "k8s.io/helm/pkg/plugin/cache" + "helm.sh/helm/pkg/cli" + "helm.sh/helm/pkg/getter" + "helm.sh/helm/pkg/helmpath" + "helm.sh/helm/pkg/plugin/cache" ) // HTTPInstaller installs plugins from an archive served by a web server. diff --git a/pkg/plugin/installer/http_installer_test.go b/pkg/plugin/installer/http_installer_test.go index dee9c3a4d..04c6ef5e9 100644 --- a/pkg/plugin/installer/http_installer_test.go +++ b/pkg/plugin/installer/http_installer_test.go @@ -13,7 +13,7 @@ See the License for the specific language governing permissions and limitations under the License. */ -package installer // import "k8s.io/helm/pkg/plugin/installer" +package installer // import "helm.sh/helm/pkg/plugin/installer" import ( "bytes" @@ -24,7 +24,7 @@ import ( "github.com/pkg/errors" - "k8s.io/helm/pkg/helmpath" + "helm.sh/helm/pkg/helmpath" ) var _ Installer = new(HTTPInstaller) diff --git a/pkg/plugin/installer/installer.go b/pkg/plugin/installer/installer.go index b94629072..bd5fbc814 100644 --- a/pkg/plugin/installer/installer.go +++ b/pkg/plugin/installer/installer.go @@ -24,7 +24,7 @@ import ( "github.com/pkg/errors" - "k8s.io/helm/pkg/helmpath" + "helm.sh/helm/pkg/helmpath" ) // ErrMissingMetadata indicates that plugin.yaml is missing. diff --git a/pkg/plugin/installer/local_installer.go b/pkg/plugin/installer/local_installer.go index 056a311ce..18ed827e8 100644 --- a/pkg/plugin/installer/local_installer.go +++ b/pkg/plugin/installer/local_installer.go @@ -13,14 +13,14 @@ See the License for the specific language governing permissions and limitations under the License. */ -package installer // import "k8s.io/helm/pkg/plugin/installer" +package installer // import "helm.sh/helm/pkg/plugin/installer" import ( "path/filepath" "github.com/pkg/errors" - "k8s.io/helm/pkg/helmpath" + "helm.sh/helm/pkg/helmpath" ) // LocalInstaller installs plugins from the filesystem. diff --git a/pkg/plugin/installer/local_installer_test.go b/pkg/plugin/installer/local_installer_test.go index 288162079..9d8627d7c 100644 --- a/pkg/plugin/installer/local_installer_test.go +++ b/pkg/plugin/installer/local_installer_test.go @@ -13,7 +13,7 @@ See the License for the specific language governing permissions and limitations under the License. */ -package installer // import "k8s.io/helm/pkg/plugin/installer" +package installer // import "helm.sh/helm/pkg/plugin/installer" import ( "io/ioutil" @@ -21,7 +21,7 @@ import ( "path/filepath" "testing" - "k8s.io/helm/pkg/helmpath" + "helm.sh/helm/pkg/helmpath" ) var _ Installer = new(LocalInstaller) diff --git a/pkg/plugin/installer/vcs_installer.go b/pkg/plugin/installer/vcs_installer.go index 428ed4263..8ff8d8bdf 100644 --- a/pkg/plugin/installer/vcs_installer.go +++ b/pkg/plugin/installer/vcs_installer.go @@ -13,7 +13,7 @@ See the License for the specific language governing permissions and limitations under the License. */ -package installer // import "k8s.io/helm/pkg/plugin/installer" +package installer // import "helm.sh/helm/pkg/plugin/installer" import ( "os" @@ -23,8 +23,8 @@ import ( "github.com/Masterminds/vcs" "github.com/pkg/errors" - "k8s.io/helm/pkg/helmpath" - "k8s.io/helm/pkg/plugin/cache" + "helm.sh/helm/pkg/helmpath" + "helm.sh/helm/pkg/plugin/cache" ) // VCSInstaller installs plugins from remote a repository. diff --git a/pkg/plugin/installer/vcs_installer_test.go b/pkg/plugin/installer/vcs_installer_test.go index 33b36060c..c7184c417 100644 --- a/pkg/plugin/installer/vcs_installer_test.go +++ b/pkg/plugin/installer/vcs_installer_test.go @@ -13,7 +13,7 @@ See the License for the specific language governing permissions and limitations under the License. */ -package installer // import "k8s.io/helm/pkg/plugin/installer" +package installer // import "helm.sh/helm/pkg/plugin/installer" import ( "fmt" @@ -24,7 +24,7 @@ import ( "github.com/Masterminds/vcs" - "k8s.io/helm/pkg/helmpath" + "helm.sh/helm/pkg/helmpath" ) var _ Installer = new(VCSInstaller) diff --git a/pkg/plugin/plugin.go b/pkg/plugin/plugin.go index 4f91ba26c..7b06f47c8 100644 --- a/pkg/plugin/plugin.go +++ b/pkg/plugin/plugin.go @@ -13,7 +13,7 @@ See the License for the specific language governing permissions and limitations under the License. */ -package plugin // import "k8s.io/helm/pkg/plugin" +package plugin // import "helm.sh/helm/pkg/plugin" import ( "fmt" @@ -25,7 +25,7 @@ import ( "github.com/ghodss/yaml" - helm_env "k8s.io/helm/pkg/cli" + helm_env "helm.sh/helm/pkg/cli" ) const pluginFileName = "plugin.yaml" diff --git a/pkg/plugin/plugin_test.go b/pkg/plugin/plugin_test.go index de707c281..be6553489 100644 --- a/pkg/plugin/plugin_test.go +++ b/pkg/plugin/plugin_test.go @@ -13,7 +13,7 @@ See the License for the specific language governing permissions and limitations under the License. */ -package plugin // import "k8s.io/helm/pkg/plugin" +package plugin // import "helm.sh/helm/pkg/plugin" import ( "reflect" diff --git a/pkg/provenance/doc.go b/pkg/provenance/doc.go index bee484944..2a09c404e 100644 --- a/pkg/provenance/doc.go +++ b/pkg/provenance/doc.go @@ -34,4 +34,4 @@ and using `gpg --verify`, `keybase pgp verify`, or similar: gpg: Signature made Mon Jul 25 17:23:44 2016 MDT using RSA key ID 1FC18762 gpg: Good signature from "Helm Testing (This key should only be used for testing. DO NOT TRUST.) " [ultimate] */ -package provenance // import "k8s.io/helm/pkg/provenance" +package provenance // import "helm.sh/helm/pkg/provenance" diff --git a/pkg/provenance/sign.go b/pkg/provenance/sign.go index 23dcf2bcf..7735a5520 100644 --- a/pkg/provenance/sign.go +++ b/pkg/provenance/sign.go @@ -31,8 +31,8 @@ import ( "golang.org/x/crypto/openpgp/clearsign" "golang.org/x/crypto/openpgp/packet" - hapi "k8s.io/helm/pkg/chart" - "k8s.io/helm/pkg/chart/loader" + hapi "helm.sh/helm/pkg/chart" + "helm.sh/helm/pkg/chart/loader" ) var defaultPGPConfig = packet.Config{ diff --git a/pkg/registry/cache.go b/pkg/registry/cache.go index 3b0e4f866..34a2c6024 100644 --- a/pkg/registry/cache.go +++ b/pkg/registry/cache.go @@ -14,7 +14,7 @@ See the License for the specific language governing permissions and limitations under the License. */ -package registry // import "k8s.io/helm/pkg/registry" +package registry // import "helm.sh/helm/pkg/registry" import ( "bytes" @@ -34,9 +34,9 @@ import ( ocispec "github.com/opencontainers/image-spec/specs-go/v1" "github.com/pkg/errors" - "k8s.io/helm/pkg/chart" - "k8s.io/helm/pkg/chart/loader" - "k8s.io/helm/pkg/chartutil" + "helm.sh/helm/pkg/chart" + "helm.sh/helm/pkg/chart/loader" + "helm.sh/helm/pkg/chartutil" ) var ( diff --git a/pkg/registry/client.go b/pkg/registry/client.go index 9c0bdf42f..a2244f816 100644 --- a/pkg/registry/client.go +++ b/pkg/registry/client.go @@ -14,7 +14,7 @@ See the License for the specific language governing permissions and limitations under the License. */ -package registry // import "k8s.io/helm/pkg/registry" +package registry // import "helm.sh/helm/pkg/registry" import ( "context" @@ -25,7 +25,7 @@ import ( "github.com/deislabs/oras/pkg/oras" "github.com/gosuri/uitable" - "k8s.io/helm/pkg/chart" + "helm.sh/helm/pkg/chart" ) type ( diff --git a/pkg/registry/client_test.go b/pkg/registry/client_test.go index 876368c5b..aa3770ac1 100644 --- a/pkg/registry/client_test.go +++ b/pkg/registry/client_test.go @@ -32,7 +32,7 @@ import ( _ "github.com/docker/distribution/registry/storage/driver/inmemory" "github.com/stretchr/testify/suite" - "k8s.io/helm/pkg/chart" + "helm.sh/helm/pkg/chart" ) var ( diff --git a/pkg/registry/constants.go b/pkg/registry/constants.go index a973a5ee3..2883815e7 100644 --- a/pkg/registry/constants.go +++ b/pkg/registry/constants.go @@ -14,7 +14,7 @@ See the License for the specific language governing permissions and limitations under the License. */ -package registry // import "k8s.io/helm/pkg/registry" +package registry // import "helm.sh/helm/pkg/registry" const ( // HelmChartDefaultTag is the default tag used when storing a chart reference with no tag diff --git a/pkg/registry/reference.go b/pkg/registry/reference.go index b62790368..7a136205f 100644 --- a/pkg/registry/reference.go +++ b/pkg/registry/reference.go @@ -14,7 +14,7 @@ See the License for the specific language governing permissions and limitations under the License. */ -package registry // import "k8s.io/helm/pkg/registry" +package registry // import "helm.sh/helm/pkg/registry" import ( "errors" diff --git a/pkg/registry/resolver.go b/pkg/registry/resolver.go index afecd454d..fce303c73 100644 --- a/pkg/registry/resolver.go +++ b/pkg/registry/resolver.go @@ -14,7 +14,7 @@ See the License for the specific language governing permissions and limitations under the License. */ -package registry // import "k8s.io/helm/pkg/registry" +package registry // import "helm.sh/helm/pkg/registry" import ( "github.com/containerd/containerd/remotes" diff --git a/pkg/release/mock.go b/pkg/release/mock.go index 0b5e8df35..0a3656a3b 100644 --- a/pkg/release/mock.go +++ b/pkg/release/mock.go @@ -20,7 +20,7 @@ import ( "math/rand" "time" - "k8s.io/helm/pkg/chart" + "helm.sh/helm/pkg/chart" ) // MockHookTemplate is the hook template used for all mock release objects. diff --git a/pkg/release/release.go b/pkg/release/release.go index 4f006bef9..9aeb66a32 100644 --- a/pkg/release/release.go +++ b/pkg/release/release.go @@ -15,7 +15,7 @@ limitations under the License. package release -import "k8s.io/helm/pkg/chart" +import "helm.sh/helm/pkg/chart" // Release describes a deployment of a chart, together with the chart // and the variables used to deploy that chart. diff --git a/pkg/releasetesting/environment.go b/pkg/releasetesting/environment.go index 2da6105a1..aa3517fb3 100644 --- a/pkg/releasetesting/environment.go +++ b/pkg/releasetesting/environment.go @@ -24,8 +24,8 @@ import ( v1 "k8s.io/api/core/v1" - "k8s.io/helm/pkg/kube" - "k8s.io/helm/pkg/release" + "helm.sh/helm/pkg/kube" + "helm.sh/helm/pkg/release" ) // Environment encapsulates information about where test suite executes and returns results diff --git a/pkg/releasetesting/environment_test.go b/pkg/releasetesting/environment_test.go index 14b9ba5ec..fbff19d3b 100644 --- a/pkg/releasetesting/environment_test.go +++ b/pkg/releasetesting/environment_test.go @@ -21,7 +21,7 @@ import ( "github.com/pkg/errors" - "k8s.io/helm/pkg/release" + "helm.sh/helm/pkg/release" ) func TestCreateTestPodSuccess(t *testing.T) { diff --git a/pkg/releasetesting/test_suite.go b/pkg/releasetesting/test_suite.go index 96f4b1fb0..cbe50f78b 100644 --- a/pkg/releasetesting/test_suite.go +++ b/pkg/releasetesting/test_suite.go @@ -24,9 +24,9 @@ import ( "github.com/pkg/errors" v1 "k8s.io/api/core/v1" - "k8s.io/helm/pkg/hooks" - "k8s.io/helm/pkg/release" - util "k8s.io/helm/pkg/releaseutil" + "helm.sh/helm/pkg/hooks" + "helm.sh/helm/pkg/release" + util "helm.sh/helm/pkg/releaseutil" ) // TestSuite what tests are run, results, and metadata diff --git a/pkg/releasetesting/test_suite_test.go b/pkg/releasetesting/test_suite_test.go index 47e119591..21f3eabe6 100644 --- a/pkg/releasetesting/test_suite_test.go +++ b/pkg/releasetesting/test_suite_test.go @@ -23,8 +23,8 @@ import ( v1 "k8s.io/api/core/v1" - "k8s.io/helm/pkg/kube" - "k8s.io/helm/pkg/release" + "helm.sh/helm/pkg/kube" + "helm.sh/helm/pkg/release" ) const manifestWithTestSuccessHook = ` diff --git a/pkg/releaseutil/filter.go b/pkg/releaseutil/filter.go index 93ddbc46e..5bc1d810e 100644 --- a/pkg/releaseutil/filter.go +++ b/pkg/releaseutil/filter.go @@ -14,9 +14,9 @@ See the License for the specific language governing permissions and limitations under the License. */ -package releaseutil // import "k8s.io/helm/pkg/releaseutil" +package releaseutil // import "helm.sh/helm/pkg/releaseutil" -import rspb "k8s.io/helm/pkg/release" +import rspb "helm.sh/helm/pkg/release" // FilterFunc returns true if the release object satisfies // the predicate of the underlying filter func. diff --git a/pkg/releaseutil/filter_test.go b/pkg/releaseutil/filter_test.go index 0a1f8a024..a4f241d9a 100644 --- a/pkg/releaseutil/filter_test.go +++ b/pkg/releaseutil/filter_test.go @@ -14,12 +14,12 @@ See the License for the specific language governing permissions and limitations under the License. */ -package releaseutil // import "k8s.io/helm/pkg/releaseutil" +package releaseutil // import "helm.sh/helm/pkg/releaseutil" import ( "testing" - rspb "k8s.io/helm/pkg/release" + rspb "helm.sh/helm/pkg/release" ) func TestFilterAny(t *testing.T) { diff --git a/pkg/releaseutil/manifest_sorter.go b/pkg/releaseutil/manifest_sorter.go index dd27e484c..531023481 100644 --- a/pkg/releaseutil/manifest_sorter.go +++ b/pkg/releaseutil/manifest_sorter.go @@ -25,9 +25,9 @@ import ( "github.com/ghodss/yaml" "github.com/pkg/errors" - "k8s.io/helm/pkg/chartutil" - "k8s.io/helm/pkg/hooks" - "k8s.io/helm/pkg/release" + "helm.sh/helm/pkg/chartutil" + "helm.sh/helm/pkg/hooks" + "helm.sh/helm/pkg/release" ) // Manifest represents a manifest file, which has a name and some content. diff --git a/pkg/releaseutil/manifest_sorter_test.go b/pkg/releaseutil/manifest_sorter_test.go index c8e0a1f43..c76b80406 100644 --- a/pkg/releaseutil/manifest_sorter_test.go +++ b/pkg/releaseutil/manifest_sorter_test.go @@ -22,8 +22,8 @@ import ( "github.com/ghodss/yaml" - "k8s.io/helm/pkg/chartutil" - "k8s.io/helm/pkg/release" + "helm.sh/helm/pkg/chartutil" + "helm.sh/helm/pkg/release" ) func TestSortManifests(t *testing.T) { diff --git a/pkg/releaseutil/manifest_test.go b/pkg/releaseutil/manifest_test.go index b452c29c0..e8a8a7262 100644 --- a/pkg/releaseutil/manifest_test.go +++ b/pkg/releaseutil/manifest_test.go @@ -14,7 +14,7 @@ See the License for the specific language governing permissions and limitations under the License. */ -package releaseutil // import "k8s.io/helm/pkg/releaseutil" +package releaseutil // import "helm.sh/helm/pkg/releaseutil" import ( "reflect" diff --git a/pkg/releaseutil/sorter.go b/pkg/releaseutil/sorter.go index ed93ccbee..35506f268 100644 --- a/pkg/releaseutil/sorter.go +++ b/pkg/releaseutil/sorter.go @@ -14,12 +14,12 @@ See the License for the specific language governing permissions and limitations under the License. */ -package releaseutil // import "k8s.io/helm/pkg/releaseutil" +package releaseutil // import "helm.sh/helm/pkg/releaseutil" import ( "sort" - rspb "k8s.io/helm/pkg/release" + rspb "helm.sh/helm/pkg/release" ) type list []*rspb.Release diff --git a/pkg/releaseutil/sorter_test.go b/pkg/releaseutil/sorter_test.go index 1da83c5ac..f7225d6d3 100644 --- a/pkg/releaseutil/sorter_test.go +++ b/pkg/releaseutil/sorter_test.go @@ -14,13 +14,13 @@ See the License for the specific language governing permissions and limitations under the License. */ -package releaseutil // import "k8s.io/helm/pkg/releaseutil" +package releaseutil // import "helm.sh/helm/pkg/releaseutil" import ( "testing" "time" - rspb "k8s.io/helm/pkg/release" + rspb "helm.sh/helm/pkg/release" ) // note: this test data is shared with filter_test.go. diff --git a/pkg/repo/chartrepo.go b/pkg/repo/chartrepo.go index a2ec3f819..9dab8be94 100644 --- a/pkg/repo/chartrepo.go +++ b/pkg/repo/chartrepo.go @@ -14,7 +14,7 @@ See the License for the specific language governing permissions and limitations under the License. */ -package repo // import "k8s.io/helm/pkg/repo" +package repo // import "helm.sh/helm/pkg/repo" import ( "fmt" @@ -27,9 +27,9 @@ import ( "github.com/ghodss/yaml" "github.com/pkg/errors" - "k8s.io/helm/pkg/chart/loader" - "k8s.io/helm/pkg/getter" - "k8s.io/helm/pkg/provenance" + "helm.sh/helm/pkg/chart/loader" + "helm.sh/helm/pkg/getter" + "helm.sh/helm/pkg/provenance" ) // Entry represents a collection of parameters for chart repository diff --git a/pkg/repo/chartrepo_test.go b/pkg/repo/chartrepo_test.go index afbc31fd1..8e2071b01 100644 --- a/pkg/repo/chartrepo_test.go +++ b/pkg/repo/chartrepo_test.go @@ -27,9 +27,9 @@ import ( "testing" "time" - "k8s.io/helm/pkg/chart" - "k8s.io/helm/pkg/cli" - "k8s.io/helm/pkg/getter" + "helm.sh/helm/pkg/chart" + "helm.sh/helm/pkg/cli" + "helm.sh/helm/pkg/getter" ) const ( diff --git a/pkg/repo/index.go b/pkg/repo/index.go index b49314f53..4a1e71c8e 100644 --- a/pkg/repo/index.go +++ b/pkg/repo/index.go @@ -31,10 +31,10 @@ import ( "github.com/ghodss/yaml" "github.com/pkg/errors" - "k8s.io/helm/pkg/chart" - "k8s.io/helm/pkg/chart/loader" - "k8s.io/helm/pkg/provenance" - "k8s.io/helm/pkg/urlutil" + "helm.sh/helm/pkg/chart" + "helm.sh/helm/pkg/chart/loader" + "helm.sh/helm/pkg/provenance" + "helm.sh/helm/pkg/urlutil" ) var indexPath = "index.yaml" diff --git a/pkg/repo/index_test.go b/pkg/repo/index_test.go index 81fb973b6..329b80b29 100644 --- a/pkg/repo/index_test.go +++ b/pkg/repo/index_test.go @@ -22,9 +22,9 @@ import ( "path/filepath" "testing" - "k8s.io/helm/pkg/chart" - "k8s.io/helm/pkg/cli" - "k8s.io/helm/pkg/getter" + "helm.sh/helm/pkg/chart" + "helm.sh/helm/pkg/cli" + "helm.sh/helm/pkg/getter" ) const ( diff --git a/pkg/repo/repo.go b/pkg/repo/repo.go index 779ead20c..8bfe0115b 100644 --- a/pkg/repo/repo.go +++ b/pkg/repo/repo.go @@ -14,7 +14,7 @@ See the License for the specific language governing permissions and limitations under the License. */ -package repo // import "k8s.io/helm/pkg/repo" +package repo // import "helm.sh/helm/pkg/repo" import ( "fmt" diff --git a/pkg/repo/repotest/server.go b/pkg/repo/repotest/server.go index 790b9732b..72688e63c 100644 --- a/pkg/repo/repotest/server.go +++ b/pkg/repo/repotest/server.go @@ -24,8 +24,8 @@ import ( "github.com/ghodss/yaml" - "k8s.io/helm/pkg/helmpath" - "k8s.io/helm/pkg/repo" + "helm.sh/helm/pkg/helmpath" + "helm.sh/helm/pkg/repo" ) // NewTempServer creates a server inside of a temp dir. diff --git a/pkg/repo/repotest/server_test.go b/pkg/repo/repotest/server_test.go index e4819fbf7..0fc33e252 100644 --- a/pkg/repo/repotest/server_test.go +++ b/pkg/repo/repotest/server_test.go @@ -24,7 +24,7 @@ import ( "github.com/ghodss/yaml" - "k8s.io/helm/pkg/repo" + "helm.sh/helm/pkg/repo" ) // Young'n, in these here parts, we test our tests. diff --git a/pkg/resolver/resolver.go b/pkg/resolver/resolver.go index 74cdab624..1242be8b8 100644 --- a/pkg/resolver/resolver.go +++ b/pkg/resolver/resolver.go @@ -26,10 +26,10 @@ import ( "github.com/Masterminds/semver" "github.com/pkg/errors" - "k8s.io/helm/pkg/chart" - "k8s.io/helm/pkg/helmpath" - "k8s.io/helm/pkg/provenance" - "k8s.io/helm/pkg/repo" + "helm.sh/helm/pkg/chart" + "helm.sh/helm/pkg/helmpath" + "helm.sh/helm/pkg/provenance" + "helm.sh/helm/pkg/repo" ) // Resolver resolves dependencies from semantic version ranges to a particular version. diff --git a/pkg/resolver/resolver_test.go b/pkg/resolver/resolver_test.go index 7ec0cd387..c52088fc8 100644 --- a/pkg/resolver/resolver_test.go +++ b/pkg/resolver/resolver_test.go @@ -18,7 +18,7 @@ package resolver import ( "testing" - "k8s.io/helm/pkg/chart" + "helm.sh/helm/pkg/chart" ) func TestResolve(t *testing.T) { diff --git a/pkg/resolver/testdata/helmhome/repository/cache/kubernetes-charts-index.yaml b/pkg/resolver/testdata/helmhome/repository/cache/kubernetes-charts-index.yaml index a1a9f8ab2..98370fc3e 100644 --- a/pkg/resolver/testdata/helmhome/repository/cache/kubernetes-charts-index.yaml +++ b/pkg/resolver/testdata/helmhome/repository/cache/kubernetes-charts-index.yaml @@ -5,7 +5,7 @@ entries: urls: - https://kubernetes-charts.storage.googleapis.com/alpine-0.1.0.tgz checksum: 0e6661f193211d7a5206918d42f5c2a9470b737d - home: https://k8s.io/helm + home: https://helm.sh/helm sources: - https://github.com/helm/helm version: 0.2.0 @@ -17,7 +17,7 @@ entries: urls: - https://kubernetes-charts.storage.googleapis.com/alpine-0.2.0.tgz checksum: 0e6661f193211d7a5206918d42f5c2a9470b737d - home: https://k8s.io/helm + home: https://helm.sh/helm sources: - https://github.com/helm/helm version: 0.1.0 diff --git a/pkg/storage/driver/cfgmaps.go b/pkg/storage/driver/cfgmaps.go index c2efc3100..0888cd9f1 100644 --- a/pkg/storage/driver/cfgmaps.go +++ b/pkg/storage/driver/cfgmaps.go @@ -14,7 +14,7 @@ See the License for the specific language governing permissions and limitations under the License. */ -package driver // import "k8s.io/helm/pkg/storage/driver" +package driver // import "helm.sh/helm/pkg/storage/driver" import ( "strconv" @@ -29,7 +29,7 @@ import ( "k8s.io/apimachinery/pkg/util/validation" corev1 "k8s.io/client-go/kubernetes/typed/core/v1" - rspb "k8s.io/helm/pkg/release" + rspb "helm.sh/helm/pkg/release" ) var _ Driver = (*ConfigMaps)(nil) diff --git a/pkg/storage/driver/cfgmaps_test.go b/pkg/storage/driver/cfgmaps_test.go index c9239d645..961b68f3b 100644 --- a/pkg/storage/driver/cfgmaps_test.go +++ b/pkg/storage/driver/cfgmaps_test.go @@ -21,7 +21,7 @@ import ( v1 "k8s.io/api/core/v1" - rspb "k8s.io/helm/pkg/release" + rspb "helm.sh/helm/pkg/release" ) func TestConfigMapName(t *testing.T) { diff --git a/pkg/storage/driver/driver.go b/pkg/storage/driver/driver.go index efd78bc91..b562376d2 100644 --- a/pkg/storage/driver/driver.go +++ b/pkg/storage/driver/driver.go @@ -14,12 +14,12 @@ See the License for the specific language governing permissions and limitations under the License. */ -package driver // import "k8s.io/helm/pkg/storage/driver" +package driver // import "helm.sh/helm/pkg/storage/driver" import ( "github.com/pkg/errors" - rspb "k8s.io/helm/pkg/release" + rspb "helm.sh/helm/pkg/release" ) var ( diff --git a/pkg/storage/driver/labels_test.go b/pkg/storage/driver/labels_test.go index e8d7fc90c..fd17faef5 100644 --- a/pkg/storage/driver/labels_test.go +++ b/pkg/storage/driver/labels_test.go @@ -14,7 +14,7 @@ See the License for the specific language governing permissions and limitations under the License. */ -package driver // import "k8s.io/helm/pkg/storage/driver" +package driver // import "helm.sh/helm/pkg/storage/driver" import ( "testing" diff --git a/pkg/storage/driver/memory.go b/pkg/storage/driver/memory.go index 13ecf86f2..1fd059655 100644 --- a/pkg/storage/driver/memory.go +++ b/pkg/storage/driver/memory.go @@ -21,7 +21,7 @@ import ( "strings" "sync" - rspb "k8s.io/helm/pkg/release" + rspb "helm.sh/helm/pkg/release" ) var _ Driver = (*Memory)(nil) diff --git a/pkg/storage/driver/memory_test.go b/pkg/storage/driver/memory_test.go index 884af3b9f..e05a196b0 100644 --- a/pkg/storage/driver/memory_test.go +++ b/pkg/storage/driver/memory_test.go @@ -21,7 +21,7 @@ import ( "reflect" "testing" - rspb "k8s.io/helm/pkg/release" + rspb "helm.sh/helm/pkg/release" ) func TestMemoryName(t *testing.T) { diff --git a/pkg/storage/driver/mock_test.go b/pkg/storage/driver/mock_test.go index 42dcb4c15..10eb6d3fe 100644 --- a/pkg/storage/driver/mock_test.go +++ b/pkg/storage/driver/mock_test.go @@ -14,7 +14,7 @@ See the License for the specific language governing permissions and limitations under the License. */ -package driver // import "k8s.io/helm/pkg/storage/driver" +package driver // import "helm.sh/helm/pkg/storage/driver" import ( "fmt" @@ -25,7 +25,7 @@ import ( metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" corev1 "k8s.io/client-go/kubernetes/typed/core/v1" - rspb "k8s.io/helm/pkg/release" + rspb "helm.sh/helm/pkg/release" ) func releaseStub(name string, vers int, namespace string, status rspb.Status) *rspb.Release { diff --git a/pkg/storage/driver/records.go b/pkg/storage/driver/records.go index e0368c9b1..ab2e84b46 100644 --- a/pkg/storage/driver/records.go +++ b/pkg/storage/driver/records.go @@ -14,13 +14,13 @@ See the License for the specific language governing permissions and limitations under the License. */ -package driver // import "k8s.io/helm/pkg/storage/driver" +package driver // import "helm.sh/helm/pkg/storage/driver" import ( "sort" "strconv" - rspb "k8s.io/helm/pkg/release" + rspb "helm.sh/helm/pkg/release" ) // records holds a list of in-memory release records diff --git a/pkg/storage/driver/records_test.go b/pkg/storage/driver/records_test.go index e87286f34..bb325ef68 100644 --- a/pkg/storage/driver/records_test.go +++ b/pkg/storage/driver/records_test.go @@ -14,12 +14,12 @@ See the License for the specific language governing permissions and limitations under the License. */ -package driver // import "k8s.io/helm/pkg/storage/driver" +package driver // import "helm.sh/helm/pkg/storage/driver" import ( "testing" - rspb "k8s.io/helm/pkg/release" + rspb "helm.sh/helm/pkg/release" ) func TestRecordsAdd(t *testing.T) { diff --git a/pkg/storage/driver/secrets.go b/pkg/storage/driver/secrets.go index b42bc9a0a..65c995dbe 100644 --- a/pkg/storage/driver/secrets.go +++ b/pkg/storage/driver/secrets.go @@ -14,7 +14,7 @@ See the License for the specific language governing permissions and limitations under the License. */ -package driver // import "k8s.io/helm/pkg/storage/driver" +package driver // import "helm.sh/helm/pkg/storage/driver" import ( "strconv" @@ -29,7 +29,7 @@ import ( "k8s.io/apimachinery/pkg/util/validation" corev1 "k8s.io/client-go/kubernetes/typed/core/v1" - rspb "k8s.io/helm/pkg/release" + rspb "helm.sh/helm/pkg/release" ) var _ Driver = (*Secrets)(nil) diff --git a/pkg/storage/driver/secrets_test.go b/pkg/storage/driver/secrets_test.go index 8d9fc6b00..fdcd40d1f 100644 --- a/pkg/storage/driver/secrets_test.go +++ b/pkg/storage/driver/secrets_test.go @@ -21,7 +21,7 @@ import ( v1 "k8s.io/api/core/v1" - rspb "k8s.io/helm/pkg/release" + rspb "helm.sh/helm/pkg/release" ) func TestSecretName(t *testing.T) { diff --git a/pkg/storage/driver/util.go b/pkg/storage/driver/util.go index f0a231d13..5846c60f2 100644 --- a/pkg/storage/driver/util.go +++ b/pkg/storage/driver/util.go @@ -14,7 +14,7 @@ See the License for the specific language governing permissions and limitations under the License. */ -package driver // import "k8s.io/helm/pkg/storage/driver" +package driver // import "helm.sh/helm/pkg/storage/driver" import ( "bytes" @@ -23,7 +23,7 @@ import ( "encoding/json" "io/ioutil" - rspb "k8s.io/helm/pkg/release" + rspb "helm.sh/helm/pkg/release" ) var b64 = base64.StdEncoding diff --git a/pkg/storage/storage.go b/pkg/storage/storage.go index f1f06843c..dea0ea8b4 100644 --- a/pkg/storage/storage.go +++ b/pkg/storage/storage.go @@ -14,7 +14,7 @@ See the License for the specific language governing permissions and limitations under the License. */ -package storage // import "k8s.io/helm/pkg/storage" +package storage // import "helm.sh/helm/pkg/storage" import ( "fmt" @@ -22,9 +22,9 @@ import ( "github.com/pkg/errors" - rspb "k8s.io/helm/pkg/release" - relutil "k8s.io/helm/pkg/releaseutil" - "k8s.io/helm/pkg/storage/driver" + rspb "helm.sh/helm/pkg/release" + relutil "helm.sh/helm/pkg/releaseutil" + "helm.sh/helm/pkg/storage/driver" ) // Storage represents a storage engine for a Release. diff --git a/pkg/storage/storage_test.go b/pkg/storage/storage_test.go index f345b67ca..25572ae96 100644 --- a/pkg/storage/storage_test.go +++ b/pkg/storage/storage_test.go @@ -14,15 +14,15 @@ See the License for the specific language governing permissions and limitations under the License. */ -package storage // import "k8s.io/helm/pkg/storage" +package storage // import "helm.sh/helm/pkg/storage" import ( "fmt" "reflect" "testing" - rspb "k8s.io/helm/pkg/release" - "k8s.io/helm/pkg/storage/driver" + rspb "helm.sh/helm/pkg/release" + "helm.sh/helm/pkg/storage/driver" ) func TestStorageCreate(t *testing.T) { diff --git a/pkg/version/compatible.go b/pkg/version/compatible.go index d0516a9d0..13badeade 100644 --- a/pkg/version/compatible.go +++ b/pkg/version/compatible.go @@ -14,7 +14,7 @@ See the License for the specific language governing permissions and limitations under the License. */ -package version // import "k8s.io/helm/pkg/version" +package version // import "helm.sh/helm/pkg/version" import ( "fmt" diff --git a/pkg/version/compatible_test.go b/pkg/version/compatible_test.go index 7a3b23a7d..e68e6f1c3 100644 --- a/pkg/version/compatible_test.go +++ b/pkg/version/compatible_test.go @@ -15,7 +15,7 @@ limitations under the License. */ // Package version represents the current version of the project. -package version // import "k8s.io/helm/pkg/version" +package version // import "helm.sh/helm/pkg/version" import "testing" diff --git a/pkg/version/doc.go b/pkg/version/doc.go index 3b61dd50e..4aca960d1 100644 --- a/pkg/version/doc.go +++ b/pkg/version/doc.go @@ -15,4 +15,4 @@ limitations under the License. */ // Package version represents the current version of the project. -package version // import "k8s.io/helm/pkg/version" +package version // import "helm.sh/helm/pkg/version" diff --git a/pkg/version/version.go b/pkg/version/version.go index fba8b86fd..6d0a39f9a 100644 --- a/pkg/version/version.go +++ b/pkg/version/version.go @@ -14,7 +14,7 @@ See the License for the specific language governing permissions and limitations under the License. */ -package version // import "k8s.io/helm/pkg/version" +package version // import "helm.sh/helm/pkg/version" // BuildInfo describes the compile time information. type BuildInfo struct {