Adam
10/27/2022, 1:49 PMcreate_deployment.py
utility that my CI/CD uses that will create and apply deployments when flows change. Instead of complicated bash, it’s easier to do it in Python. However, I’m unclear how I can get the flow
object from a filepath in this case:
deployment = Deployment.build_from_flow(
flow=my_flow, # how do i get from a filepath to the flow
name="s3-example"
)
In Prefect v1, there was a useful utility called from prefect.utilities.storage import extract_flow_from_file
— my question is does such a utility exist in v2? Or alternatively, is there a better way of doing this?Kalise Richmond
10/27/2022, 4:01 PMAdam
10/28/2022, 6:07 PMflow
object from a given filename i.e. /User/adam/flows/myflow.py
. As we wanted to do something like deploy.py --file=/Users/adam/myflow.py
which would be called by CI and then create the Deployment. Make more sense?Kalise Richmond
10/28/2022, 9:51 PM