validate_restart.yml 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. ---
  2. - name: Validate configuration for rolling restart
  3. hosts: oo_masters_to_config
  4. roles:
  5. - openshift_facts
  6. tasks:
  7. - fail:
  8. msg: "openshift_rolling_restart_mode must be set to either 'services' or 'system'"
  9. when: openshift_rolling_restart_mode is defined and openshift_rolling_restart_mode not in ["services", "system"]
  10. # Creating a temp file on localhost, we then check each system that will
  11. # be rebooted to see if that file exists, if so we know we're running
  12. # ansible on a machine that needs a reboot, and we need to error out.
  13. - name: Create temp file on localhost
  14. hosts: localhost
  15. connection: local
  16. gather_facts: no
  17. tasks:
  18. - local_action: command mktemp
  19. register: mktemp
  20. changed_when: false
  21. - name: Check if temp file exists on any masters
  22. hosts: oo_masters_to_config
  23. tasks:
  24. - stat:
  25. path: "{{ hostvars.localhost.mktemp.stdout }}"
  26. get_checksum: false
  27. get_attributes: false
  28. get_mime: false
  29. register: exists
  30. changed_when: false
  31. when: "'stdout' in hostvars.localhost.mktemp"
  32. - name: Cleanup temp file on localhost
  33. hosts: localhost
  34. connection: local
  35. gather_facts: no
  36. tasks:
  37. - file: path="{{ hostvars.localhost.mktemp.stdout }}" state=absent
  38. changed_when: false
  39. when: "'stdout' in hostvars.localhost.mktemp"
  40. - name: Warn if restarting the system where ansible is running
  41. hosts: oo_masters_to_config
  42. tasks:
  43. - pause:
  44. prompt: >
  45. Warning: Running playbook from a host that will be restarted!
  46. Press CTRL+C and A to abort playbook execution. You may
  47. continue by pressing ENTER but the playbook will stop
  48. executing after this system has been restarted and services
  49. must be verified manually. To only restart services, set
  50. openshift_master_rolling_restart_mode=services in host
  51. inventory and relaunch the playbook.
  52. when:
  53. - "'stat' in exists"
  54. - exists.stat.exists and openshift_rolling_restart_mode | default('services') == 'system'
  55. - set_fact:
  56. current_host: "{{ exists.stat.exists }}"
  57. when:
  58. - "'stat' in exists"
  59. - openshift_rolling_restart_mode | default('services') == 'system'