restart.yml 2.6 KB

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