Kyler Suden
02/19/2025, 7:50 PMMarvin
02/19/2025, 7:50 PMprefect.yaml
specifies how Prefect pulls your deployment in remote execution environments, and it is defined as a list of steps executed in sequence. The steps in the "pull" section are not run during the deployment process but are templated and resolved at runtime.
However, you can manually edit the YAML file to adjust the "pull" section as needed. This is a common practice when you have specific deployment instructions that need to be customized per deployment. For more information on how the deployment YAML is structured, you can refer to the Prefect documentation on deployment YAML.
If you are looking for automation or scripting solutions, you might consider using a script to programmatically edit the YAML file before running the deployment command. This could be done with a tool like yq
for YAML processing in bash or a custom Python script.
If you have further questions or need more detailed assistance, feel free to ask!