Add configuration for probe paths

This commit is contained in:
David Burke 2021-06-03 10:32:29 -04:00
parent 51a5f0e276
commit bf9df71fec
3 changed files with 11 additions and 3 deletions

View file

@ -43,14 +43,14 @@ spec:
livenessProbe:
failureThreshold: {{ .Values.web.livenessProbe.failureThreshold }}
httpGet:
path: /_health/
path: {{ .Values.web.livenessProbe.path | default "/_health/" }}
port: 8080
initialDelaySeconds: {{ .Values.web.livenessProbe.initialDelaySeconds }}
timeoutSeconds: {{ .Values.web.livenessProbe.timeoutSeconds }}
readinessProbe:
failureThreshold: {{ .Values.web.readinessProbe.failureThreshold }}
httpGet:
path: /_health/
path: {{ .Values.web.readinessProbe.path | default "/_health/" }}
port: 8080
initialDelaySeconds: {{ .Values.web.readinessProbe.initialDelaySeconds }}
timeoutSeconds: {{ .Values.web.readinessProbe.timeoutSeconds }}