Skip to content

Commit

Permalink
fix: default startup probe timeout
Browse files Browse the repository at this point in the history
  • Loading branch information
devthejo committed Jun 10, 2024
1 parent 7ea67b1 commit cca0692
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ httpGet:
{{- end -}}

{{- define "contrib-helpers.startupProbe" -}}
{{ $defaultStartupProbe := dict "failureThreshold" 20 "periodSeconds" 10 "initialDelaySeconds" 10 }}
{{ $defaultStartupProbe := dict "failureThreshold" 20 "periodSeconds" 10 "initialDelaySeconds" 10 "timeoutSeconds" 5 }}
{{ if .Values.startupProbe }}
{{ mergeOverwrite dict $defaultStartupProbe ((include "contrib-helpers.probe" .) | fromYaml) .Values.startupProbe | toYaml }}
{{ else }}
Expand Down

0 comments on commit cca0692

Please sign in to comment.