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

Commit

Permalink
[stable/keycloak] Fix incorrect default value for extraEnv (#6350)
Browse files Browse the repository at this point in the history
The default value has to be an empty string instead of an empty map because
it is passed to the 'tpl' function. Otherwise Helm gives you a warning when the chart is
installed and 'keycloak.extraEnv' is used.
  • Loading branch information
unguiculus authored and k8s-ci-robot committed Jun 27, 2018
1 parent 1ff575f commit a066a97
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 5 deletions.
2 changes: 1 addition & 1 deletion stable/keycloak/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: keycloak
version: 3.0.1
version: 3.0.2
appVersion: 4.0.0.Final
description: Open Source Identity and Access Management For Modern Applications and Services
keywords:
Expand Down
11 changes: 7 additions & 4 deletions stable/keycloak/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -44,10 +44,13 @@ keycloak:
password: ""

## Allows the specification of additional environment variables for Keycloak
extraEnv: {}
# KEYCLOAK_LOGLEVEL: DEBUG
# WILDFLY_LOGLEVEL: DEBUG
# CACHE_OWNERS: 2
extraEnv: |
# - name: KEYCLOAK_LOGLEVEL
# value: DEBUG
# - name: WILDFLY_LOGLEVEL
# value: DEBUG
# - name: CACHE_OWNERS
# value: "2"
affinity: |
podAntiAffinity:
Expand Down

0 comments on commit a066a97

Please sign in to comment.