fix(k8s): update imagePullPolicy to Always in frontoffice-deployment.yaml
Build and Deploy to Kubernetes / build-and-deploy (push) Failing after 20m28s

Changed the imagePullPolicy for the frontoffice container to Always to ensure that the latest image is always pulled from the registry during deployment, improving the consistency of the application updates. Additionally, added a cleanup step in the kub-deploy workflow to remove the latest image from the local cache after deployment.
This commit is contained in:
masoodafar-web
2026-06-19 00:13:02 +03:30
parent 8080b75f05
commit 8766c29a5a
2 changed files with 2 additions and 1 deletions
+1 -1
View File
@@ -21,7 +21,7 @@ spec:
containers:
- name: frontoffice
image: 194.5.195.53:30080/admin/frontoffice:latest
imagePullPolicy: IfNotPresent
imagePullPolicy: Always
ports:
- containerPort: 80
name: http