restart handler: orchestrate

main
Guido Grazioli 2022-09-28 16:30:26 +02:00
parent a7fbce2990
commit be582171ce
No known key found for this signature in database
GPG Key ID: 22C8C31EF2BC093B
1 changed files with 20 additions and 0 deletions

View File

@ -5,3 +5,23 @@
enabled: yes enabled: yes
state: restarted state: restarted
become: yes become: yes
delegate_to: "{{ ansible_play_hosts | first }}"
run_once: True
- name: "Wait until {{ keycloak.service_name }} becomes active {{ keycloak.health_url }}"
ansible.builtin.uri:
url: "{{ keycloak.health_url }}"
register: keycloak_status
until: keycloak_status.status == 200
delegate_to: "{{ ansible_play_hosts | first }}"
run_once: True
retries: 25
delay: 10
- name: "Restart and enable {{ keycloak.service_name }} service"
ansible.builtin.systemd:
name: keycloak
enabled: yes
state: restarted
become: yes
when: and inventory_hostname != ansible_play_hosts | first