Skip to content
Snippets Groups Projects
Commit 41b296fe0cc5 authored by Aurélien Lubert's avatar Aurélien Lubert
Browse files

feat: allow to configure the readinessProbe path and port

parent de715485dd1d
No related branches found
No related tags found
1 merge request!2Topic/default/probe
......@@ -52,5 +52,8 @@
timeoutSeconds: 5
failureThreshold: 20
httpGet:
path: /
path: {{ .Values.readinessProbe.path }}
{{- if .Values.readinessProbe.port }}
port: {{ .Values.readinessProbe.port }}
{{- else }}
port: {{ .Values.port }}
......@@ -56,1 +59,2 @@
port: {{ .Values.port }}
{{- end }}
......@@ -47,3 +47,9 @@
clusterIssuer: "letsencrypt-staging"
tlsSecret: true
annotations: {}
# Readiness probe
readinessProbe:
path: "/"
# Use this value to specify another port to listen
# port: 80
\ No newline at end of file
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