From 5e2317a98b5b547f870272470a025983f5c75a55 Mon Sep 17 00:00:00 2001 From: fang duan Date: Sat, 17 Oct 2020 13:25:06 +0800 Subject: [PATCH] Update cmd flag usage Signed-off-by: fang duan --- cmd/helm/uninstall.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/helm/uninstall.go b/cmd/helm/uninstall.go index 602c8a010..f9c971f50 100644 --- a/cmd/helm/uninstall.go +++ b/cmd/helm/uninstall.go @@ -75,7 +75,7 @@ func newUninstallCmd(cfg *action.Configuration, out io.Writer) *cobra.Command { f := cmd.Flags() f.BoolVar(&client.DryRun, "dry-run", false, "simulate a uninstall") - f.BoolVar(&client.DeleteNamespace, "delete-namespace", false, "delete the release namespace if present(be careful, this will remove release history)") + f.BoolVar(&client.DeleteNamespace, "delete-namespace", false, "delete the release namespace if present (be careful, this will remove release history)") f.BoolVar(&client.DisableHooks, "no-hooks", false, "prevent hooks from running during uninstallation") f.BoolVar(&client.KeepHistory, "keep-history", false, "remove all associated resources and mark the release as deleted, but retain the release history") f.DurationVar(&client.Timeout, "timeout", 300*time.Second, "time to wait for any individual Kubernetes operation (like Jobs for hooks)")