Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix healthcheck endpoints #1534

Merged
merged 1 commit into from
Mar 31, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions chart/selenium-grid/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ components:
# Liveness probe settings
livenessProbe:
enabled: true
path: /status
path: /readyz
initialDelaySeconds: 10
failureThreshold: 10
timeoutSeconds: 10
Expand All @@ -43,7 +43,7 @@ components:
# Readiness probe settings
readinessProbe:
enabled: true
path: /status
path: /readyz
initialDelaySeconds: 12
failureThreshold: 10
timeoutSeconds: 10
Expand Down Expand Up @@ -196,7 +196,7 @@ hub:
# Liveness probe settings
livenessProbe:
enabled: true
path: /wd/hub/status
path: /readyz
initialDelaySeconds: 10
failureThreshold: 10
timeoutSeconds: 10
Expand All @@ -205,7 +205,7 @@ hub:
# Readiness probe settings
readinessProbe:
enabled: true
path: /wd/hub/status
path: /readyz
initialDelaySeconds: 12
failureThreshold: 10
timeoutSeconds: 10
Expand Down