evaluate_groups.yml 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136
  1. ---
  2. # NOTE: to support scaling, the `masters` and `new_masters` (and analogous for
  3. # `nodes` and `etcd`) groups must be exclusive.
  4. #
  5. # Since Ansible cannot remove a node from a group, the dynamic inventory
  6. # can't e.g. tag all master nodes as part of the `masters` group and then
  7. # add the new ones to `new_masters`. Creating new hosts means refreshing
  8. # the inventory and that would mean bringing all the nodes (old and new)
  9. # into the `masters` group. And that causes the scaleup playbook to fail.
  10. #
  11. # And since the playbooks can't pass data to the dynamic inventory, this
  12. # new/old separation cannot happen there.
  13. #
  14. # So the inventory sets e.g. `openstack_master_nodes` and this playbook
  15. # configures the actual source groups such as `masters`, `new_masters`,
  16. # `nodes`, `etcd`, etc.
  17. - name: Evaluate the OpenStack groups
  18. any_errors_fatal: true
  19. hosts: localhost
  20. connection: local
  21. gather_facts: no
  22. become: no
  23. tasks:
  24. # This will happen when we're deploying a cluster from scratch. Add all
  25. # nodes to the `masters` group.
  26. - name: Create a brand new masters group (no scaling)
  27. add_host:
  28. name: "{{ item }}"
  29. groups: masters
  30. with_items: "{{ groups.openstack_master_nodes | default([]) }}"
  31. changed_when: no
  32. when: >
  33. openshift_openstack_existing is undefined or
  34. openshift_openstack_existing.openstack_master_nodes is undefined or
  35. openshift_openstack_existing.openstack_master_nodes | length == 0
  36. # This will happen when we are scaling an existing cluster. Add the current
  37. # nodes to the `masters` groups.
  38. - name: Create pre-existing masters group
  39. add_host:
  40. name: "{{ item }}"
  41. groups: masters
  42. with_items: "{{ openshift_openstack_existing.openstack_master_nodes }}"
  43. changed_when: no
  44. when:
  45. - openshift_openstack_existing is defined
  46. - openshift_openstack_existing.openstack_master_nodes is defined
  47. - openshift_openstack_existing.openstack_master_nodes | length > 0
  48. # This will happen when we are scaling an existing cluster. Add the
  49. # newly-created nodes to the `new_masters` group.
  50. - name: Create new_masters group
  51. add_host:
  52. name: "{{ item }}"
  53. groups: new_masters
  54. with_items: "{{ groups.openstack_master_nodes | default([]) | difference(groups.masters) }}"
  55. changed_when: no
  56. when:
  57. - openshift_openstack_existing is defined
  58. - openshift_openstack_existing.openstack_master_nodes is defined
  59. - openshift_openstack_existing.openstack_master_nodes | length > 0
  60. - name: Create a brand new etcd group (no scaling)
  61. add_host:
  62. name: "{{ item }}"
  63. groups: etcd
  64. with_items: "{{ groups.openstack_etcd_nodes | default([]) }}"
  65. changed_when: no
  66. when: >
  67. openshift_openstack_existing is undefined or
  68. openshift_openstack_existing.openstack_etcd_nodes is undefined or
  69. openshift_openstack_existing.openstack_etcd_nodes | length == 0
  70. - name: Create pre-existing etcd group
  71. add_host:
  72. name: "{{ item }}"
  73. groups: etcd
  74. with_items: "{{ openshift_openstack_existing.openstack_etcd_nodes }}"
  75. changed_when: no
  76. when:
  77. - openshift_openstack_existing is defined
  78. - openshift_openstack_existing.openstack_etcd_nodes is defined
  79. - openshift_openstack_existing.openstack_etcd_nodes | length > 0
  80. - name: Create new_etcd group
  81. add_host:
  82. name: "{{ item }}"
  83. groups: new_etcd
  84. with_items: "{{ groups.openstack_etcd_nodes | default([]) | difference(groups.etcd) }}"
  85. changed_when: no
  86. when:
  87. - openshift_openstack_existing is defined
  88. - openshift_openstack_existing.openstack_etcd_nodes is defined
  89. - openshift_openstack_existing.openstack_etcd_nodes | length > 0
  90. - name: Create a brand new nodes group (no scaling)
  91. add_host:
  92. name: "{{ item }}"
  93. groups: nodes
  94. with_items: "{{ groups.openstack_nodes | default([]) }}"
  95. changed_when: no
  96. when: >
  97. openshift_openstack_existing is undefined or
  98. openshift_openstack_existing.openstack_nodes is undefined or
  99. openshift_openstack_existing.openstack_nodes | length == 0
  100. - name: Create pre-existing nodes group
  101. add_host:
  102. name: "{{ item }}"
  103. groups: nodes
  104. with_items: "{{ openshift_openstack_existing.openstack_nodes }}"
  105. changed_when: no
  106. when:
  107. - openshift_openstack_existing is defined
  108. - openshift_openstack_existing.openstack_nodes is defined
  109. - openshift_openstack_existing.openstack_nodes | length > 0
  110. - name: Create new_nodes group
  111. add_host:
  112. name: "{{ item }}"
  113. groups: new_nodes
  114. with_items: "{{ groups.openstack_nodes | default([]) | difference(groups.nodes) }}"
  115. changed_when: no
  116. when:
  117. - openshift_openstack_existing is defined
  118. - openshift_openstack_existing.openstack_nodes is defined
  119. - openshift_openstack_existing.openstack_nodes | length > 0
  120. # TODO(shadower): Do we need to add `new_glusterfs` as well? I saw no
  121. # mention in the code.
  122. - name: Create glusterfs group
  123. add_host:
  124. name: "{{ item }}"
  125. groups: glusterfs
  126. with_items: "{{ groups.openstack_cns_nodes | default([]) }}"
  127. changed_when: no