Skip to content

Commit 4602d25

Browse files
Merge pull request #310 from world-direct/fix/309
ansible-core 2.19 compatibility
2 parents c1bf972 + 8b2ef22 commit 4602d25

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

roles/keycloak_quarkus/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ Role Defaults
9898
| Variable | Description | Default |
9999
|:---------|:------------|:--------|
100100
|`keycloak_quarkus_hostname`| Address at which is the server exposed. Can be a full URL, or just a hostname. When only hostname is provided, scheme, port and context path are resolved from the request. | |
101-
|`keycloak_quarkus_hostname_admin`| Set the base URL for accessing the administration console, including scheme, host, port and path | |
101+
|`keycloak_quarkus_hostname_admin`| Set the base URL for accessing the administration console, including scheme, host, port and path | `` |
102102
|`keycloak_quarkus_hostname_strict`| Disables dynamically resolving the hostname from request headers | `true` |
103103
|`keycloak_quarkus_hostname_backchannel_dynamic`| Enables dynamic resolving of backchannel URLs, including hostname, scheme, port and context path. Set to true if your application accesses Keycloak via a private network. If set to true, hostname option needs to be specified as a full URL. | `false` |
104104
|`keycloak_quarkus_hostname_strict_backchannel`| Deprecated, use (the inverted!)`keycloak_quarkus_hostname_backchannel_dynamic` instead. | |

roles/keycloak_quarkus/defaults/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ keycloak_quarkus_systemd_wait_for_delay: 10
8888

8989
### keycloak frontend url
9090
keycloak_quarkus_hostname:
91-
keycloak_quarkus_hostname_admin:
91+
keycloak_quarkus_hostname_admin: ""
9292

9393
### Set the path relative to / for serving resources. The path must start with a /
9494
### (set to `/auth` for retrocompatibility with pre-quarkus releases)

roles/keycloak_quarkus/tasks/restart/serial.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
- name: "Restart services in serial, with optional healtch check (keycloak_quarkus_restart_health_check)"
33
throttle: 1
44
block:
5-
- name: "Restart and enable {{ keycloak.service_name }} service on {{ item }}"
5+
- name: "Restart and enable {{ keycloak.service_name }} service"
66
ansible.builtin.include_tasks:
77
file: restart.yml
88
apply:

0 commit comments

Comments
 (0)