[bitnami/keycloak] Fix config map template bug (#5881)

* Fix keycloak config map bug #5074

* Bum keycloak version to 2.4.1
This commit is contained in:
Marco Franssen
2021-03-23 13:44:59 +01:00
committed by GitHub
parent 8a760ec280
commit 7f1c8b5b55
2 changed files with 3 additions and 3 deletions

View File

@@ -26,4 +26,4 @@ name: keycloak
sources:
- https://github.com/bitnami/bitnami-docker-keycloak
- https://github.com/keycloak/keycloak
version: 2.4.0
version: 2.4.1

View File

@@ -2,7 +2,7 @@
apiVersion: v1
kind: ConfigMap
metadata:
name: {{ printf "%s-configuration" (include "keycloak.fullname" .) -}}
name: {{ printf "%s-configuration" (include "keycloak.fullname" .) }}
namespace: {{ .Release.Namespace }}
labels: {{- include "common.labels.standard" . | nindent 4 }}
app.kubernetes.io/component: keycloak
@@ -14,5 +14,5 @@ metadata:
{{- end }}
data:
standalone-ha.xml: |-
{{ .Values.configuration | nindent 4 }}
{{- .Values.configuration | nindent 4 }}
{{- end }}