mirror of
https://github.com/helm/charts.git
synced 2026-08-22 13:57:51 +00:00
* [stable/keycloak] Upgrade Keycloak to 4.8.3.Final and related changes Added support for more reliable database connection handling. Referenced missing distributed caches in ha.cli configuration. Configured events-listener SPI to log login events to stdout for analysis Signed-off-by: Thomas Darimont <thomas.darimont@gmail.com> * Add line break at end of file Signed-off-by: Reinhard Nägele <unguiculus@gmail.com> * Update README.md Signed-off-by: Reinhard Nägele <unguiculus@gmail.com>
11 lines
834 B
Plaintext
11 lines
834 B
Plaintext
# Allow log level to be configured via environment variable
|
|
/subsystem=logging/console-handler=CONSOLE:write-attribute(name=level, value=${env.WILDFLY_LOGLEVEL:INFO})
|
|
/subsystem=logging/root-logger=ROOT:write-attribute(name=level, value=${env.WILDFLY_LOGLEVEL:INFO})
|
|
|
|
# Add dedicated eventsListener config element to allow configuring elements.
|
|
/subsystem=keycloak-server/spi=eventsListener:add()
|
|
/subsystem=keycloak-server/spi=eventsListener/provider=jboss-logging:add(enabled=true)
|
|
# Propagate success events to INFO instead of DEBUG, to expose successful logins for log analysis
|
|
/subsystem=keycloak-server/spi=eventsListener/provider=jboss-logging:write-attribute(name=properties.success-level,value=info)
|
|
/subsystem=keycloak-server/spi=eventsListener/provider=jboss-logging:write-attribute(name=properties.error-level,value=warn)
|