From 947b341b4d153a39bcbc85b254896f9022dfbcbe Mon Sep 17 00:00:00 2001 From: jzunigax2 <125698953+jzunigax2@users.noreply.github.com> Date: Wed, 15 Jul 2026 09:06:46 -0600 Subject: [PATCH] fix(statefulset): enable liveness and readiness probes in statefulset.yaml - Added liveness and readiness probes to the statefulset configuration to enhance application health monitoring. - Removed commented-out probe configurations for clarity and maintainability. --- .../stalwart/templates/statefulset.yaml | 24 +++++++++---------- 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/deploy/charts/stalwart/templates/statefulset.yaml b/deploy/charts/stalwart/templates/statefulset.yaml index 512e880..c48e229 100644 --- a/deploy/charts/stalwart/templates/statefulset.yaml +++ b/deploy/charts/stalwart/templates/statefulset.yaml @@ -62,18 +62,18 @@ spec: envFrom: - secretRef: name: {{ .Values.secretName }} - # livenessProbe: - # httpGet: - # path: /healthz/live - # port: management - # initialDelaySeconds: 30 - # periodSeconds: 10 - # readinessProbe: - # httpGet: - # path: /healthz/ready - # port: management - # initialDelaySeconds: 10 - # periodSeconds: 5 + livenessProbe: + httpGet: + path: /healthz/live + port: management + initialDelaySeconds: 30 + periodSeconds: 10 + readinessProbe: + httpGet: + path: /healthz/ready + port: management + initialDelaySeconds: 10 + periodSeconds: 5 volumeMounts: - name: config mountPath: /etc/stalwart/config.json