diff --git a/docs/2-the-zarf-cli/100-cli-commands/zarf_tools_wait-for.md b/docs/2-the-zarf-cli/100-cli-commands/zarf_tools_wait-for.md index 717a0a9441..0adace0386 100644 --- a/docs/2-the-zarf-cli/100-cli-commands/zarf_tools_wait-for.md +++ b/docs/2-the-zarf-cli/100-cli-commands/zarf_tools_wait-for.md @@ -43,6 +43,7 @@ zarf tools wait-for { KIND | PROTOCOL } { NAME | SELECTOR | URI } { CONDITION | ``` -h, --help help for wait-for -n, --namespace string Specify the namespace of the resources to wait for. + --no-progress Disable fancy UI progress bars, spinners, logos, etc --timeout string Specify the timeout duration for the wait command. (default "5m") ``` diff --git a/src/cmd/tools/wait.go b/src/cmd/tools/wait.go index 4453c3bf30..51598affde 100644 --- a/src/cmd/tools/wait.go +++ b/src/cmd/tools/wait.go @@ -53,4 +53,5 @@ func init() { toolsCmd.AddCommand(waitForCmd) waitForCmd.Flags().StringVar(&waitTimeout, "timeout", "5m", lang.CmdToolsWaitForFlagTimeout) waitForCmd.Flags().StringVarP(&waitNamespace, "namespace", "n", "", lang.CmdToolsWaitForFlagNamespace) + waitForCmd.Flags().BoolVar(&message.NoProgress, "no-progress", false, lang.RootCmdFlagNoProgress) }