From 0c05a02580818b0f4a6aac17541db735c0944b70 Mon Sep 17 00:00:00 2001 From: jcschaff Date: Fri, 17 Jan 2025 14:23:09 -0500 Subject: [PATCH] specify "always pull" for k8s deployments to update even if tag is same --- kustomize/base/api.yaml | 1 + kustomize/base/worker.yaml | 1 + 2 files changed, 2 insertions(+) diff --git a/kustomize/base/api.yaml b/kustomize/base/api.yaml index 3fc6eae..4387a26 100644 --- a/kustomize/base/api.yaml +++ b/kustomize/base/api.yaml @@ -17,6 +17,7 @@ spec: containers: - name: api image: ghcr.io/biosimulations/biosim-api:latest + imagePullPolicy: Always ports: - containerPort: 8000 envFrom: diff --git a/kustomize/base/worker.yaml b/kustomize/base/worker.yaml index 253375c..6af73ce 100644 --- a/kustomize/base/worker.yaml +++ b/kustomize/base/worker.yaml @@ -17,6 +17,7 @@ spec: containers: - name: worker image: ghcr.io/biosimulations/biosim-worker:latest + imagePullPolicy: Always envFrom: - configMapRef: name: worker-config