evaluate_groups.yml 6.7 KB

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