File tree 3 files changed +10
-0
lines changed
3 files changed +10
-0
lines changed Original file line number Diff line number Diff line change @@ -15,6 +15,7 @@ Entries should include a reference to the pull request that introduced the chang
15
15
16
16
- [ BUGFIX] Disables the Helm test pod when ` test.enabled=false ` .
17
17
- [ ENHANCEMENT] Sets a configurable ` livenessProbe ` for the nginx container in the gateway pod.
18
+ - [ ENHANCEMENT] Sets a configurable ` startupProbe ` for the nginx container in the gateway pod.
18
19
19
20
## 6.23.0
20
21
Original file line number Diff line number Diff line change 76
76
{{- toYaml .Values.gateway.livenessProbe | nindent 12 }}
77
77
readinessProbe :
78
78
{{- toYaml .Values.gateway.readinessProbe | nindent 12 }}
79
+ startupProbe :
80
+ {{- toYaml .Values.gateway.startupProbe | nindent 12 }}
79
81
securityContext :
80
82
{{- toYaml .Values.gateway.containerSecurityContext | nindent 12 }}
81
83
{{- with .Values.gateway.lifecycle }}
Original file line number Diff line number Diff line change @@ -1078,6 +1078,13 @@ gateway:
1078
1078
port : http-metrics
1079
1079
initialDelaySeconds : 15
1080
1080
timeoutSeconds : 1
1081
+ # -- startup probe for the nginx container in the gateway pods.
1082
+ startupProbe :
1083
+ httpGet :
1084
+ path : /
1085
+ port : http-metrics
1086
+ initialDelaySeconds : 15
1087
+ timeoutSeconds : 1
1081
1088
nginxConfig :
1082
1089
# -- Which schema to be used when building URLs. Can be 'http' or 'https'.
1083
1090
schema : http
You can’t perform that action at this time.
0 commit comments