validate_restart.yml 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  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. become: no
  24. gather_facts: no
  25. tasks:
  26. - local_action: command mktemp
  27. register: mktemp
  28. changed_when: false
  29. - name: Check if temp file exists on any masters
  30. hosts: oo_masters_to_config
  31. tasks:
  32. - stat: path="{{ hostvars.localhost.mktemp.stdout }}"
  33. register: exists
  34. changed_when: false
  35. - name: Cleanup temp file on localhost
  36. hosts: localhost
  37. connection: local
  38. become: no
  39. gather_facts: no
  40. tasks:
  41. - file: path="{{ hostvars.localhost.mktemp.stdout }}" state=absent
  42. changed_when: false
  43. - name: Warn if restarting the system where ansible is running
  44. hosts: oo_masters_to_config
  45. tasks:
  46. - pause:
  47. prompt: >
  48. Warning: Running playbook from a host that will be restarted!
  49. Press CTRL+C and A to abort playbook execution. You may
  50. continue by pressing ENTER but the playbook will stop
  51. executing after this system has been restarted and services
  52. must be verified manually. To only restart services, set
  53. openshift_master_rolling_restart_mode=services in host
  54. inventory and relaunch the playbook.
  55. when: exists.stat.exists and openshift.common.rolling_restart_mode == 'system'
  56. - set_fact:
  57. current_host: "{{ exists.stat.exists }}"
  58. when: openshift.common.rolling_restart_mode == 'system'