Add configuration for probe paths
This commit is contained in:
parent
51a5f0e276
commit
bf9df71fec
3 changed files with 11 additions and 3 deletions
|
@ -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 }}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue