AMW-528 Deployment fails in keycloak_quarkus due to missing escalation variables

This commit is contained in:
Ranabir Chakraborty
2026-05-20 23:51:34 +05:30
parent 4cc360052e
commit 0b2f2786dd
36 changed files with 106 additions and 106 deletions

View File

@@ -5,7 +5,7 @@
enabled: true
state: restarted
daemon_reload: true
become: "{{ keycloak_restart_require_privilege_escalation }}"
become: "{{ keycloak_restart_require_privilege_escalation | default(true) }}"
delegate_to: "{{ ansible_play_hosts | first }}"
run_once: true
@@ -24,5 +24,5 @@
name: keycloak
enabled: true
state: restarted
become: "{{ keycloak_restart_require_privilege_escalation }}"
become: "{{ keycloak_restart_require_privilege_escalation | default(true) }}"
when: inventory_hostname != ansible_play_hosts | first