fix(k8s): change imagePullPolicy to IfNotPresent in frontoffice-deployment.yaml
Build and Deploy to Kubernetes / build-and-deploy (push) Failing after 19m56s

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.
This commit is contained in:
masoodafar-web
2026-06-14 00:08:23 +03:30
parent 34c5c508e0
commit 8080b75f05
+1 -1
View File
@@ -21,7 +21,7 @@ spec:
containers: containers:
- name: frontoffice - name: frontoffice
image: 194.5.195.53:30080/admin/frontoffice:latest image: 194.5.195.53:30080/admin/frontoffice:latest
imagePullPolicy: Always imagePullPolicy: IfNotPresent
ports: ports:
- containerPort: 80 - containerPort: 80
name: http name: http