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

* Make hub readiness probe timeout configurable

* Update Chart.yaml
This commit is contained in:
Torben Tretau
2017-07-06 10:01:37 -07:00
committed by Vic Iglesias
parent 6d5e4ce026
commit ebdfb4e11a
2 changed files with 4 additions and 0 deletions
@@ -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 }}
+3
View File
@@ -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"