<@ULVA73B9P> I'm building a CICD process that uses...
# ask-marvin
a
@Marvin I'm building a CICD process that uses the prefect.yaml file for scheduling and handling deployments. What is the command to make it so my deployments mirror the contents defined in the yaml?
m
To ensure your deployments mirror the contents defined in the
prefect.yaml
file, you can use the
prefect deploy
command. This command will load the
prefect.yaml
file and execute the defined steps for deployment. Here's a concise explanation of what happens: 1. The
prefect.yaml
file is loaded, and its sections (like
build
,
push
, and
pull
) are processed. 2. All variable and block references are resolved. 3. The deployment is registered with the fully realized specification. For more details, you can refer to the Prefect YAML documentation.