Skip to content
Snippets Groups Projects
Commit 6dc58dae authored by julian.baeume's avatar julian.baeume :pick:
Browse files

use correct endpoinst for live and readiness probes

fixes readiness detection when using app-root different from /
parent 29ecb5cf
No related branches found
No related tags found
No related merge requests found
......@@ -34,14 +34,14 @@ spec:
{{- if .Values.probe.liveness.enabled }}
livenessProbe:
httpGet:
path: /
path: {{ .Values.appRoot }}healthy
port: http
{{- omit .Values.probe.liveness "enabled" | toYaml | nindent 12 }}
{{- end }}
{{- if .Values.probe.readiness.enabled }}
readinessProbe:
httpGet:
path: /
path: {{ .Values.appRoot }}ready
port: http
{{- omit .Values.probe.readiness "enabled" | toYaml | nindent 12 }}
{{- end }}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment