From c2d45805f3b7f447b9ec0d0e3a096e64fc8705cf Mon Sep 17 00:00:00 2001 From: Nikolay Mahotkin <nikolay.makhotkin@gmail.com> Date: Sat, 17 Dec 2016 00:46:55 +0300 Subject: [PATCH] Renaming --recreate to --recreate-pods --- cmd/helm/rollback.go | 2 +- cmd/helm/upgrade.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/cmd/helm/rollback.go b/cmd/helm/rollback.go index 764b28ad4..7e3e1adda 100644 --- a/cmd/helm/rollback.go +++ b/cmd/helm/rollback.go @@ -72,7 +72,7 @@ func newRollbackCmd(c helm.Interface, out io.Writer) *cobra.Command { f := cmd.Flags() f.BoolVar(&rollback.dryRun, "dry-run", false, "simulate a rollback") - f.BoolVar(&rollback.recreate, "recreate", false, "performs pods restart for the resource if applicable") + f.BoolVar(&rollback.recreate, "recreate-pods", false, "performs pods restart for the resource if applicable") f.BoolVar(&rollback.disableHooks, "no-hooks", false, "prevent hooks from running during rollback") return cmd diff --git a/cmd/helm/upgrade.go b/cmd/helm/upgrade.go index f936514c6..70ce9ea22 100644 --- a/cmd/helm/upgrade.go +++ b/cmd/helm/upgrade.go @@ -93,7 +93,7 @@ func newUpgradeCmd(client helm.Interface, out io.Writer) *cobra.Command { f := cmd.Flags() f.VarP(&upgrade.valueFiles, "values", "f", "specify values in a YAML file (can specify multiple)") f.BoolVar(&upgrade.dryRun, "dry-run", false, "simulate an upgrade") - f.BoolVar(&upgrade.recreate, "recreate", false, "performs pods restart for the resource if applicable") + f.BoolVar(&upgrade.recreate, "recreate-pods", false, "performs pods restart for the resource if applicable") f.StringVar(&upgrade.values, "set", "", "set values on the command line. Separate values with commas: key1=val1,key2=val2") f.BoolVar(&upgrade.disableHooks, "disable-hooks", false, "disable pre/post upgrade hooks. DEPRECATED. Use no-hooks") f.BoolVar(&upgrade.disableHooks, "no-hooks", false, "disable pre/post upgrade hooks") -- GitLab