diff --git a/charts/gateway/templates/deployment.yaml b/charts/gateway/templates/deployment.yaml index a3b6b33..65d8943 100644 --- a/charts/gateway/templates/deployment.yaml +++ b/charts/gateway/templates/deployment.yaml @@ -92,11 +92,13 @@ spec: httpGet: path: /health port: {{ .Values.gateway.admin.port }} + scheme: {{ .Values.tls.enable | ternary "HTTPS" "HTTP" }} periodSeconds: 5 startupProbe: httpGet: path: /health port: {{ .Values.gateway.admin.port }} + scheme: {{ .Values.tls.enable | ternary "HTTPS" "HTTP" }} initialDelaySeconds: {{ .Values.gateway.startupProbeDelay | default 10 }} {{- with .Values.resources }} resources: {{- toYaml . | nindent 12 }}