upgrade_nodes.yml 2.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. ---
  2. - name: Evacuate and upgrade nodes
  3. hosts: oo_nodes_to_upgrade
  4. # This var must be set with -e on invocation, as it is not a per-host inventory var
  5. # and is evaluated early. Values such as "20%" can also be used.
  6. serial: "{{ openshift_upgrade_nodes_serial | default(1) }}"
  7. any_errors_fatal: true
  8. roles:
  9. - openshift_facts
  10. handlers:
  11. - include: ../../../../roles/openshift_node/handlers/main.yml
  12. static: yes
  13. tasks:
  14. # TODO: To better handle re-trying failed upgrades, it would be nice to check if the node
  15. # or docker actually needs an upgrade before proceeding. Perhaps best to save this until
  16. # we merge upgrade functionality into the base roles and a normal config.yml playbook run.
  17. - name: Determine if node is currently scheduleable
  18. command: >
  19. {{ openshift.common.client_binary }} get node {{ openshift.node.nodename | lower }} -o json
  20. register: node_output
  21. delegate_to: "{{ groups.oo_first_master.0 }}"
  22. changed_when: false
  23. when: inventory_hostname in groups.oo_nodes_to_upgrade
  24. - set_fact:
  25. was_schedulable: "{{ 'unschedulable' not in (node_output.stdout | from_json).spec }}"
  26. when: inventory_hostname in groups.oo_nodes_to_upgrade
  27. - name: Mark unschedulable if host is a node
  28. command: >
  29. {{ openshift.common.admin_binary }} manage-node {{ openshift.node.nodename | lower }} --schedulable=false
  30. delegate_to: "{{ groups.oo_first_master.0 }}"
  31. when: inventory_hostname in groups.oo_nodes_to_upgrade
  32. - name: Evacuate Node for Kubelet upgrade
  33. command: >
  34. {{ openshift.common.admin_binary }} manage-node {{ openshift.node.nodename | lower }} --evacuate --force
  35. delegate_to: "{{ groups.oo_first_master.0 }}"
  36. when: inventory_hostname in groups.oo_nodes_to_upgrade
  37. - include: docker/upgrade.yml
  38. when: l_docker_upgrade is defined and l_docker_upgrade | bool and not openshift.common.is_atomic | bool
  39. - include: "{{ node_config_hook }}"
  40. when: node_config_hook is defined and inventory_hostname in groups.oo_nodes_to_upgrade
  41. - include: rpm_upgrade.yml
  42. vars:
  43. component: "node"
  44. openshift_version: "{{ openshift_pkg_version | default('') }}"
  45. when: inventory_hostname in groups.oo_nodes_to_upgrade and not openshift.common.is_containerized | bool
  46. - include: containerized_node_upgrade.yml
  47. when: inventory_hostname in groups.oo_nodes_to_upgrade and openshift.common.is_containerized | bool
  48. - meta: flush_handlers
  49. - name: Set node schedulability
  50. command: >
  51. {{ openshift.common.admin_binary }} manage-node {{ openshift.node.nodename | lower }} --schedulable=true
  52. delegate_to: "{{ groups.oo_first_master.0 }}"
  53. when: inventory_hostname in groups.oo_nodes_to_upgrade and was_schedulable | bool