Hi, does <tagging> works with `argo workflows`? We...
# ask-metaflow
f
Hi, does tagging works with
argo workflows
? We would like to add arbitrary tag. I tried just running but this just adds it to local run
Copy code
python helloworld.py run --tag crazy_test
What would be the way to do it?
1
a
python helloworld.py argo-workflows create --tag crazy_test
will deploy a flow that when executed will assign
crazy_test
to the run
thankyou 1