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.
This commit is contained in:
Claude
2025-11-06 18:45:59 +00:00
parent 71759dc67a
commit 3823225df4

View File

@@ -21,8 +21,8 @@ spec:
spec: spec:
containers: containers:
- name: frontend - name: frontend
image: bakery/dashboard image: bakery/dashboard:latest
imagePullPolicy: IfNotPresent imagePullPolicy: Always
ports: ports:
- containerPort: 3000 - containerPort: 3000
name: http name: http
@@ -41,17 +41,17 @@ spec:
cpu: "500m" cpu: "500m"
livenessProbe: livenessProbe:
httpGet: httpGet:
path: /health path: /
port: 3000 port: 3000
initialDelaySeconds: 15 initialDelaySeconds: 60
timeoutSeconds: 5 timeoutSeconds: 10
periodSeconds: 30 periodSeconds: 30
failureThreshold: 3 failureThreshold: 3
readinessProbe: readinessProbe:
httpGet: httpGet:
path: /health path: /
port: 3000 port: 3000
initialDelaySeconds: 5 initialDelaySeconds: 20
timeoutSeconds: 5 timeoutSeconds: 5
periodSeconds: 10 periodSeconds: 10
failureThreshold: 3 failureThreshold: 3