upgrade_nodes.yml 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  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. - docker
  11. handlers:
  12. - include: ../../../../roles/openshift_node/handlers/main.yml
  13. static: yes
  14. pre_tasks:
  15. # TODO: To better handle re-trying failed upgrades, it would be nice to check if the node
  16. # or docker actually needs an upgrade before proceeding. Perhaps best to save this until
  17. # we merge upgrade functionality into the base roles and a normal config.yml playbook run.
  18. - name: Determine if node is currently scheduleable
  19. command: >
  20. {{ openshift.common.client_binary }} get node {{ openshift.node.nodename | lower }} -o json
  21. register: node_output
  22. delegate_to: "{{ groups.oo_first_master.0 }}"
  23. changed_when: false
  24. when: inventory_hostname in groups.oo_nodes_to_upgrade
  25. - set_fact:
  26. was_schedulable: "{{ 'unschedulable' not in (node_output.stdout | from_json).spec }}"
  27. when: inventory_hostname in groups.oo_nodes_to_upgrade
  28. - name: Mark unschedulable if host is a node
  29. command: >
  30. {{ openshift.common.client_binary }} adm manage-node {{ openshift.node.nodename | lower }} --schedulable=false
  31. delegate_to: "{{ groups.oo_first_master.0 }}"
  32. when: inventory_hostname in groups.oo_nodes_to_upgrade
  33. # NOTE: There is a transient "object has been modified" error here, allow a couple
  34. # retries for a more reliable upgrade.
  35. register: node_unsched
  36. until: node_unsched.rc == 0
  37. retries: 3
  38. delay: 1
  39. - name: Evacuate Node for Kubelet upgrade
  40. command: >
  41. {{ openshift.common.client_binary }} adm manage-node {{ openshift.node.nodename | lower }} --evacuate --force
  42. delegate_to: "{{ groups.oo_first_master.0 }}"
  43. when: inventory_hostname in groups.oo_nodes_to_upgrade
  44. tasks:
  45. - include: docker/upgrade.yml
  46. when: l_docker_upgrade is defined and l_docker_upgrade | bool and not openshift.common.is_atomic | bool
  47. - include: "{{ node_config_hook }}"
  48. when: node_config_hook is defined and inventory_hostname in groups.oo_nodes_to_upgrade
  49. - include: rpm_upgrade.yml
  50. vars:
  51. component: "node"
  52. openshift_version: "{{ openshift_pkg_version | default('') }}"
  53. when: inventory_hostname in groups.oo_nodes_to_upgrade and not openshift.common.is_containerized | bool
  54. - include: containerized_node_upgrade.yml
  55. when: inventory_hostname in groups.oo_nodes_to_upgrade and openshift.common.is_containerized | bool
  56. - meta: flush_handlers
  57. - name: Set node schedulability
  58. command: >
  59. {{ openshift.common.client_binary }} adm manage-node {{ openshift.node.nodename | lower }} --schedulable=true
  60. delegate_to: "{{ groups.oo_first_master.0 }}"
  61. when: inventory_hostname in groups.oo_nodes_to_upgrade and was_schedulable | bool
  62. register: node_sched
  63. until: node_sched.rc == 0
  64. retries: 3
  65. delay: 1