Hi Prefect people, I'm wondering how I can get the...
# prefect-community
a
Hi Prefect people, I'm wondering how I can get the KubernetesRun to use a specific image tag that I want to provide dynamically (or at least whenever I reinstall the server and agent with Helm). The backstory is that I have a custom base image for my Agent, Kubernetes jobs and Dask cluster, and when I launch a KubernetesRun there's a delay before the job starts because I call for the
latest
tag and
Always
pull so I can be sure I'm getting the latest dependencies. I'd like to minimise the delay by changing to a
IfNotPresent
image pull policy, but then I'd need to pin the image tag to a specific version, but then I'd want to make sure that specific tag could be updated as I keep pushing updates. Does anyone have any advice? Thanks.