From f1d104ff7d81cb115019fdb8fa22212790cb323d Mon Sep 17 00:00:00 2001 From: Matthew Fisher Date: Mon, 4 Mar 2019 13:34:10 -0800 Subject: [PATCH] ref: remove enabling --wait on --atomic Signed-off-by: Matthew Fisher --- cmd/helm/install.go | 1 - cmd/helm/upgrade.go | 1 - 2 files changed, 2 deletions(-) diff --git a/cmd/helm/install.go b/cmd/helm/install.go index 4602ea9fd..09884cf96 100644 --- a/cmd/helm/install.go +++ b/cmd/helm/install.go @@ -191,7 +191,6 @@ func newInstallCmd(c helm.Interface, out io.Writer) *cobra.Command { } inst.chartPath = cp inst.client = ensureHelmClient(inst.client) - inst.wait = inst.wait || inst.atomic return inst.run() }, diff --git a/cmd/helm/upgrade.go b/cmd/helm/upgrade.go index 044ec045d..3bb0827bb 100644 --- a/cmd/helm/upgrade.go +++ b/cmd/helm/upgrade.go @@ -143,7 +143,6 @@ func newUpgradeCmd(client helm.Interface, out io.Writer) *cobra.Command { upgrade.release = args[0] upgrade.chart = args[1] upgrade.client = ensureHelmClient(upgrade.client) - upgrade.wait = upgrade.wait || upgrade.atomic return upgrade.run() },