validate_restart.yml 2.2 KB

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