validate_restart.yml 2.1 KB

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