You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I know that argo workflows can be kubectl created directly but if they use things like parameters or loops you have to go through argo cli. I was wondering if there is some way to just render these yaml files with the cli or some other tool so that I can easily kubectl create them later.
The text was updated successfully, but these errors were encountered:
No current way. Here are the flags which mutate the workflow spec before submission
--entrypoint string override entrypoint
--generate-name string override metadata.generateName
--instanceid string submit with a specific controller's instance id label
--name string override metadata.name
-p, --parameter stringArray pass an input parameter
--priority int32 workflow priority
--serviceaccount string run all pods in the workflow using specified serviceaccount
I think what you are looking for is probably a --dry-run flag combined with -o yaml:
I think --dry-run for this purpose is a reasonable request.
jessesuen
changed the title
Is it possible to render a workflow into a kubernetes native yaml file with the cli (or something else)?argo submit --dry-run -o yaml to support substituted yaml
Apr 20, 2019
* Fix: Clean up descriptions, add example and rename configration names for Kafka/SASL argoproj#1217
Signed-off-by: Christopher Buckley <[email protected]>
I know that argo workflows can be kubectl created directly but if they use things like parameters or loops you have to go through argo cli. I was wondering if there is some way to just render these yaml files with the cli or some other tool so that I can easily kubectl create them later.
The text was updated successfully, but these errors were encountered: