Use standalone.xml config file when only using 1 replica (#9112)

* fixes #7679, fixes #9070

Signed-off-by: Michael Dop <michael.p.dop@gmail.com>
This commit is contained in:
Michael Dop
2018-11-09 08:19:34 -08:00
committed by k8s-ci-robot
parent 0dfef7cf24
commit 577a48db1b
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -1,5 +1,5 @@
name: keycloak
version: 4.0.1
version: 4.0.2
appVersion: 4.5.0.Final
description: Open Source Identity and Access Management For Modern Applications and Services
keywords:
+1 -1
View File
@@ -21,7 +21,7 @@ data:
{{ . | indent 4 }}
{{- end }}
exec /opt/jboss/tools/docker-entrypoint.sh -b 0.0.0.0 {{ .Values.keycloak.extraArgs }}{{- if $highAvailability }} -c standalone-ha.xml{{ end }}
exec /opt/jboss/tools/docker-entrypoint.sh -b 0.0.0.0 {{ .Values.keycloak.extraArgs }}{{- if $highAvailability }} -c standalone-ha.xml{{ else }} -c standalone.xml{{ end }}
exit "$?"
keycloak.cli: |