Skip to content

Commit

Permalink
docs(cli): Move --memoized flag from argo resubmit out of experimental (
Browse files Browse the repository at this point in the history
argoproj#7197)

* cli: Move --memoized flag from argo resubmit out of experimental

Signed-off-by: Yuan Tang <[email protected]>

* Retrigger CI pipeline

Signed-off-by: Yuan Tang <[email protected]>
  • Loading branch information
terrytangyuan committed Nov 10, 2021
1 parent 17fb9d8 commit 57d894c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion cmd/argo/commands/resubmit.go
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ func NewResubmitCommand() *cobra.Command {
command.Flags().BoolVarP(&cliSubmitOpts.wait, "wait", "w", false, "wait for the workflow to complete, only works when a single workflow is resubmitted")
command.Flags().BoolVar(&cliSubmitOpts.watch, "watch", false, "watch the workflow until it completes, only works when a single workflow is resubmitted")
command.Flags().BoolVar(&cliSubmitOpts.log, "log", false, "log the workflow until it completes")
command.Flags().BoolVar(&resubmitOpts.memoized, "memoized", false, "re-use successful steps & outputs from the previous run (experimental)")
command.Flags().BoolVar(&resubmitOpts.memoized, "memoized", false, "re-use successful steps & outputs from the previous run")
command.Flags().StringVarP(&resubmitOpts.labelSelector, "selector", "l", "", "Selector (label query) to filter on, not including uninitialized ones, supports '=', '==', and '!='.(e.g. -l key1=value1,key2=value2)")
command.Flags().StringVar(&resubmitOpts.fieldSelector, "field-selector", "", "Selector (field query) to filter on, supports '=', '==', and '!='.(e.g. --field-selector key1=value1,key2=value2). The server only supports a limited number of field queries per type.")
return command
Expand Down
2 changes: 1 addition & 1 deletion docs/cli/argo_resubmit.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ argo resubmit [WORKFLOW...] [flags]
--field-selector string Selector (field query) to filter on, supports '=', '==', and '!='.(e.g. --field-selector key1=value1,key2=value2). The server only supports a limited number of field queries per type.
-h, --help help for resubmit
--log log the workflow until it completes
--memoized re-use successful steps & outputs from the previous run (experimental)
--memoized re-use successful steps & outputs from the previous run
-o, --output string Output format. One of: name|json|yaml|wide
--priority int32 workflow priority
-l, --selector string Selector (label query) to filter on, not including uninitialized ones, supports '=', '==', and '!='.(e.g. -l key1=value1,key2=value2)
Expand Down

0 comments on commit 57d894c

Please sign in to comment.