Paweł Biernat
09/30/2024, 9:19 AMMarvin
09/30/2024, 9:19 AMprefect deploy
from the CLI, you need to specify that there are no steps for the pull section in your prefect.yaml
file. Unfortunately, the exact CLI argument to do this directly doesn't seem to be documented explicitly.
However, you can manually set the pull
section to an empty list in your prefect.yaml
file like this:
yaml
pull: []
If you want to proceed without modifying the yaml file, you can use interactive prompts provided by prefect deploy
to skip any pull steps.
For more details, check the documentation:
- Prefect 2.x: Prefect Deploy Guide
- Prefect 3.x: Prefect YAML Infrastructure Concepts
Let me know if you need further assistance!