Skip to content

Commit

Permalink
feat: support no-color option on argo submit
Browse files Browse the repository at this point in the history
Signed-off-by: Kazuma (Pakio) Arimura <[email protected]>
  • Loading branch information
pakio committed Jan 29, 2025
1 parent 3ae8b31 commit 92ba909
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions cmd/argo/commands/submit.go
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,7 @@ func NewSubmitCommand() *cobra.Command {
command.Flags().BoolVar(&cliSubmitOpts.Watch, "watch", false, "watch the workflow until it completes")
command.Flags().BoolVar(&cliSubmitOpts.Log, "log", false, "log the workflow until it completes")
command.Flags().BoolVar(&cliSubmitOpts.Strict, "strict", true, "perform strict workflow validation")
command.Flags().BoolVar(&common.NoColor, "no-color", false, "Disable colorized output")
command.Flags().Int32Var(&priority, "priority", 0, "workflow priority")
command.Flags().StringVar(&from, "from", "", "Submit from an existing `kind/name` E.g., --from=cronwf/hello-world-cwf")
command.Flags().StringVar(&cliSubmitOpts.GetArgs.Status, "status", "", "Filter by status (Pending, Running, Succeeded, Skipped, Failed, Error). Should only be used with --watch.")
Expand Down

0 comments on commit 92ba909

Please sign in to comment.