Skip to content

Commit c38937c

Browse files
authored
Fix healthcheck endpoints (#1534)
1 parent 6b0b052 commit c38937c

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

chart/selenium-grid/values.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ components:
3434
# Liveness probe settings
3535
livenessProbe:
3636
enabled: true
37-
path: /status
37+
path: /readyz
3838
initialDelaySeconds: 10
3939
failureThreshold: 10
4040
timeoutSeconds: 10
@@ -43,7 +43,7 @@ components:
4343
# Readiness probe settings
4444
readinessProbe:
4545
enabled: true
46-
path: /status
46+
path: /readyz
4747
initialDelaySeconds: 12
4848
failureThreshold: 10
4949
timeoutSeconds: 10
@@ -196,7 +196,7 @@ hub:
196196
# Liveness probe settings
197197
livenessProbe:
198198
enabled: true
199-
path: /wd/hub/status
199+
path: /readyz
200200
initialDelaySeconds: 10
201201
failureThreshold: 10
202202
timeoutSeconds: 10
@@ -205,7 +205,7 @@ hub:
205205
# Readiness probe settings
206206
readinessProbe:
207207
enabled: true
208-
path: /wd/hub/status
208+
path: /readyz
209209
initialDelaySeconds: 12
210210
failureThreshold: 10
211211
timeoutSeconds: 10

0 commit comments

Comments
 (0)