From 2a89be670705b9899cb5edba8f7cfd621073b5bc Mon Sep 17 00:00:00 2001 From: "andreas.leinen" Date: Sun, 26 Jul 2026 14:13:10 +0000 Subject: [PATCH] apps/stalwart/stalwart-fresh-deployment.yaml aktualisiert Try to fix the health check restart issue with a different endpoint --- apps/stalwart/stalwart-fresh-deployment.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/apps/stalwart/stalwart-fresh-deployment.yaml b/apps/stalwart/stalwart-fresh-deployment.yaml index 2aa4e39..3461717 100644 --- a/apps/stalwart/stalwart-fresh-deployment.yaml +++ b/apps/stalwart/stalwart-fresh-deployment.yaml @@ -140,7 +140,7 @@ spec: cpu: "2000m" startupProbe: httpGet: - path: / + path: /healthz/live port: 8080 initialDelaySeconds: 60 periodSeconds: 10 @@ -148,7 +148,7 @@ spec: failureThreshold: 6 livenessProbe: httpGet: - path: / + path: /healthz/live port: 8080 initialDelaySeconds: 30 periodSeconds: 10 @@ -156,7 +156,7 @@ spec: failureThreshold: 3 readinessProbe: httpGet: - path: / + path: /healthz/ready port: 8080 initialDelaySeconds: 10 periodSeconds: 5