diff --git a/apps/stalwart/stalwart-fresh-deployment.yaml b/apps/stalwart/stalwart-fresh-deployment.yaml index 3461717..85326f8 100644 --- a/apps/stalwart/stalwart-fresh-deployment.yaml +++ b/apps/stalwart/stalwart-fresh-deployment.yaml @@ -139,25 +139,37 @@ spec: memory: "2Gi" cpu: "2000m" startupProbe: - httpGet: - path: /healthz/live - port: 8080 + exec: + command: + - curl + - -f + - --max-time + - "3" + - http://localhost:8080/healthz/live initialDelaySeconds: 60 periodSeconds: 10 timeoutSeconds: 5 failureThreshold: 6 livenessProbe: - httpGet: - path: /healthz/live - port: 8080 + exec: + command: + - curl + - -f + - --max-time + - "3" + - http://localhost:8080/healthz/live initialDelaySeconds: 30 periodSeconds: 10 timeoutSeconds: 5 failureThreshold: 3 readinessProbe: - httpGet: - path: /healthz/ready - port: 8080 + exec: + command: + - curl + - -f + - --max-time + - "3" + - http://localhost:8080/healthz/ready initialDelaySeconds: 10 periodSeconds: 5 timeoutSeconds: 3