diff --git a/cmd/helm/install.go b/cmd/helm/install.go index b475c7963..d838f0b7f 100644 --- a/cmd/helm/install.go +++ b/cmd/helm/install.go @@ -32,7 +32,6 @@ import ( "github.com/ghodss/yaml" "github.com/spf13/cobra" - "k8s.io/helm/cmd/helm/strvals" "k8s.io/helm/pkg/chartutil" "k8s.io/helm/pkg/downloader" "k8s.io/helm/pkg/helm" @@ -40,6 +39,7 @@ import ( "k8s.io/helm/pkg/kube" "k8s.io/helm/pkg/proto/hapi/chart" "k8s.io/helm/pkg/proto/hapi/release" + "k8s.io/helm/pkg/strvals" ) const installDesc = ` diff --git a/cmd/helm/upgrade.go b/cmd/helm/upgrade.go index 0c302cc32..a05891e5d 100644 --- a/cmd/helm/upgrade.go +++ b/cmd/helm/upgrade.go @@ -25,10 +25,10 @@ import ( "github.com/ghodss/yaml" "github.com/spf13/cobra" - "k8s.io/helm/cmd/helm/strvals" "k8s.io/helm/pkg/chartutil" "k8s.io/helm/pkg/helm" "k8s.io/helm/pkg/storage/driver" + "k8s.io/helm/pkg/strvals" ) const upgradeDesc = ` diff --git a/cmd/helm/strvals/doc.go b/pkg/strvals/doc.go similarity index 100% rename from cmd/helm/strvals/doc.go rename to pkg/strvals/doc.go diff --git a/cmd/helm/strvals/parser.go b/pkg/strvals/parser.go similarity index 100% rename from cmd/helm/strvals/parser.go rename to pkg/strvals/parser.go diff --git a/cmd/helm/strvals/parser_test.go b/pkg/strvals/parser_test.go similarity index 100% rename from cmd/helm/strvals/parser_test.go rename to pkg/strvals/parser_test.go