initialize_nodes_to_upgrade.yml 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. ---
  2. - name: Filter list of nodes to be upgraded if necessary
  3. hosts: oo_first_master
  4. tasks:
  5. - name: Retrieve list of openshift nodes matching upgrade label
  6. command: >
  7. {{ openshift.common.client_binary }}
  8. get nodes
  9. --config={{ openshift.common.config_base }}/master/admin.kubeconfig
  10. --selector={{ openshift_upgrade_nodes_label }}
  11. -o jsonpath='{.items[*].metadata.name}'
  12. register: matching_nodes
  13. changed_when: false
  14. when: openshift_upgrade_nodes_label is defined
  15. - set_fact:
  16. nodes_to_upgrade: "{{ matching_nodes.stdout.split(' ') }}"
  17. when: openshift_upgrade_nodes_label is defined
  18. # We got a list of nodes with the label, now we need to match these with inventory hosts
  19. # using their openshift.common.hostname fact.
  20. - name: Map labelled nodes to inventory hosts
  21. add_host:
  22. name: "{{ item }}"
  23. groups: temp_nodes_to_upgrade
  24. ansible_ssh_user: "{{ g_ssh_user | default(omit) }}"
  25. ansible_become: "{{ g_sudo | default(omit) }}"
  26. with_items: " {{ groups['oo_nodes_to_config'] }}"
  27. when: openshift_upgrade_nodes_label is defined and hostvars[item].openshift.common.hostname in nodes_to_upgrade
  28. changed_when: false
  29. # Build up the oo_nodes_to_upgrade group, use the list filtered by label if
  30. # present, otherwise hit all nodes:
  31. - name: Evaluate oo_nodes_to_upgrade
  32. add_host:
  33. name: "{{ item }}"
  34. groups: oo_nodes_to_upgrade
  35. ansible_ssh_user: "{{ g_ssh_user | default(omit) }}"
  36. ansible_become: "{{ g_sudo | default(omit) }}"
  37. with_items: "{{ groups['temp_nodes_to_upgrade'] | default(groups['oo_nodes_to_config']) }}"