[bitnami/keycloak] Updating to use your latest container version (20.0.1)and adding KC_LOG_LEVEL (#13845)

* Updating to use your latest container version (20.0.1).
Adding a log level value to be used as an environment variables (KC_LOG_LEVEL)

Signed-off-by: Martin Charette <iam@cinq.com>

* Update README.md with readme-generator-for-helm

Signed-off-by: Bitnami Containers <bitnami-bot@vmware.com>

Signed-off-by: Martin Charette <iam@cinq.com>
Signed-off-by: Bitnami Containers <bitnami-bot@vmware.com>
Co-authored-by: Bitnami Containers <bitnami-bot@vmware.com>
This commit is contained in:
Martin Charette
2022-12-17 06:19:27 -05:00
committed by GitHub
parent 63c4d59d91
commit 4263f07ee4
4 changed files with 9 additions and 5 deletions

View File

@@ -1,7 +1,7 @@
annotations:
category: DeveloperTools
apiVersion: v2
appVersion: 19.0.3
appVersion: 20.0.1
dependencies:
- condition: postgresql.enabled
name: postgresql
@@ -26,4 +26,4 @@ name: keycloak
sources:
- https://github.com/bitnami/containers/tree/main/bitnami/keycloak
- https://github.com/keycloak/keycloak
version: 12.2.0
version: 12.3.0

View File

@@ -342,9 +342,10 @@ The command removes all the Kubernetes components associated with the chart and
### Keycloak Logging parameters
| Name | Description | Value |
| ---------------- | --------------------------------------------------------------- | --------- |
| `logging.output` | Alternates between the default log output format or json format | `default` |
| Name | Description | Value |
| ---------------- | ------------------------------------------------------------------------------ | --------- |
| `logging.output` | Alternates between the default log output format or json format | `default` |
| `logging.level` | Allowed values as documented: FATAL, ERROR, WARN, INFO, DEBUG, TRACE, ALL, OFF | `INFO` |
Specify each parameter using the `--set key=value[,key=value]` argument to `helm install`. For example,

View File

@@ -53,5 +53,6 @@ data:
{{- end }}
{{- if .Values.logging }}
KEYCLOAK_LOG_OUTPUT: {{ .Values.logging.output | quote }}
KC_LOG_LEVEL: {{ .Values.logging.level | quote }}
{{- end }}

View File

@@ -1015,6 +1015,8 @@ cache:
## Keycloak logging configuration
## ref: https://www.keycloak.org/server/logging
## @param logging.output Alternates between the default log output format or json format
## @param logging.level Allowed values as documented: FATAL, ERROR, WARN, INFO, DEBUG, TRACE, ALL, OFF
##
logging:
output: default
level: INFO