From 5584aaa2dbacc509db518edc5f02cfc704a21ce6 Mon Sep 17 00:00:00 2001 From: Mayne0213 Date: Sun, 23 Nov 2025 10:34:06 +0900 Subject: [PATCH] FEAT(test): add imagePullPolicy Always - Ensure Kubernetes always pulls latest image - Fixes auto-deployment issue with latest tag - Pod will now update when new image is pushed to GHCR --- deploy/k8s/base/deployment.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/deploy/k8s/base/deployment.yaml b/deploy/k8s/base/deployment.yaml index 54f5119..6823c29 100644 --- a/deploy/k8s/base/deployment.yaml +++ b/deploy/k8s/base/deployment.yaml @@ -22,6 +22,7 @@ spec: containers: - name: jovies-app image: ghcr.io/mayne0213/jovies:latest + imagePullPolicy: Always ports: - containerPort: 3000 protocol: TCP