Hey folks, using prefect 3.1.15. I have several de...
# ask-community
a
Hey folks, using prefect 3.1.15. I have several deployments defined in my prefect.yaml. They all run as a k8s job. This works fine so far. I want to update the used image of the jobs by runnging
Copy code
prefect --no-prompt deploy --job-variable image=europe-docker.pkg.dev/<my-image>:tag3 --all
However, the job variable never gets updated in this case (note the
--all
flag). If I run the deploy command for a single deployment, everything works as expected (the image variable gets updated)
Copy code
prefect --no-prompt deploy --job-variable image=europe-docker.pkg.dev/<my-image>:tag3 --name my_deployment --> this works and updates the image
Does anyone of you know, what I'm doing wrong? Or is this the expected behavior?