From 8080b75f0599018602646b5bb035ec9133f85f8d Mon Sep 17 00:00:00 2001 From: masoodafar-web Date: Sun, 14 Jun 2026 00:08:23 +0330 Subject: [PATCH] fix(k8s): change imagePullPolicy to IfNotPresent in frontoffice-deployment.yaml Updated the imagePullPolicy for the frontoffice container to IfNotPresent to optimize image pulling behavior, ensuring that images are only pulled when not already present on the node. --- k8s/staging/frontoffice-deployment.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/k8s/staging/frontoffice-deployment.yaml b/k8s/staging/frontoffice-deployment.yaml index 989e9a2..cc82fd4 100644 --- a/k8s/staging/frontoffice-deployment.yaml +++ b/k8s/staging/frontoffice-deployment.yaml @@ -21,7 +21,7 @@ spec: containers: - name: frontoffice image: 194.5.195.53:30080/admin/frontoffice:latest - imagePullPolicy: Always + imagePullPolicy: IfNotPresent ports: - containerPort: 80 name: http