diff --git a/cmd/helm/create.go b/cmd/helm/create.go index c91dbeff7..ffaa67d2c 100644 --- a/cmd/helm/create.go +++ b/cmd/helm/create.go @@ -25,7 +25,7 @@ import ( "github.com/spf13/cobra" "k8s.io/helm/pkg/chartutil" - "k8s.io/helm/pkg/helmpath" + "k8s.io/helm/pkg/helm/helmpath" "k8s.io/helm/pkg/proto/hapi/chart" ) diff --git a/cmd/helm/dependency_build.go b/cmd/helm/dependency_build.go index 0a1a3c271..8e8c73062 100644 --- a/cmd/helm/dependency_build.go +++ b/cmd/helm/dependency_build.go @@ -21,7 +21,7 @@ import ( "github.com/spf13/cobra" "k8s.io/helm/pkg/downloader" - "k8s.io/helm/pkg/helmpath" + "k8s.io/helm/pkg/helm/helmpath" ) const dependencyBuildDesc = ` diff --git a/cmd/helm/dependency_build_test.go b/cmd/helm/dependency_build_test.go index 1c79c3b00..4dc170b9e 100644 --- a/cmd/helm/dependency_build_test.go +++ b/cmd/helm/dependency_build_test.go @@ -22,7 +22,7 @@ import ( "strings" "testing" - "k8s.io/helm/pkg/helmpath" + "k8s.io/helm/pkg/helm/helmpath" "k8s.io/helm/pkg/provenance" "k8s.io/helm/pkg/repo" "k8s.io/helm/pkg/repo/repotest" diff --git a/cmd/helm/dependency_update.go b/cmd/helm/dependency_update.go index ccc3aefaf..e361ae1c6 100644 --- a/cmd/helm/dependency_update.go +++ b/cmd/helm/dependency_update.go @@ -21,7 +21,7 @@ import ( "github.com/spf13/cobra" "k8s.io/helm/pkg/downloader" - "k8s.io/helm/pkg/helmpath" + "k8s.io/helm/pkg/helm/helmpath" ) const dependencyUpDesc = ` diff --git a/cmd/helm/dependency_update_test.go b/cmd/helm/dependency_update_test.go index 327f9c13b..c3b638a3f 100644 --- a/cmd/helm/dependency_update_test.go +++ b/cmd/helm/dependency_update_test.go @@ -26,7 +26,7 @@ import ( "github.com/ghodss/yaml" "k8s.io/helm/pkg/chartutil" - "k8s.io/helm/pkg/helmpath" + "k8s.io/helm/pkg/helm/helmpath" "k8s.io/helm/pkg/proto/hapi/chart" "k8s.io/helm/pkg/provenance" "k8s.io/helm/pkg/repo" diff --git a/cmd/helm/fetch.go b/cmd/helm/fetch.go index fe5c3012d..b7e5d060c 100644 --- a/cmd/helm/fetch.go +++ b/cmd/helm/fetch.go @@ -26,7 +26,7 @@ import ( "github.com/spf13/cobra" "k8s.io/helm/pkg/chartutil" "k8s.io/helm/pkg/downloader" - "k8s.io/helm/pkg/helmpath" + "k8s.io/helm/pkg/helm/helmpath" ) const fetchDesc = ` diff --git a/cmd/helm/helm.go b/cmd/helm/helm.go index ae577b663..64200adaf 100644 --- a/cmd/helm/helm.go +++ b/cmd/helm/helm.go @@ -32,8 +32,8 @@ import ( "k8s.io/kubernetes/pkg/client/clientset_generated/internalclientset" "k8s.io/kubernetes/pkg/client/restclient" + "k8s.io/helm/pkg/helm/helmpath" "k8s.io/helm/pkg/helm/portforwarder" - "k8s.io/helm/pkg/helmpath" "k8s.io/helm/pkg/kube" "k8s.io/helm/pkg/tiller/environment" ) diff --git a/cmd/helm/helm_test.go b/cmd/helm/helm_test.go index a681c25f1..efc4fce39 100644 --- a/cmd/helm/helm_test.go +++ b/cmd/helm/helm_test.go @@ -30,7 +30,7 @@ import ( "github.com/spf13/cobra" "k8s.io/helm/pkg/helm" - "k8s.io/helm/pkg/helmpath" + "k8s.io/helm/pkg/helm/helmpath" "k8s.io/helm/pkg/proto/hapi/chart" "k8s.io/helm/pkg/proto/hapi/release" rls "k8s.io/helm/pkg/proto/hapi/services" diff --git a/cmd/helm/home.go b/cmd/helm/home.go index 9f402c917..59e5538df 100644 --- a/cmd/helm/home.go +++ b/cmd/helm/home.go @@ -21,7 +21,7 @@ import ( "io" "github.com/spf13/cobra" - "k8s.io/helm/pkg/helmpath" + "k8s.io/helm/pkg/helm/helmpath" ) var longHomeHelp = ` diff --git a/cmd/helm/init.go b/cmd/helm/init.go index 33e4eb0cc..03edfe9d0 100644 --- a/cmd/helm/init.go +++ b/cmd/helm/init.go @@ -27,7 +27,7 @@ import ( "k8s.io/kubernetes/pkg/client/clientset_generated/internalclientset" "k8s.io/helm/cmd/helm/installer" - "k8s.io/helm/pkg/helmpath" + "k8s.io/helm/pkg/helm/helmpath" "k8s.io/helm/pkg/repo" ) diff --git a/cmd/helm/init_test.go b/cmd/helm/init_test.go index 07d2471d8..00c754cfa 100644 --- a/cmd/helm/init_test.go +++ b/cmd/helm/init_test.go @@ -32,7 +32,7 @@ import ( testcore "k8s.io/kubernetes/pkg/client/testing/core" "k8s.io/kubernetes/pkg/runtime" - "k8s.io/helm/pkg/helmpath" + "k8s.io/helm/pkg/helm/helmpath" ) func TestInitCmd(t *testing.T) { diff --git a/cmd/helm/install.go b/cmd/helm/install.go index c1ce3a5ef..b475c7963 100644 --- a/cmd/helm/install.go +++ b/cmd/helm/install.go @@ -36,7 +36,7 @@ import ( "k8s.io/helm/pkg/chartutil" "k8s.io/helm/pkg/downloader" "k8s.io/helm/pkg/helm" - "k8s.io/helm/pkg/helmpath" + "k8s.io/helm/pkg/helm/helmpath" "k8s.io/helm/pkg/kube" "k8s.io/helm/pkg/proto/hapi/chart" "k8s.io/helm/pkg/proto/hapi/release" diff --git a/cmd/helm/package.go b/cmd/helm/package.go index 43ca98c9d..ac8ff9d8e 100644 --- a/cmd/helm/package.go +++ b/cmd/helm/package.go @@ -30,7 +30,7 @@ import ( "golang.org/x/crypto/ssh/terminal" "k8s.io/helm/pkg/chartutil" - "k8s.io/helm/pkg/helmpath" + "k8s.io/helm/pkg/helm/helmpath" "k8s.io/helm/pkg/proto/hapi/chart" "k8s.io/helm/pkg/provenance" "k8s.io/helm/pkg/repo" diff --git a/cmd/helm/package_test.go b/cmd/helm/package_test.go index 0ce7e97e4..a9dc021a3 100644 --- a/cmd/helm/package_test.go +++ b/cmd/helm/package_test.go @@ -25,7 +25,7 @@ import ( "github.com/spf13/cobra" - "k8s.io/helm/pkg/helmpath" + "k8s.io/helm/pkg/helm/helmpath" "k8s.io/helm/pkg/proto/hapi/chart" ) diff --git a/cmd/helm/plugins.go b/cmd/helm/plugins.go index 4525d9b94..ba1df5565 100644 --- a/cmd/helm/plugins.go +++ b/cmd/helm/plugins.go @@ -25,7 +25,7 @@ import ( "github.com/spf13/cobra" - "k8s.io/helm/pkg/helmpath" + "k8s.io/helm/pkg/helm/helmpath" "k8s.io/helm/pkg/plugin" ) diff --git a/cmd/helm/plugins_test.go b/cmd/helm/plugins_test.go index f4c27651d..d1cb868ba 100644 --- a/cmd/helm/plugins_test.go +++ b/cmd/helm/plugins_test.go @@ -23,7 +23,7 @@ import ( "strings" "testing" - "k8s.io/helm/pkg/helmpath" + "k8s.io/helm/pkg/helm/helmpath" "github.com/spf13/cobra" ) diff --git a/cmd/helm/repo_add.go b/cmd/helm/repo_add.go index 9abaae96e..523ac5ad1 100644 --- a/cmd/helm/repo_add.go +++ b/cmd/helm/repo_add.go @@ -22,7 +22,7 @@ import ( "github.com/spf13/cobra" - "k8s.io/helm/pkg/helmpath" + "k8s.io/helm/pkg/helm/helmpath" "k8s.io/helm/pkg/repo" ) diff --git a/cmd/helm/repo_add_test.go b/cmd/helm/repo_add_test.go index 9eee738db..9ca4dc5d4 100644 --- a/cmd/helm/repo_add_test.go +++ b/cmd/helm/repo_add_test.go @@ -21,7 +21,7 @@ import ( "os" "testing" - "k8s.io/helm/pkg/helmpath" + "k8s.io/helm/pkg/helm/helmpath" "k8s.io/helm/pkg/repo" "k8s.io/helm/pkg/repo/repotest" ) diff --git a/cmd/helm/repo_list.go b/cmd/helm/repo_list.go index 8670124a0..b9567df8c 100644 --- a/cmd/helm/repo_list.go +++ b/cmd/helm/repo_list.go @@ -24,7 +24,7 @@ import ( "github.com/gosuri/uitable" "github.com/spf13/cobra" - "k8s.io/helm/pkg/helmpath" + "k8s.io/helm/pkg/helm/helmpath" "k8s.io/helm/pkg/repo" ) diff --git a/cmd/helm/repo_remove.go b/cmd/helm/repo_remove.go index 144427b58..5b82bdc0a 100644 --- a/cmd/helm/repo_remove.go +++ b/cmd/helm/repo_remove.go @@ -23,7 +23,7 @@ import ( "github.com/spf13/cobra" - "k8s.io/helm/pkg/helmpath" + "k8s.io/helm/pkg/helm/helmpath" "k8s.io/helm/pkg/repo" ) diff --git a/cmd/helm/repo_remove_test.go b/cmd/helm/repo_remove_test.go index 102691ea0..3fb20a821 100644 --- a/cmd/helm/repo_remove_test.go +++ b/cmd/helm/repo_remove_test.go @@ -22,7 +22,7 @@ import ( "strings" "testing" - "k8s.io/helm/pkg/helmpath" + "k8s.io/helm/pkg/helm/helmpath" "k8s.io/helm/pkg/repo" "k8s.io/helm/pkg/repo/repotest" ) diff --git a/cmd/helm/repo_update.go b/cmd/helm/repo_update.go index c1c86e01c..881a1b7ca 100644 --- a/cmd/helm/repo_update.go +++ b/cmd/helm/repo_update.go @@ -24,7 +24,7 @@ import ( "github.com/spf13/cobra" - "k8s.io/helm/pkg/helmpath" + "k8s.io/helm/pkg/helm/helmpath" "k8s.io/helm/pkg/repo" ) diff --git a/cmd/helm/repo_update_test.go b/cmd/helm/repo_update_test.go index 6b9e849d9..447a16a6f 100644 --- a/cmd/helm/repo_update_test.go +++ b/cmd/helm/repo_update_test.go @@ -23,7 +23,7 @@ import ( "strings" "testing" - "k8s.io/helm/pkg/helmpath" + "k8s.io/helm/pkg/helm/helmpath" "k8s.io/helm/pkg/repo" "k8s.io/helm/pkg/repo/repotest" ) diff --git a/cmd/helm/reset.go b/cmd/helm/reset.go index a3193d20b..e82666802 100644 --- a/cmd/helm/reset.go +++ b/cmd/helm/reset.go @@ -27,7 +27,7 @@ import ( "k8s.io/helm/cmd/helm/installer" "k8s.io/helm/pkg/helm" - "k8s.io/helm/pkg/helmpath" + "k8s.io/helm/pkg/helm/helmpath" "k8s.io/helm/pkg/kube" "k8s.io/helm/pkg/proto/hapi/release" ) diff --git a/cmd/helm/reset_test.go b/cmd/helm/reset_test.go index 1833216df..0dde84eab 100644 --- a/cmd/helm/reset_test.go +++ b/cmd/helm/reset_test.go @@ -26,7 +26,7 @@ import ( "k8s.io/kubernetes/pkg/api" "k8s.io/kubernetes/pkg/client/clientset_generated/internalclientset/fake" - "k8s.io/helm/pkg/helmpath" + "k8s.io/helm/pkg/helm/helmpath" "k8s.io/helm/pkg/proto/hapi/release" ) diff --git a/cmd/helm/search.go b/cmd/helm/search.go index 0fc11b2f0..d7fb2482f 100644 --- a/cmd/helm/search.go +++ b/cmd/helm/search.go @@ -25,7 +25,7 @@ import ( "github.com/spf13/cobra" "k8s.io/helm/cmd/helm/search" - "k8s.io/helm/pkg/helmpath" + "k8s.io/helm/pkg/helm/helmpath" "k8s.io/helm/pkg/repo" ) diff --git a/cmd/helm/serve.go b/cmd/helm/serve.go index e9ab7cc0c..4f78ed4b4 100644 --- a/cmd/helm/serve.go +++ b/cmd/helm/serve.go @@ -24,7 +24,7 @@ import ( "github.com/spf13/cobra" - "k8s.io/helm/pkg/helmpath" + "k8s.io/helm/pkg/helm/helmpath" "k8s.io/helm/pkg/repo" ) diff --git a/pkg/downloader/chart_downloader.go b/pkg/downloader/chart_downloader.go index c1b4cccdb..065df8b75 100644 --- a/pkg/downloader/chart_downloader.go +++ b/pkg/downloader/chart_downloader.go @@ -27,7 +27,7 @@ import ( "path/filepath" "strings" - "k8s.io/helm/pkg/helmpath" + "k8s.io/helm/pkg/helm/helmpath" "k8s.io/helm/pkg/provenance" "k8s.io/helm/pkg/repo" "k8s.io/helm/pkg/urlutil" diff --git a/pkg/downloader/chart_downloader_test.go b/pkg/downloader/chart_downloader_test.go index df563a763..9edcb98a3 100644 --- a/pkg/downloader/chart_downloader_test.go +++ b/pkg/downloader/chart_downloader_test.go @@ -25,7 +25,7 @@ import ( "path/filepath" "testing" - "k8s.io/helm/pkg/helmpath" + "k8s.io/helm/pkg/helm/helmpath" "k8s.io/helm/pkg/repo" "k8s.io/helm/pkg/repo/repotest" ) diff --git a/pkg/downloader/manager.go b/pkg/downloader/manager.go index 0abbc73d3..bf9b384fd 100644 --- a/pkg/downloader/manager.go +++ b/pkg/downloader/manager.go @@ -31,7 +31,7 @@ import ( "github.com/ghodss/yaml" "k8s.io/helm/pkg/chartutil" - "k8s.io/helm/pkg/helmpath" + "k8s.io/helm/pkg/helm/helmpath" "k8s.io/helm/pkg/proto/hapi/chart" "k8s.io/helm/pkg/repo" "k8s.io/helm/pkg/resolver" diff --git a/pkg/downloader/manager_test.go b/pkg/downloader/manager_test.go index 1c1ecd328..2035676c4 100644 --- a/pkg/downloader/manager_test.go +++ b/pkg/downloader/manager_test.go @@ -21,7 +21,7 @@ import ( "testing" "k8s.io/helm/pkg/chartutil" - "k8s.io/helm/pkg/helmpath" + "k8s.io/helm/pkg/helm/helmpath" ) func TestVersionEquals(t *testing.T) { diff --git a/pkg/helmpath/helmhome.go b/pkg/helm/helmpath/helmhome.go similarity index 100% rename from pkg/helmpath/helmhome.go rename to pkg/helm/helmpath/helmhome.go diff --git a/pkg/helmpath/helmhome_unix_test.go b/pkg/helm/helmpath/helmhome_unix_test.go similarity index 100% rename from pkg/helmpath/helmhome_unix_test.go rename to pkg/helm/helmpath/helmhome_unix_test.go diff --git a/pkg/helmpath/helmhome_windows_test.go b/pkg/helm/helmpath/helmhome_windows_test.go similarity index 100% rename from pkg/helmpath/helmhome_windows_test.go rename to pkg/helm/helmpath/helmhome_windows_test.go diff --git a/pkg/repo/repotest/server.go b/pkg/repo/repotest/server.go index b0d6ffb5a..1a0a270d7 100644 --- a/pkg/repo/repotest/server.go +++ b/pkg/repo/repotest/server.go @@ -24,7 +24,7 @@ import ( "github.com/ghodss/yaml" - "k8s.io/helm/pkg/helmpath" + "k8s.io/helm/pkg/helm/helmpath" "k8s.io/helm/pkg/repo" ) diff --git a/pkg/resolver/resolver.go b/pkg/resolver/resolver.go index f6d6291f8..858ca272d 100644 --- a/pkg/resolver/resolver.go +++ b/pkg/resolver/resolver.go @@ -27,7 +27,7 @@ import ( "github.com/Masterminds/semver" "k8s.io/helm/pkg/chartutil" - "k8s.io/helm/pkg/helmpath" + "k8s.io/helm/pkg/helm/helmpath" "k8s.io/helm/pkg/provenance" "k8s.io/helm/pkg/repo" )