nuno
07/21/2023, 8:51 AMNate
07/21/2023, 3:40 PMpull
step(s) defined on a deployment to get the source code from a location, for example
# pull section allows you to provide instructions for cloning this project in remote locations
pull:
- prefect.deployments.steps.git_clone:
repository: <https://github.com/zzstoatzz/prefect-monorepo>
branch: main
access_token: null
is the new way of doing what previously might have looked like
prefect deployment build ... -sb github/prefect-monorepo
you can pull
code from anywhere during this pull step, whether s3, github, or anywhere you can fetch with a script, git_clone
is just a common onenuno
07/25/2023, 1:25 PMprefect kubernetes manifest agent | kubectl apply ...
• how to do what you showed with the python API?