7552 | Change path of health checks and add init delay (#7554)

* 7552 | Change path of health checks and add init delay

Signed-off-by: Matthew Greenwald <mgreenwald@gmail.com>

* 7552 | Incrementing chart version

Signed-off-by: Matthew Greenwald <mgreenwald@gmail.com>

* 7552 | Adding configuration for readinessDelay

Signed-off-by: Matthew Greenwald <mgreenwald@gmail.com>

* 7552 | Updating chart version to master

Signed-off-by: Matthew Greenwald <mgreenwald@gmail.com>

* 7552 | Bumping chart version.

Signed-off-by: Matthew Greenwald <mgreenwald@gmail.com>
This commit is contained in:
Matthew Greenwald
2018-10-24 14:26:57 -07:00
committed by k8s-ci-robot
parent 234f0ebf45
commit 9ae2f8ba67
3 changed files with 9 additions and 5 deletions
+1 -1
View File
@@ -1,5 +1,5 @@
name: selenium
version: 0.11.0
version: 0.11.1
appVersion: 3.14.0
description: Chart for selenium grid
keywords:
@@ -29,15 +29,16 @@ spec:
name: http
livenessProbe:
httpGet:
path: /grid/console
path: /wd/hub/status
port: {{ .Values.hub.port }}
initialDelaySeconds: 30
periodSeconds: 5
timeoutSeconds: {{ .Values.hub.livenessTimeout }}
readinessProbe:
httpGet:
path: /grid/console
path: /wd/hub/status
port: {{ .Values.hub.port }}
initialDelaySeconds: {{ .Values.hub.readinessDelay }}
timeoutSeconds: {{ .Values.hub.readinessTimeout }}
env:
- name: JAVA_TOOL_OPTIONS
+5 -2
View File
@@ -21,10 +21,13 @@ hub:
## The port which the hub listens on
port: 4444
## Timeout for probe Hub readiness via HTTP request on Hub console
## Timeout for probe Hub readiness via HTTP request on Hub status
readinessTimeout: 1
## Timeout for probe Hub liveness via HTTP request on Hub console
## Initial delay before performing the first readinessProbe
readinessDelay: 15
## Timeout for probe Hub liveness via HTTP request on Hub status
livenessTimeout: 1
## Set the JAVA_TOOL_OPTIONS environment variable