Added back tiller namespace option for upgrade command. Now that main branch is using Helm 2.2 this will work.

This commit is contained in:
Eric.Runquist
2017-03-08 13:33:37 -06:00
parent 1ce7a0862d
commit f4b14563bf
+4
View File
@@ -73,6 +73,10 @@ func setPushEventCommand(p *Plugin) {
upgrade = append(upgrade, "--namespace")
upgrade = append(upgrade, p.Config.Namespace)
}
if p.Config.TillerNs != "" {
upgrade = append(upgrade, "--tiller-namespace")
upgrade = append(upgrade, p.Config.TillerNs)
}
if p.Config.DryRun {
upgrade = append(upgrade, "--dry-run")
}