initialize_nodes_to_upgrade.yml 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. ---
  2. - name: Filter list of nodes to be upgraded if necessary
  3. hosts: oo_first_master
  4. roles:
  5. - lib_openshift
  6. tasks:
  7. - when: openshift_upgrade_nodes_label is defined
  8. block:
  9. - name: Retrieve list of openshift nodes matching upgrade label
  10. oc_obj:
  11. state: list
  12. kind: node
  13. selector: "{{ openshift_upgrade_nodes_label }}"
  14. register: nodes_to_upgrade
  15. - name: Fail if no nodes match openshift_upgrade_nodes_label
  16. fail:
  17. msg: "openshift_upgrade_nodes_label was specified but no nodes matched"
  18. when: nodes_to_upgrade.results.results[0]['items'] | length == 0
  19. # We got a list of nodes with the label, now we need to match these with inventory hosts
  20. # using their openshift.common.hostname fact.
  21. - name: Map labelled nodes to inventory hosts
  22. add_host:
  23. name: "{{ item }}"
  24. groups: temp_nodes_to_upgrade
  25. ansible_ssh_user: "{{ g_ssh_user | default(omit) }}"
  26. ansible_become: "{{ g_sudo | default(omit) }}"
  27. with_items: " {{ groups['oo_nodes_to_config'] }}"
  28. when:
  29. - hostvars[item].openshift is defined
  30. - hostvars[item].openshift.common.hostname | lower in nodes_to_upgrade.results.results[0]['items'] | map(attribute='metadata.name') | list
  31. changed_when: false
  32. # Build up the oo_nodes_to_upgrade group, use the list filtered by label if
  33. # present, otherwise hit all nodes:
  34. - name: Evaluate oo_nodes_to_upgrade
  35. add_host:
  36. name: "{{ item }}"
  37. groups: oo_nodes_to_upgrade
  38. ansible_ssh_user: "{{ g_ssh_user | default(omit) }}"
  39. ansible_become: "{{ g_sudo | default(omit) }}"
  40. when: item not in dedicated_etcds
  41. vars:
  42. dedicated_etcds: "{{ groups['oo_etcd_to_config'] | difference(groups['oo_masters']) }}"
  43. with_items: "{{ groups['temp_nodes_to_upgrade'] | default(groups['oo_nodes_to_config']) }}"
  44. changed_when: False