feat(infrastructure): add 60sec liveness

This commit is contained in:
2025-09-22 19:45:41 +02:00
parent 86af1a533f
commit 0a56182e5f

View File

@@ -18,3 +18,17 @@ spec:
name: guestbook-ui
ports:
- containerPort: 80
livenessProbe:
httpGet:
path: /
port: 80
initialDelaySeconds: 60
periodSeconds: 10
failureThreshold: 3
readinessProbe:
httpGet:
path: /
port: 80
initialDelaySeconds: 60
periodSeconds: 10
failureThreshold: 3