Hi, I have prefect agent running on google gke, pr...
# ask-community
a
Hi, I have prefect agent running on google gke, prefect flow on github, custom modules in docker image deployed on gcr and everything is running fine. i am orchestrating our feature Engineering pipeline using prefect and our datalayer needs to use it which is deployed on same cluster so my question is can i invoke prefect flow using some cli command or python api instead of using prefect cloud ui so that i can directly invoke prefect flow in my datalayer(python code) which will return the features to datalayer?
c
k
Definitely. Using the CLI would be:
Copy code
prefect run --project .... --name ...
to invoke a slow run. You can also use
Client().create_flow_run