Skip to content

Commit

Permalink
fix: scheme added to deployments probes in gateway (#127)
Browse files Browse the repository at this point in the history
  • Loading branch information
marnas authored Oct 30, 2024
1 parent aaf2a55 commit c9d907e
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions charts/gateway/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Expand Down

0 comments on commit c9d907e

Please sign in to comment.