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
This recipe creates YAML files for each Workflow. This may be helpful if you are considering enabling GitOps for Workflows and you want to export current Workflows as a starting point.
447
+
448
+
.. code:: bash
449
+
450
+
for workflow in `cortex workflows list --csv --no-headers --columns tag`
451
+
do
452
+
echo "workflow = $workflow"
453
+
cortex workflows get --tag $workflow --yaml > $workflow.yaml
0 commit comments