middleware_automation.keycloak Release Notes
+middleware_automation.keycloak Release Notes
This changelog describes changes after version 0.2.6.
v2.2.0-devel
+v2.2.0-devel
Major Changes
+Major Changes
Add support for configuration key store #189
Minor Changes
+Minor Changes
Add
wait_for_portandwait_for_logsystemd unit logic #199Keystore-based vault SPI configuration #196
New
keycloak_quarkus_hostname_strict_httpsparameter #195
+Providers config and custom providers #201
Remove administrator credentials from files once keycloak is bootstrapped #197
Update keycloak to 24.0 #194
v2.1.2
+v2.1.2
Release Summary
+Release Summary
Internal release, documentation or test changes only.
v2.1.1
-Minor Changes
+v2.1.1
+Minor Changes
Bugfixes
+Bugfixes
v2.1.0
-Major Changes
+v2.1.0
+Major Changes
Implement infinispan TCPPING discovery protocol #159
Minor Changes
+Minor Changes
Breaking Changes / Porting Guide
+Breaking Changes / Porting Guide
keycloak_quarkus: renamed infinispan host list configuration #157
Bugfixes
+Bugfixes
keycloak_quarkus: fix custom JAVA_HOME parameter name #171
v2.0.2
-Minor Changes
+v2.0.2
+Minor Changes
Bugfixes
+Bugfixes
v2.0.1
-Minor Changes
+v2.0.1
+Minor Changes
Bugfixes
+Bugfixes
keycloak_quarkus: template requires lowercase boolean values #138
v2.0.0
-Minor Changes
+v2.0.0
+Minor Changes
Breaking Changes / Porting Guide
+Breaking Changes / Porting Guide
v1.3.0
-Major Changes
+v1.3.0
+Major Changes
Run service as
keycloak_service_user#106
Minor Changes
+Minor Changes
Bugfixes
+Bugfixes
keycloak_quarkus: fix validation failure upon port configuration change #113
v1.2.8
-Minor Changes
+v1.2.8
+Minor Changes
Bugfixes
+Bugfixes
v1.2.7
-Minor Changes
+v1.2.7
+Minor Changes
v1.2.6
-Minor Changes
+v1.2.6
+Minor Changes
Bugfixes
+Bugfixes
Handle WFLYCTL0117 when background validation millis is 0 #90
v1.2.5
-Minor Changes
+v1.2.5
+Minor Changes
v1.2.4
-Minor Changes
+v1.2.4
+Minor Changes
Bugfixes
+Bugfixes
v1.2.1
-Minor Changes
+v1.2.1
+Minor Changes
Allow to setup keycloak HA cluster without remote cache store #68
Bugfixes
+Bugfixes
Pass attributes to realm clients #69
v1.2.0
-Major Changes
+v1.2.0
+Major Changes
Provide config for multiple modcluster proxies #60
Minor Changes
+Minor Changes
v1.1.1
-Bugfixes
+v1.1.1
+Bugfixes
keycloak-quarkus: fix
cache-config-filepath in keycloak.conf.j2 template #53
v1.1.0
-Minor Changes
+v1.1.0
+Minor Changes
Breaking Changes / Porting Guide
+Breaking Changes / Porting Guide
Rename variables from
infinispan_prefix tokeycloak_infinispan_#42
Bugfixes
+Bugfixes
keycloak_quarkus: fix /var/log/keycloak symlink to keycloak log directory #44
v1.0.7
-Breaking Changes / Porting Guide
+v1.0.7
+Breaking Changes / Porting Guide
keycloak_quarkus: use absolute path for certificate files #39
Bugfixes
+Bugfixes
keycloak_quarkus: use become for tasks that will otherwise fail #38
v1.0.6
-Bugfixes
+v1.0.6
+Bugfixes
v1.0.5
-Minor Changes
+v1.0.5
+Minor Changes
Update config options: keycloak and quarkus #32
v1.0.4
-Release Summary
+v1.0.4
+Release Summary
Internal release, documentation or test changes only.
v1.0.3
-Major Changes
+v1.0.3
+Major Changes
New role for installing keycloak >= 17.0.0 (quarkus) #29
Minor Changes
+Minor Changes
Add
keycloak_config_override_templateparameter for passing a custom xml config template #30
Bugfixes
+Bugfixes
Make sure systemd unit starts with selected java JVM #31
v1.0.2
-Minor Changes
+v1.0.2
+Minor Changes
Bugfixes
+Bugfixes
Set
keycloak_frontend_urldefault according to other defaults #25
v1.0.1
-Release Summary
+v1.0.1
+Release Summary
Minor enhancements, bug and documentation fixes.
Major Changes
+Major Changes
Apply latest cumulative patch of RH-SSO automatically when new parameter
keycloak_rhsso_apply_patchesistrue#18
Minor Changes
+Minor Changes
Clustered installs now perform database initialization on first node to avoid locking issues #17
v1.0.0
-Release Summary
+v1.0.0
+Release Summary
This is the first stable release of the middleware_automation.keycloak collection.
Configuring providers
+Variable |
+Description |
+Default |
+
|---|---|---|
|
+List of provider definitions; see below |
+
|
+
Provider definition:
+keycloak_quarkus_providers:
+ - id: http-client # required
+ spi: connections # required if url is not specified
+ default: true # optional, whether to set default for spi, default false
+ restart: true # optional, whether to restart, default true
+ url: https://.../.../custom_spi.jar # optional, url for download
+ properties: # optional, list of key-values
+ - key: default-connection-pool-size
+ value: 10
+the definition above will generate the following build command:
+bin/kc.sh build --spi-connections-provider=http-client --spi-connections-http-client-default-connection-pool-size=10
+