File tree Expand file tree Collapse file tree 2 files changed +8
-10
lines changed Expand file tree Collapse file tree 2 files changed +8
-10
lines changed Original file line number Diff line number Diff line change @@ -172,16 +172,15 @@ spec:
172
172
httpGet :
173
173
path : /v1/info
174
174
port : http
175
- initialDelaySeconds : {{ .Values.coordinator.livenessProbe.initialDelaySeconds | default 15 }}
175
+ initialDelaySeconds : {{ .Values.coordinator.livenessProbe.initialDelaySeconds | default 30 }}
176
176
periodSeconds : {{ .Values.coordinator.livenessProbe.periodSeconds | default 10 }}
177
177
timeoutSeconds : {{ .Values.coordinator.livenessProbe.timeoutSeconds | default 5 }}
178
178
failureThreshold : {{ .Values.coordinator.livenessProbe.failureThreshold | default 6 }}
179
179
successThreshold : {{ .Values.coordinator.livenessProbe.successThreshold | default 1 }}
180
180
readinessProbe :
181
- httpGet :
182
- path : /v1/info
183
- port : http
184
- initialDelaySeconds : {{ .Values.coordinator.readinessProbe.initialDelaySeconds | default 15 }}
181
+ exec :
182
+ command : [/usr/lib/trino/bin/health-check]
183
+ initialDelaySeconds : {{ .Values.coordinator.readinessProbe.initialDelaySeconds | default 10 }}
185
184
periodSeconds : {{ .Values.coordinator.readinessProbe.periodSeconds | default 10 }}
186
185
timeoutSeconds : {{ .Values.coordinator.readinessProbe.timeoutSeconds | default 5 }}
187
186
failureThreshold : {{ .Values.coordinator.readinessProbe.failureThreshold | default 6 }}
Original file line number Diff line number Diff line change @@ -138,16 +138,15 @@ spec:
138
138
httpGet :
139
139
path : /v1/info
140
140
port : http
141
- initialDelaySeconds : {{ .Values.worker.livenessProbe.initialDelaySeconds | default 15 }}
141
+ initialDelaySeconds : {{ .Values.worker.livenessProbe.initialDelaySeconds | default 30 }}
142
142
periodSeconds : {{ .Values.worker.livenessProbe.periodSeconds | default 10 }}
143
143
timeoutSeconds : {{ .Values.worker.livenessProbe.timeoutSeconds | default 5 }}
144
144
failureThreshold : {{ .Values.worker.livenessProbe.failureThreshold | default 6 }}
145
145
successThreshold : {{ .Values.worker.livenessProbe.successThreshold | default 1 }}
146
146
readinessProbe :
147
- httpGet :
148
- path : /v1/info
149
- port : http
150
- initialDelaySeconds : {{ .Values.worker.readinessProbe.initialDelaySeconds | default 15 }}
147
+ exec :
148
+ command : [/usr/lib/trino/bin/health-check]
149
+ initialDelaySeconds : {{ .Values.worker.readinessProbe.initialDelaySeconds | default 10 }}
151
150
periodSeconds : {{ .Values.worker.readinessProbe.periodSeconds | default 10 }}
152
151
timeoutSeconds : {{ .Values.worker.readinessProbe.timeoutSeconds | default 5 }}
153
152
failureThreshold : {{ .Values.worker.readinessProbe.failureThreshold | default 6 }}
You can’t perform that action at this time.
0 commit comments