evaluate_groups.yml 6.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187
  1. ---
  2. - name: Populate config host groups
  3. hosts: localhost
  4. connection: local
  5. gather_facts: no
  6. tasks:
  7. - name: Load group name mapping variables
  8. include_vars: vars/cluster_hosts.yml
  9. - name: Evaluate groups - g_etcd_hosts or g_new_etcd_hosts required
  10. fail:
  11. msg: This playbook requires g_etcd_hosts or g_new_etcd_hosts to be set
  12. when: g_etcd_hosts is not defined and g_new_etcd_hosts is not defined
  13. - name: Evaluate groups - g_master_hosts or g_new_master_hosts required
  14. fail:
  15. msg: This playbook requires g_master_hosts or g_new_master_hosts to be set
  16. when: g_master_hosts is not defined and g_new_master_hosts is not defined
  17. - name: Evaluate groups - g_node_hosts or g_new_node_hosts required
  18. fail:
  19. msg: This playbook requires g_node_hosts or g_new_node_hosts to be set
  20. when: g_node_hosts is not defined and g_new_node_hosts is not defined
  21. - name: Evaluate groups - g_lb_hosts required
  22. fail:
  23. msg: This playbook requires g_lb_hosts to be set
  24. when: g_lb_hosts is not defined
  25. - name: Evaluate groups - g_nfs_hosts required
  26. fail:
  27. msg: This playbook requires g_nfs_hosts to be set
  28. when: g_nfs_hosts is not defined
  29. - name: Evaluate groups - g_nfs_hosts is single host
  30. fail:
  31. msg: The nfs group must be limited to one host
  32. when: g_nfs_hosts | default([]) | length > 1
  33. - name: Evaluate groups - g_glusterfs_hosts required
  34. fail:
  35. msg: This playbook requires g_glusterfs_hosts to be set
  36. when: g_glusterfs_hosts is not defined
  37. - name: Evaluate groups - Fail if no etcd hosts group is defined
  38. fail:
  39. msg: >
  40. Running etcd as an embedded service is no longer supported.
  41. when:
  42. - g_etcd_hosts | default([]) | length not in [3,1]
  43. - not (openshift_node_bootstrap | default(False))
  44. - name: Evaluate oo_all_hosts
  45. add_host:
  46. name: "{{ item }}"
  47. groups: oo_all_hosts
  48. ansible_ssh_user: "{{ g_ssh_user | default(omit) }}"
  49. ansible_become: "{{ g_sudo | default(omit) }}"
  50. with_items: "{{ g_all_hosts | default([]) }}"
  51. changed_when: no
  52. - name: Evaluate oo_masters
  53. add_host:
  54. name: "{{ item }}"
  55. groups: oo_masters
  56. ansible_ssh_user: "{{ g_ssh_user | default(omit) }}"
  57. ansible_become: "{{ g_sudo | default(omit) }}"
  58. with_items: "{{ g_master_hosts | union(g_new_master_hosts) | default([]) }}"
  59. changed_when: no
  60. - name: Evaluate oo_first_master
  61. add_host:
  62. name: "{{ g_master_hosts[0] }}"
  63. groups: oo_first_master
  64. ansible_ssh_user: "{{ g_ssh_user | default(omit) }}"
  65. ansible_become: "{{ g_sudo | default(omit) }}"
  66. when: g_master_hosts|length > 0
  67. changed_when: no
  68. - name: Evaluate oo_new_etcd_to_config
  69. add_host:
  70. name: "{{ item }}"
  71. groups: oo_new_etcd_to_config
  72. ansible_ssh_user: "{{ g_ssh_user | default(omit) }}"
  73. ansible_become: "{{ g_sudo | default(omit) }}"
  74. with_items: "{{ g_new_etcd_hosts | default([]) }}"
  75. changed_when: no
  76. - name: Evaluate oo_masters_to_config
  77. add_host:
  78. name: "{{ item }}"
  79. groups: oo_masters_to_config
  80. ansible_ssh_user: "{{ g_ssh_user | default(omit) }}"
  81. ansible_become: "{{ g_sudo | default(omit) }}"
  82. with_items: "{{ g_new_master_hosts | default(g_master_hosts | default([], true), true) }}"
  83. changed_when: no
  84. - name: Evaluate oo_etcd_to_config
  85. add_host:
  86. name: "{{ item }}"
  87. groups: oo_etcd_to_config
  88. ansible_ssh_user: "{{ g_ssh_user | default(omit) }}"
  89. ansible_become: "{{ g_sudo | default(omit) }}"
  90. with_items: "{{ g_etcd_hosts | default([]) }}"
  91. changed_when: no
  92. - name: Evaluate oo_first_etcd
  93. add_host:
  94. name: "{{ g_etcd_hosts[0] }}"
  95. groups: oo_first_etcd
  96. ansible_ssh_user: "{{ g_ssh_user | default(omit) }}"
  97. ansible_become: "{{ g_sudo | default(omit) }}"
  98. when: g_etcd_hosts|length > 0
  99. changed_when: no
  100. # We use two groups one for hosts we're upgrading which doesn't include embedded etcd
  101. # The other for backing up which includes the embedded etcd host, there's no need to
  102. # upgrade embedded etcd that just happens when the master is updated.
  103. - name: Evaluate oo_etcd_hosts_to_upgrade
  104. add_host:
  105. name: "{{ item }}"
  106. groups: oo_etcd_hosts_to_upgrade
  107. with_items: "{{ groups.oo_etcd_to_config if groups.oo_etcd_to_config is defined and groups.oo_etcd_to_config | length > 0 else [] }}"
  108. changed_when: False
  109. - name: Evaluate oo_etcd_hosts_to_backup
  110. add_host:
  111. name: "{{ item }}"
  112. groups: oo_etcd_hosts_to_backup
  113. with_items: "{{ groups.oo_etcd_to_config if groups.oo_etcd_to_config is defined and groups.oo_etcd_to_config | length > 0 else (groups.oo_first_master | default([])) }}"
  114. changed_when: False
  115. - name: Evaluate oo_nodes_to_config
  116. add_host:
  117. name: "{{ item }}"
  118. groups: oo_nodes_to_config
  119. ansible_ssh_user: "{{ g_ssh_user | default(omit) }}"
  120. ansible_become: "{{ g_sudo | default(omit) }}"
  121. with_items: "{{ g_new_node_hosts | default(g_node_hosts | default([], true), true) }}"
  122. changed_when: no
  123. # Skip adding the master to oo_nodes_to_config when g_new_node_hosts is
  124. - name: Add master to oo_nodes_to_config
  125. add_host:
  126. name: "{{ item }}"
  127. groups: oo_nodes_to_config
  128. ansible_ssh_user: "{{ g_ssh_user | default(omit) }}"
  129. ansible_become: "{{ g_sudo | default(omit) }}"
  130. with_items: "{{ g_master_hosts | default([]) }}"
  131. when: g_nodeonmaster | default(false) | bool and not g_new_node_hosts | default(false) | bool
  132. changed_when: no
  133. - name: Evaluate oo_lb_to_config
  134. add_host:
  135. name: "{{ item }}"
  136. groups: oo_lb_to_config
  137. ansible_ssh_user: "{{ g_ssh_user | default(omit) }}"
  138. ansible_become: "{{ g_sudo | default(omit) }}"
  139. with_items: "{{ g_lb_hosts | default([]) }}"
  140. changed_when: no
  141. - name: Evaluate oo_nfs_to_config
  142. add_host:
  143. name: "{{ item }}"
  144. groups: oo_nfs_to_config
  145. ansible_ssh_user: "{{ g_ssh_user | default(omit) }}"
  146. ansible_become: "{{ g_sudo | default(omit) }}"
  147. with_items: "{{ g_nfs_hosts | default([]) }}"
  148. changed_when: no
  149. - name: Evaluate oo_glusterfs_to_config
  150. add_host:
  151. name: "{{ item }}"
  152. groups: oo_glusterfs_to_config
  153. ansible_ssh_user: "{{ g_ssh_user | default(omit) }}"
  154. ansible_become: "{{ g_sudo | default(omit) }}"
  155. with_items: "{{ g_glusterfs_hosts | union(g_glusterfs_registry_hosts | default([])) }}"
  156. changed_when: no
  157. - name: Evaluate oo_etcd_to_migrate
  158. add_host:
  159. name: "{{ item }}"
  160. groups: oo_etcd_to_migrate
  161. ansible_ssh_user: "{{ g_ssh_user | default(omit) }}"
  162. ansible_become: "{{ g_sudo | default(omit) }}"
  163. with_items: "{{ groups.oo_etcd_to_config if groups.oo_etcd_to_config | default([]) | length != 0 else (groups.oo_first_master |default([]))}}"
  164. changed_when: no