mirror of
https://github.com/ansible-middleware/keycloak.git
synced 2025-07-31 09:01:32 -07:00
Add mysql module, bind jgroups to net
This commit is contained in:
parent
9c97baf03b
commit
89a4c722b4
3 changed files with 70 additions and 12 deletions
|
@ -63,6 +63,8 @@ keycloak_jdbc_engine: postgres
|
|||
keycloak_jdbc:
|
||||
postgres:
|
||||
enabled: "{{ keycloak_ha_enabled and keycloak_jdbc_engine == 'postgres' }}"
|
||||
driver_class: org.postgresql.Driver
|
||||
xa_datasource_class: org.postgresql.xa.PGXADataSource
|
||||
driver_module_name: "org.postgresql"
|
||||
driver_module_dir: "{{ keycloak_jboss_home }}/modules/org/postgresql/main"
|
||||
driver_version: 9.4.1212
|
||||
|
@ -73,6 +75,8 @@ keycloak_jdbc:
|
|||
db_password: "{{ postgres_db_pass | default('keycloak-pass') }}"
|
||||
mariadb:
|
||||
enabled: "{{ keycloak_ha_enabled and keycloak_jdbc_engine == 'mariadb' }}"
|
||||
driver_class: org.mariadb.jdbc.Driver
|
||||
xa_datasource_class: org.mariadb.jdbc.MySQLDataSource
|
||||
driver_module_name: "org.mariadb"
|
||||
driver_module_dir: "{{ keycloak_jboss_home }}/modules/org/mariadb/main"
|
||||
driver_version: 2.7.4
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue