[stable/keycloak] Add / to end of probe paths (#8079)

Without the slash these paths return a redirect, which is fine for the
probes but causes the load balancer health check on google cloud to
fail.

See https://github.com/kubernetes/ingress-gce#user-content-health-checks

Signed-off-by: Ben Spencer <ben.spencer@healthforge.io>
This commit is contained in:
ben-healthforge
2018-10-04 23:11:42 -07:00
committed by k8s-ci-robot
parent 0bf7a79d32
commit 36293200cc
2 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -1,5 +1,5 @@
name: keycloak
version: 3.4.0
version: 3.4.1
appVersion: 4.2.1.Final
description: Open Source Identity and Access Management For Modern Applications and Services
keywords:
+2 -2
View File
@@ -83,13 +83,13 @@ spec:
protocol: TCP
livenessProbe:
httpGet:
path: /{{ .Values.keycloak.basepath }}
path: /{{ .Values.keycloak.basepath }}/
port: http
initialDelaySeconds: {{ .Values.keycloak.livenessProbe.initialDelaySeconds }}
timeoutSeconds: {{ .Values.keycloak.livenessProbe.timeoutSeconds }}
readinessProbe:
httpGet:
path: /{{ .Values.keycloak.basepath }}
path: /{{ .Values.keycloak.basepath }}/
port: http
initialDelaySeconds: {{ .Values.keycloak.readinessProbe.initialDelaySeconds }}
timeoutSeconds: {{ .Values.keycloak.readinessProbe.timeoutSeconds }}