From 5d31fb09d2110242dd91ff64e9b8e161f38e15d4 Mon Sep 17 00:00:00 2001 From: Austin Abro Date: Tue, 18 Feb 2025 13:55:13 +0000 Subject: [PATCH] better help text Signed-off-by: Austin Abro --- cmd/helm/flags.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/helm/flags.go b/cmd/helm/flags.go index d1f0fec58..c73bab63f 100644 --- a/cmd/helm/flags.go +++ b/cmd/helm/flags.go @@ -56,7 +56,7 @@ func AddWaitFlag(cmd *cobra.Command, wait *kube.WaitStrategy) { cmd.Flags().Var( newWaitValue(kube.HookOnlyStrategy, wait), "wait", - "if set, will wait until all resources are in the expected state before marking the operation as successful. It will wait for as long as --timeout. Options are (true, false, watcher, and legacy)", + "if set, will wait until all resources are in the expected state before marking the operation as successful. It will wait for as long as --timeout. Valid inputs are true, false, watcher, and legacy", ) // Sets the strategy to use the watcher strategy if `--wait` is used without an argument cmd.Flags().Lookup("wait").NoOptDefVal = string(kube.StatusWatcherStrategy)