From 3823225df4edbe1230e552203868f0ee83a24b7c Mon Sep 17 00:00:00 2001 From: Claude Date: Thu, 6 Nov 2025 18:45:59 +0000 Subject: [PATCH] Revert Kubernetes frontend deployment changes Reverted changes from commit 71759dc: - Restored imagePullPolicy: Always - Restored image: bakery/dashboard:latest - Restored health check paths to / - Restored original health check timings Back to original Kubernetes configuration. --- .../base/components/frontend/frontend-service.yaml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/infrastructure/kubernetes/base/components/frontend/frontend-service.yaml b/infrastructure/kubernetes/base/components/frontend/frontend-service.yaml index 80532ac5..11412cc4 100644 --- a/infrastructure/kubernetes/base/components/frontend/frontend-service.yaml +++ b/infrastructure/kubernetes/base/components/frontend/frontend-service.yaml @@ -21,8 +21,8 @@ spec: spec: containers: - name: frontend - image: bakery/dashboard - imagePullPolicy: IfNotPresent + image: bakery/dashboard:latest + imagePullPolicy: Always ports: - containerPort: 3000 name: http @@ -41,17 +41,17 @@ spec: cpu: "500m" livenessProbe: httpGet: - path: /health + path: / port: 3000 - initialDelaySeconds: 15 - timeoutSeconds: 5 + initialDelaySeconds: 60 + timeoutSeconds: 10 periodSeconds: 30 failureThreshold: 3 readinessProbe: httpGet: - path: /health + path: / port: 3000 - initialDelaySeconds: 5 + initialDelaySeconds: 20 timeoutSeconds: 5 periodSeconds: 10 failureThreshold: 3