Hey folks, I have a Kubernetes work pool with a d...
# ask-community
a
Hey folks, I have a Kubernetes work pool with a default
image
set. Now, whenever I create new deployments, they use that
image
as their base image correctly. The question is, what will happen to existing deployments when I change that
image
in the base job template? I would like their images to be changed as well. Is that the case?
j
hey, if the image is modified in the work pool's base job template, that is the default for all deployments that use that work pool. So it will be updated for all of them (old and new), unless you have a set a
job_variable
for the image on individual deployments. That would override the value of the base job template
🙌 1