[stable/keycloak] use realm url for probe instead of static welcome page (#9042)

* [stable/keycloak] use realm url for probe instead of static welcome page

This will result in keycloak actually performing some action
(e.g. hitting the database) versus just serving a static webpage for
liveliness and readiness probes

Signed-off-by: Michael Dop <michael.p.dop@gmail.com>

* Use the basepath for liveliness

Signed-off-by: Michael Dop <michael.p.dop@gmail.com>
This commit is contained in:
Michael Dop
2018-12-07 09:45:50 -08:00
committed by Kubernetes Prow Robot
parent 06a650e941
commit 2ffbd32d46
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -1,5 +1,5 @@
name: keycloak
version: 4.0.4
version: 4.0.5
appVersion: 4.5.0.Final
description: Open Source Identity and Access Management For Modern Applications and Services
keywords:
+1 -1
View File
@@ -100,7 +100,7 @@ spec:
timeoutSeconds: {{ .Values.keycloak.livenessProbe.timeoutSeconds }}
readinessProbe:
httpGet:
path: /{{ .Values.keycloak.basepath }}/
path: /{{ .Values.keycloak.basepath }}/realms/master
port: http
initialDelaySeconds: {{ .Values.keycloak.readinessProbe.initialDelaySeconds }}
timeoutSeconds: {{ .Values.keycloak.readinessProbe.timeoutSeconds }}