From 3264b753785403e9cb6d47d7c9099e29b25cd651 Mon Sep 17 00:00:00 2001 From: Aaron Mell Date: Thu, 10 Oct 2019 13:35:23 -0500 Subject: [PATCH] Refactoring after rebasing with latest Signed-off-by: Aaron Mell --- cmd/helm/upgrade.go | 2 +- pkg/action/action.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/cmd/helm/upgrade.go b/cmd/helm/upgrade.go index 3dfc128e8..dbdfff439 100644 --- a/cmd/helm/upgrade.go +++ b/cmd/helm/upgrade.go @@ -71,7 +71,7 @@ func newUpgradeCmd(cfg *action.Configuration, out io.Writer) *cobra.Command { Long: upgradeDesc, Args: require.ExactArgs(2), RunE: func(cmd *cobra.Command, args []string) error { - client.Namespace = action.GetNamespace() + client.Namespace = action.GetNamespace(settings) if client.Version == "" && client.Devel { debug("setting version to >0.0.0-0") diff --git a/pkg/action/action.go b/pkg/action/action.go index 3c5945d5b..68e56bffd 100644 --- a/pkg/action/action.go +++ b/pkg/action/action.go @@ -35,7 +35,7 @@ import ( "helm.sh/helm/v3/pkg/kube" "helm.sh/helm/v3/pkg/release" "helm.sh/helm/v3/pkg/storage" - "helm.sh/helm/pkg/storage/driver" + "helm.sh/helm/v3/pkg/storage/driver" ) // Timestamper is a function capable of producing a timestamp.Timestamper.