From 36293200cc4a0049e24c6ee47d38bf8a9d68430f Mon Sep 17 00:00:00 2001 From: ben-healthforge <41415546+ben-healthforge@users.noreply.github.com> Date: Fri, 5 Oct 2018 07:11:42 +0100 Subject: [PATCH] [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 --- stable/keycloak/Chart.yaml | 2 +- stable/keycloak/templates/statefulset.yaml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/stable/keycloak/Chart.yaml b/stable/keycloak/Chart.yaml index 2b233e98ff..f2434b0863 100644 --- a/stable/keycloak/Chart.yaml +++ b/stable/keycloak/Chart.yaml @@ -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: diff --git a/stable/keycloak/templates/statefulset.yaml b/stable/keycloak/templates/statefulset.yaml index 30af67ddee..65d8382568 100644 --- a/stable/keycloak/templates/statefulset.yaml +++ b/stable/keycloak/templates/statefulset.yaml @@ -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 }}