apps/stalwart/stalwart-fresh-deployment.yaml aktualisiert

Try to fix the health check restart issue with a different endpoint
This commit is contained in:
andreas.leinen 2026-07-26 14:13:10 +00:00
parent 20a9581b40
commit 2a89be6707

View file

@ -140,7 +140,7 @@ spec:
cpu: "2000m" cpu: "2000m"
startupProbe: startupProbe:
httpGet: httpGet:
path: / path: /healthz/live
port: 8080 port: 8080
initialDelaySeconds: 60 initialDelaySeconds: 60
periodSeconds: 10 periodSeconds: 10
@ -148,7 +148,7 @@ spec:
failureThreshold: 6 failureThreshold: 6
livenessProbe: livenessProbe:
httpGet: httpGet:
path: / path: /healthz/live
port: 8080 port: 8080
initialDelaySeconds: 30 initialDelaySeconds: 30
periodSeconds: 10 periodSeconds: 10
@ -156,7 +156,7 @@ spec:
failureThreshold: 3 failureThreshold: 3
readinessProbe: readinessProbe:
httpGet: httpGet:
path: / path: /healthz/ready
port: 8080 port: 8080
initialDelaySeconds: 10 initialDelaySeconds: 10
periodSeconds: 5 periodSeconds: 5