Fix --tiller-namespace flag for plugins

This fixes using `--tiller-namespace $namespace` flag (without the equal sign) for helm plugins.
pull/4207/head^2
Fabian Ruff 8 years ago committed by Sebastien Plisson
parent 04b3fafb50
commit fef99c6287

@ -131,7 +131,7 @@ func manuallyProcessArgs(args []string) ([]string, []string) {
switch a := args[i]; a {
case "--debug":
known = append(known, a)
case "--host", "--kube-context", "--home":
case "--host", "--kube-context", "--home", "--tiller-namespace":
known = append(known, a, args[i+1])
i++
default:

Loading…
Cancel
Save