restart_hosts.yml 482 B

123456789101112131415161718
  1. ---
  2. - name: Restart master system
  3. # https://github.com/ansible/ansible/issues/10616
  4. shell: sleep 2 && shutdown -r now "OpenShift Ansible master rolling restart"
  5. async: 1
  6. poll: 0
  7. ignore_errors: true
  8. become: yes
  9. # Ensure the api_port is available.
  10. - name: Wait for master API to come back online
  11. become: no
  12. local_action:
  13. module: wait_for
  14. host="{{ openshift.common.hostname }}"
  15. state=started
  16. delay=10
  17. port="{{ openshift.master.api_port }}"