Hi, We have deployed Metaflow with argo-workflows ...
# ask-metaflow
b
Hi, We have deployed Metaflow with argo-workflows and we are using the cli in order to create and trigger flows like in the docs:
python flow.py --with retry argo-workflows create
python flow.py --with retry argo-workflows trigger --param1 ""
I was wondering if there is a way to create and trigger the flow without having to run 2 commands?
1
a
@bitter-orange-8782 would this work?
Copy code
python flow.py --with retry argo-workflows create --param1 foo && python flow.py argo-workflows trigger
b
This works 🙏, but i think that we will have a cli wrapper cause we will need some validations and preparations before we are starting the flow.
a
makes sense!
🖖 1