mirror of
https://github.com/helm/charts.git
synced 2026-08-23 22:37:45 +00:00
[stable/keycloak] Fix incorrect default value for extraEnv (#6350)
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.
This commit is contained in:
committed by
k8s-ci-robot
parent
1ff575fceb
commit
a066a97f62
@@ -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:
|
||||
|
||||
@@ -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:
|
||||
|
||||
Reference in New Issue
Block a user