mirror of
https://github.com/ansible-middleware/keycloak.git
synced 2025-04-06 02:40:30 -07:00
Provide config for multiple modcluster proxies
This commit is contained in:
parent
2959cb3cf0
commit
f980d4d1e1
7 changed files with 31 additions and 10 deletions
|
@ -116,7 +116,9 @@ The following variables are _required_ only when `keycloak_ha_enabled` is True:
|
||||||
|
|
||||||
| Variable | Description | Default |
|
| Variable | Description | Default |
|
||||||
|:---------|:------------|:---------|
|
|:---------|:------------|:---------|
|
||||||
|`keycloak_modcluster_url` | URL for the modcluster reverse proxy | `localhost` |
|
|`keycloak_modcluster_url` | _deprecated_ Host for the modcluster reverse proxy | `localhost` |
|
||||||
|
|`keycloak_modcluster_port` | _deprecated_ Port for the modcluster reverse proxy | `6666` |
|
||||||
|
|`keycloak_modcluster_urls` | List of {host,port} dicts for the modcluster reverse proxies | `[ { localhost:6666 } ]` |
|
||||||
|`keycloak_jdbc_engine` | backend database engine when db is enabled: [ postgres, mariadb ] | `postgres` |
|
|`keycloak_jdbc_engine` | backend database engine when db is enabled: [ postgres, mariadb ] | `postgres` |
|
||||||
|`keycloak_infinispan_url` | URL for the infinispan remote-cache server | `localhost:11122` |
|
|`keycloak_infinispan_url` | URL for the infinispan remote-cache server | `localhost:11122` |
|
||||||
|`keycloak_infinispan_user` | username for connecting to infinispan | `supervisor` |
|
|`keycloak_infinispan_user` | username for connecting to infinispan | `supervisor` |
|
||||||
|
|
|
@ -54,8 +54,12 @@ keycloak_auth_client: admin-cli
|
||||||
|
|
||||||
keycloak_force_install: False
|
keycloak_force_install: False
|
||||||
|
|
||||||
### mod_cluster reverse proxy
|
### mod_cluster reverse proxy list
|
||||||
keycloak_modcluster_url: localhost
|
keycloak_modcluster_url: localhost
|
||||||
|
keycloak_modcluster_port: 6666
|
||||||
|
keycloak_modcluster_urls:
|
||||||
|
- host: "{{ keycloak_modcluster_url }}"
|
||||||
|
port: "{{ keycloak_modcluster_port }}"
|
||||||
|
|
||||||
### keycloak frontend url
|
### keycloak frontend url
|
||||||
keycloak_frontend_url: http://localhost:8080/auth
|
keycloak_frontend_url: http://localhost:8080/auth
|
||||||
|
|
|
@ -178,6 +178,18 @@ argument_specs:
|
||||||
default: "localhost"
|
default: "localhost"
|
||||||
description: "URL for the modcluster reverse proxy"
|
description: "URL for the modcluster reverse proxy"
|
||||||
type: "str"
|
type: "str"
|
||||||
|
removed_in_version: "1.4.0"
|
||||||
|
removed_from_collection: "middleware_automation.keycloak"
|
||||||
|
keycloak_modcluster_port:
|
||||||
|
default: 6666
|
||||||
|
description: "Port for the modcluster reverse proxy"
|
||||||
|
type: "int"
|
||||||
|
removed_in_version: "1.4.0"
|
||||||
|
removed_from_collection: "middleware_automation.keycloak"
|
||||||
|
keycloak_modcluster_urls:
|
||||||
|
default: "[ { host: 'localhost', port: 6666 } ]"
|
||||||
|
description: "List of modproxy node URLs in the format { host, port } for the modcluster reverse proxy"
|
||||||
|
type: "list"
|
||||||
keycloak_frontend_url:
|
keycloak_frontend_url:
|
||||||
# line 59 of keycloak/defaults/main.yml
|
# line 59 of keycloak/defaults/main.yml
|
||||||
default: "http://localhost"
|
default: "http://localhost"
|
||||||
|
|
|
@ -1,6 +1,5 @@
|
||||||
---
|
---
|
||||||
# tasks file for keycloak
|
# tasks file for keycloak
|
||||||
|
|
||||||
- name: Check prerequisites
|
- name: Check prerequisites
|
||||||
ansible.builtin.include_tasks: prereqs.yml
|
ansible.builtin.include_tasks: prereqs.yml
|
||||||
tags:
|
tags:
|
||||||
|
|
|
@ -617,7 +617,7 @@
|
||||||
<subsystem xmlns="urn:wildfly:metrics:1.0" security-enabled="false" exposed-subsystems="*" prefix="${wildfly.metrics.prefix:jboss}"/>
|
<subsystem xmlns="urn:wildfly:metrics:1.0" security-enabled="false" exposed-subsystems="*" prefix="${wildfly.metrics.prefix:jboss}"/>
|
||||||
{% if keycloak_modcluster.enabled %}
|
{% if keycloak_modcluster.enabled %}
|
||||||
<subsystem xmlns="urn:jboss:domain:modcluster:5.0">
|
<subsystem xmlns="urn:jboss:domain:modcluster:5.0">
|
||||||
<proxy name="default" advertise="false" listener="ajp" proxies="proxy1">
|
<proxy name="default" advertise="false" listener="ajp" proxies="{{ ['proxy_'] | product(keycloak_modcluster.reverse_proxy_urls | map(attribute='host')) | map('join') | list | join(',') }}">
|
||||||
<dynamic-load-provider>
|
<dynamic-load-provider>
|
||||||
<load-metric type="cpu"/>
|
<load-metric type="cpu"/>
|
||||||
</dynamic-load-provider>
|
</dynamic-load-provider>
|
||||||
|
@ -705,9 +705,11 @@
|
||||||
<remote-destination host="${jboss.mail.server.host:localhost}" port="${jboss.mail.server.port:25}"/>
|
<remote-destination host="${jboss.mail.server.host:localhost}" port="${jboss.mail.server.port:25}"/>
|
||||||
</outbound-socket-binding>
|
</outbound-socket-binding>
|
||||||
{% if keycloak_modcluster.enabled %}
|
{% if keycloak_modcluster.enabled %}
|
||||||
<outbound-socket-binding name="proxy1">
|
{% for modcluster in keycloak_modcluster.reverse_proxy_urls %}
|
||||||
<remote-destination host="{{ keycloak_modcluster.reverse_proxy_url | default('localhost') }}" port="6666"/>
|
<outbound-socket-binding name="proxy_{{ modcluster.host }}">
|
||||||
|
<remote-destination host="{{ modcluster.host }}" port="{{ modcluster.port }}"/>
|
||||||
</outbound-socket-binding>
|
</outbound-socket-binding>
|
||||||
|
{% endfor %}
|
||||||
{% endif %}
|
{% endif %}
|
||||||
<outbound-socket-binding name="remote-cache">
|
<outbound-socket-binding name="remote-cache">
|
||||||
<remote-destination host="{{ keycloak_remotecache.server_name | default('localhost') }}" port="${remote.cache.port:11222}"/>
|
<remote-destination host="{{ keycloak_remotecache.server_name | default('localhost') }}" port="${remote.cache.port:11222}"/>
|
||||||
|
|
|
@ -530,7 +530,7 @@
|
||||||
<subsystem xmlns="urn:wildfly:metrics:1.0" security-enabled="false" exposed-subsystems="*" prefix="${wildfly.metrics.prefix:jboss}"/>
|
<subsystem xmlns="urn:wildfly:metrics:1.0" security-enabled="false" exposed-subsystems="*" prefix="${wildfly.metrics.prefix:jboss}"/>
|
||||||
{% if keycloak_modcluster.enabled %}
|
{% if keycloak_modcluster.enabled %}
|
||||||
<subsystem xmlns="urn:jboss:domain:modcluster:5.0">
|
<subsystem xmlns="urn:jboss:domain:modcluster:5.0">
|
||||||
<proxy name="default" advertise="false" listener="ajp" proxies="proxy1">
|
<proxy name="default" advertise="false" listener="ajp" proxies="{{ ['proxy_'] | product(keycloak_modcluster.reverse_proxy_urls | map(attribute='host')) | map('join') | list | join(',') }}">
|
||||||
<dynamic-load-provider>
|
<dynamic-load-provider>
|
||||||
<load-metric type="cpu"/>
|
<load-metric type="cpu"/>
|
||||||
</dynamic-load-provider>
|
</dynamic-load-provider>
|
||||||
|
@ -605,9 +605,11 @@
|
||||||
<remote-destination host="${jboss.mail.server.host:localhost}" port="${jboss.mail.server.port:25}"/>
|
<remote-destination host="${jboss.mail.server.host:localhost}" port="${jboss.mail.server.port:25}"/>
|
||||||
</outbound-socket-binding>
|
</outbound-socket-binding>
|
||||||
{% if keycloak_modcluster.enabled %}
|
{% if keycloak_modcluster.enabled %}
|
||||||
<outbound-socket-binding name="proxy1">
|
{% for modcluster in keycloak_modcluster.reverse_proxy_urls %}
|
||||||
<remote-destination host="{{ keycloak_modcluster.reverse_proxy_url | default('localhost') }}" port="6666"/>
|
<outbound-socket-binding name="proxy_{{ modcluster.host }}">
|
||||||
|
<remote-destination host="{{ modcluster.host }}" port="{{ modcluster.port }}"/>
|
||||||
</outbound-socket-binding>
|
</outbound-socket-binding>
|
||||||
|
{% endfor %}
|
||||||
{% endif %}
|
{% endif %}
|
||||||
</socket-binding-group>
|
</socket-binding-group>
|
||||||
</server>
|
</server>
|
||||||
|
|
|
@ -60,7 +60,7 @@ keycloak_jdbc:
|
||||||
# reverse proxy mod_cluster
|
# reverse proxy mod_cluster
|
||||||
keycloak_modcluster:
|
keycloak_modcluster:
|
||||||
enabled: "{{ keycloak_ha_enabled }}"
|
enabled: "{{ keycloak_ha_enabled }}"
|
||||||
reverse_proxy_url: "{{ keycloak_modcluster_url }}"
|
reverse_proxy_urls: "{{ keycloak_modcluster_urls }}"
|
||||||
frontend_url: "{{ keycloak_frontend_url }}"
|
frontend_url: "{{ keycloak_frontend_url }}"
|
||||||
|
|
||||||
# infinispan
|
# infinispan
|
||||||
|
|
Loading…
Add table
Reference in a new issue