From a645ba31b65f11084dfcb85ef1b8a90e32792480 Mon Sep 17 00:00:00 2001 From: Fabio Date: Tue, 3 Jan 2023 11:18:23 -0300 Subject: [PATCH] Fix issues with healtcheck for version 2.24 --- charts/snappymail/v0.1.0/templates/deployment.yaml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/charts/snappymail/v0.1.0/templates/deployment.yaml b/charts/snappymail/v0.1.0/templates/deployment.yaml index 2372d9f..893427a 100644 --- a/charts/snappymail/v0.1.0/templates/deployment.yaml +++ b/charts/snappymail/v0.1.0/templates/deployment.yaml @@ -52,10 +52,20 @@ spec: httpGet: path: / port: http + initialDelaySeconds: 60 + periodSeconds: 5 + successThreshold: 2 + failureThreshold: 3 + timeoutSeconds: 2 readinessProbe: httpGet: path: / port: http + initialDelaySeconds: 60 + periodSeconds: 5 + successThreshold: 2 + failureThreshold: 3 + timeoutSeconds: 2 resources: {{- toYaml .Values.resources | nindent 12 }} {{- with .Values.nodeSelector }}