You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# -- Default value is Parallel so the StatefulSet controller doesn't wait the pod to become ready in order to start new one.
36
+
podManagementPolicy: Parallel
36
37
# -- The maximum number of revisions that will be maintained in the StatefulSet's [revision history](https://kubernetes.io/docs/concepts/workloads/controllers/deployment/#revision-history-limit)
37
38
revisionHistoryLimit: 10
38
39
@@ -188,7 +189,7 @@ livenessProbe:
188
189
enabled: true
189
190
# -- Path and port for probe
190
191
httpGet:
191
-
path: /management/v1/node/state
192
+
path: /health/liveness
192
193
port: 10300
193
194
# -- Initial delay seconds for livenessProbe
194
195
initialDelaySeconds: 5
@@ -208,7 +209,7 @@ readinessProbe:
208
209
enabled: true
209
210
# -- Path and port for probe
210
211
httpGet:
211
-
path: /management/v1/node/state
212
+
path: /health/readiness
212
213
port: 10300
213
214
# -- Initial delay seconds for readinessProbe
214
215
initialDelaySeconds: 30
@@ -225,7 +226,11 @@ readinessProbe:
225
226
# @default -- Check defaults below
226
227
startupProbe:
227
228
# -- Enables startupProbe on GridGain container
228
-
enabled: false
229
+
enabled: true
230
+
# -- Path and port for probe
231
+
httpGet:
232
+
path: /health/liveness
233
+
port: 10300
229
234
# -- Initial delay seconds for startupProbe
230
235
initialDelaySeconds: 30
231
236
# -- Period seconds for startupProbe
@@ -356,6 +361,9 @@ services:
356
361
rest: 10800
357
362
cluster: 3344
358
363
sessionAffinity: None
364
+
# Set to true so that the StatefulSet's Headless Service propagates SRV DNS records for its Pods for node discovery.
0 commit comments