restart_hosts.yml 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839
  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. # WARNING: This process is riddled with weird behavior.
  10. # Workaround for https://github.com/ansible/ansible/issues/21269
  11. - set_fact:
  12. wait_for_host: "{{ ansible_host }}"
  13. # Ansible's blog documents this *without* the port, which appears to now
  14. # just wait until the timeout value and then proceed without checking anything.
  15. # port is now required.
  16. #
  17. # However neither ansible_ssh_port or ansible_port are reliably defined, likely
  18. # only if overridden. Assume a default of 22.
  19. - name: Wait for master to restart
  20. local_action:
  21. module: wait_for
  22. host="{{ wait_for_host }}"
  23. state=started
  24. delay=10
  25. timeout=600
  26. port="{{ ansible_port | default(ansible_ssh_port | default(22,boolean=True),boolean=True) }}"
  27. # Now that ssh is back up we can wait for API on the remote system,
  28. # avoiding some potential connection issues from local system:
  29. - name: Wait for master API to come back online
  30. wait_for:
  31. host: "{{ openshift.common.hostname }}"
  32. state: started
  33. delay: 10
  34. port: "{{ openshift.master.api_port }}"
  35. timeout: 600