restart.yml 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151
  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: Determine which masters are currently active
  64. hosts: oo_masters_to_config
  65. any_errors_fatal: true
  66. tasks:
  67. - name: Check master service status
  68. command: >
  69. systemctl is-active {{ openshift.common.service_type }}-master
  70. register: active_check_output
  71. when: openshift.master.cluster_method | default(None) == 'pacemaker'
  72. failed_when: false
  73. changed_when: false
  74. - set_fact:
  75. is_active: "{{ active_check_output.stdout == 'active' }}"
  76. when: openshift.master.cluster_method | default(None) == 'pacemaker'
  77. - name: Evaluate master groups
  78. hosts: localhost
  79. become: no
  80. tasks:
  81. - fail:
  82. msg: >
  83. Did not receive active status from any masters. Please verify pacemaker cluster.
  84. when: "{{ hostvars[groups.oo_first_master.0].openshift.master.cluster_method | default(None) == 'pacemaker' and 'True' not in (hostvars
  85. | oo_select_keys(groups['oo_masters_to_config'])
  86. | oo_collect('is_active')
  87. | list) }}"
  88. - name: Evaluate oo_active_masters
  89. add_host:
  90. name: "{{ item }}"
  91. groups: oo_active_masters
  92. ansible_ssh_user: "{{ g_ssh_user | default(omit) }}"
  93. ansible_become: "{{ g_sudo | default(omit) }}"
  94. with_items: "{{ groups.oo_masters_to_config | default([]) }}"
  95. when: (hostvars[item]['is_active'] | default(false)) | bool
  96. - name: Evaluate oo_current_masters
  97. add_host:
  98. name: "{{ item }}"
  99. groups: oo_current_masters
  100. ansible_ssh_user: "{{ g_ssh_user | default(omit) }}"
  101. ansible_become: "{{ g_sudo | default(omit) }}"
  102. with_items: "{{ groups.oo_masters_to_config | default([]) }}"
  103. when: (hostvars[item]['current_host'] | default(false)) | bool
  104. - name: Validate pacemaker cluster
  105. hosts: oo_active_masters
  106. tasks:
  107. - name: Retrieve pcs status
  108. command: pcs status
  109. register: pcs_status_output
  110. changed_when: false
  111. - fail:
  112. msg: >
  113. Pacemaker cluster validation failed. One or more nodes are not online.
  114. when: not (pcs_status_output.stdout | validate_pcs_cluster(groups.oo_masters_to_config)) | bool
  115. - name: Restart masters
  116. hosts: oo_masters_to_config:!oo_active_masters:!oo_current_masters
  117. vars:
  118. openshift_master_ha: "{{ groups.oo_masters_to_config | length > 1 }}"
  119. serial: 1
  120. tasks:
  121. - include: restart_hosts.yml
  122. when: openshift.common.rolling_restart_mode == 'system'
  123. - include: restart_services.yml
  124. when: openshift.common.rolling_restart_mode == 'services'
  125. - name: Restart active masters
  126. hosts: oo_active_masters
  127. serial: 1
  128. tasks:
  129. - include: restart_hosts_pacemaker.yml
  130. when: openshift.common.rolling_restart_mode == 'system'
  131. - include: restart_services_pacemaker.yml
  132. when: openshift.common.rolling_restart_mode == 'services'
  133. - name: Restart current masters
  134. hosts: oo_current_masters
  135. serial: 1
  136. tasks:
  137. - include: restart_hosts.yml
  138. when: openshift.common.rolling_restart_mode == 'system'
  139. - include: restart_services.yml
  140. when: openshift.common.rolling_restart_mode == 'services'