Browse Source

Fix issues with healtcheck for version 2.24

master
Fábio Kaiser Rauber 2 years ago
parent
commit
a645ba31b6
  1. 10
      charts/snappymail/v0.1.0/templates/deployment.yaml

10
charts/snappymail/v0.1.0/templates/deployment.yaml

@ -52,10 +52,20 @@ spec:
httpGet: httpGet:
path: / path: /
port: http port: http
initialDelaySeconds: 60
periodSeconds: 5
successThreshold: 2
failureThreshold: 3
timeoutSeconds: 2
readinessProbe: readinessProbe:
httpGet: httpGet:
path: / path: /
port: http port: http
initialDelaySeconds: 60
periodSeconds: 5
successThreshold: 2
failureThreshold: 3
timeoutSeconds: 2
resources: resources:
{{- toYaml .Values.resources | nindent 12 }} {{- toYaml .Values.resources | nindent 12 }}
{{- with .Values.nodeSelector }} {{- with .Values.nodeSelector }}

Loading…
Cancel
Save