diff --git a/cmd/helm/helm.go b/cmd/helm/helm.go index 2b505905be359a2c2c1438bee7efc15148f319d7..efa5ab589809bcffcb96ca4f781f5b78d9f07a3f 100644 --- a/cmd/helm/helm.go +++ b/cmd/helm/helm.go @@ -64,7 +64,7 @@ func init() { p := RootCommand.PersistentFlags() p.StringVar(&helmHome, "home", home, "location of your Helm config. Overrides $HELM_HOME.") p.StringVar(&tillerHost, "host", thost, "address of tiller. Overrides $HELM_HOST.") - p.StringVarP(&tillerNamespace, "namespace", "n", "", "kubernetes namespace") + p.StringVarP(&tillerNamespace, "namespace", "", "", "kubernetes namespace") p.BoolVarP(&flagDebug, "debug", "", false, "enable verbose output") }