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>
9 lines
543 B
Plaintext
9 lines
543 B
Plaintext
# Configure datasource to use explicit query timeout in seconds
|
|
/subsystem=datasources/data-source=KeycloakDS/:write-attribute(name=query-timeout,value=${env.DB_QUERY_TIMEOUT:300})
|
|
|
|
# Configure datasource to connection before use
|
|
/subsystem=datasources/data-source=KeycloakDS/:write-attribute(name=validate-on-match,value=${env.DB_VALIDATE_ON_MATCH:true})
|
|
|
|
# Configure datasource to try all other connections before failing
|
|
/subsystem=datasources/data-source=KeycloakDS/:write-attribute(name=use-fast-fail,value=${env.DB_USE_CAST_FAIL:false})
|