Skip to content
This repository has been archived by the owner on Feb 22, 2022. It is now read-only.

Updated Keycloak helm chart to keycloak v4.4.0.Final. #7650

Closed
wants to merge 3 commits into from
Closed
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
Updated Keycloak helm chart to keycloak v4.4.0.Final.
Signed-off-by: Ed Clement <ed.clement@gmail.com>
  • Loading branch information
edclement committed Sep 10, 2018
commit 35a6812e40d8bb8b7e3b777186c032113a9f01bd
4 changes: 2 additions & 2 deletions stable/keycloak/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: keycloak
version: 3.3.0
appVersion: 4.2.1.Final
version: 3.4.0
appVersion: 4.4.0.Final
description: Open Source Identity and Access Management For Modern Applications and Services
keywords:
- sso
Expand Down
7 changes: 6 additions & 1 deletion stable/keycloak/templates/configmap.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,12 @@ data:
{{ . | indent 4 }}
{{- end }}

exec /opt/jboss/docker-entrypoint.sh -b 0.0.0.0 {{ .Values.keycloak.extraArgs }}{{- if $highAvailability }} --server-config standalone-ha.xml{{ end }}
# Keycloak 4.4.0 and later use docker entry point `/opt/jboss/tools/docker-entrypoint.sh`
if [ -e "/opt/jboss/docker-entrypoint.sh" ]; then
exec /opt/jboss/docker-entrypoint.sh -b 0.0.0.0 {{ .Values.keycloak.extraArgs }}{{- if $highAvailability }} --server-config standalone-ha.xml{{ end }}
elif [ -e "/opt/jboss/tools/docker-entrypoint.sh" ]; then
exec /opt/jboss/tools/docker-entrypoint.sh -b 0.0.0.0 {{ .Values.keycloak.extraArgs }}{{- if $highAvailability }} --server-config standalone-ha.xml{{ end }}
fi
exit "$?"

keycloak.cli: |
Expand Down
2 changes: 1 addition & 1 deletion stable/keycloak/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ keycloak:

image:
repository: jboss/keycloak
tag: 4.2.1.Final
tag: 4.4.0.Final
pullPolicy: IfNotPresent

## Optionally specify an array of imagePullSecrets.
Expand Down