Skip to content
This repository has been archived by the owner on Feb 22, 2022. It is now read-only.

[stable/selenium] Make hub readiness probe timeout configurable #1391

Merged
merged 3 commits into from
Jul 6, 2017
Merged
Show file tree
Hide file tree
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
1 change: 1 addition & 0 deletions stable/selenium/templates/hub-deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ spec:
httpGet:
path: /grid/console
port: {{ .Values.hub.port }}
timeoutSeconds: {{ .Values.hub.readinessTimeout }}
env:
- name: JAVA_OPTS
value: {{ default "" .Values.hub.javaOpts | quote }}
Expand Down
3 changes: 3 additions & 0 deletions stable/selenium/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,9 @@ hub:
## The port which the hub listens on
port: 4444

## Timeout for probe Hub readiness via HTTP request on Hub console
readinessTimeout: 1

## Set the JAVA_OPTS environment variable
## If you find your selenium hub is OOMKilled, try adding -XX:+UseSerialGC
javaOpts: "-Xmx400m"
Expand Down