upgrade_nodes.yml 3.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  1. ---
  2. #
  3. # Node Upgrade Playbook
  4. #
  5. # Upgrades nodes only, but requires the control plane to have already been upgraded.
  6. #
  7. - include: ../../../../common/openshift-cluster/upgrades/init.yml
  8. # Configure the upgrade target for the common upgrade tasks:
  9. - hosts: l_oo_all_hosts
  10. tasks:
  11. - set_fact:
  12. openshift_upgrade_target: "{{ '1.3' if deployment_type == 'origin' else '3.3' }}"
  13. openshift_upgrade_min: "{{ '1.2' if deployment_type == 'origin' else '3.2' }}"
  14. # Pre-upgrade
  15. - include: ../../../../common/openshift-cluster/upgrades/initialize_nodes_to_upgrade.yml
  16. - name: Update repos on nodes
  17. hosts: oo_masters_to_config:oo_nodes_to_upgrade:oo_etcd_to_config:oo_lb_to_config
  18. roles:
  19. - openshift_repos
  20. - name: Set openshift_no_proxy_internal_hostnames
  21. hosts: oo_masters_to_config:oo_nodes_to_upgrade
  22. tasks:
  23. - set_fact:
  24. openshift_no_proxy_internal_hostnames: "{{ hostvars | oo_select_keys(groups['oo_nodes_to_upgrade']
  25. | union(groups['oo_masters_to_config'])
  26. | union(groups['oo_etcd_to_config'] | default([])))
  27. | oo_collect('openshift.common.hostname') | default([]) | join (',')
  28. }}"
  29. when: "{{ (openshift_http_proxy is defined or openshift_https_proxy is defined) and
  30. openshift_generate_no_proxy_hosts | default(True) | bool }}"
  31. - include: ../../../../common/openshift-cluster/upgrades/pre/verify_inventory_vars.yml
  32. - include: ../../../../common/openshift-cluster/initialize_openshift_version.yml
  33. vars:
  34. # Request specific openshift_release and let the openshift_version role handle converting this
  35. # to a more specific version, respecting openshift_image_tag and openshift_pkg_version if
  36. # defined, and overriding the normal behavior of protecting the installed version
  37. openshift_release: "{{ openshift_upgrade_target }}"
  38. openshift_protect_installed_version: False
  39. # We skip the docker role at this point in upgrade to prevent
  40. # unintended package, container, or config upgrades which trigger
  41. # docker restarts. At this early stage of upgrade we can assume
  42. # docker is configured and running.
  43. skip_docker_role: True
  44. - name: Verify masters are already upgraded
  45. hosts: oo_masters_to_config
  46. tasks:
  47. - fail: msg="Master running {{ openshift.common.version }} must be upgraded to {{ openshift_version }} before node upgrade can be run."
  48. when: openshift.common.version != openshift_version
  49. - name: Exit upgrade if dry-run specified
  50. hosts: oo_all_hosts
  51. tasks:
  52. - fail:
  53. msg: "Pre-upgrade checks completed, exiting due to openshift_upgrade_dry_run variable."
  54. when: openshift_upgrade_dry_run is defined and openshift_upgrade_dry_run | bool
  55. - include: ../../../../common/openshift-cluster/upgrades/pre/verify_control_plane_running.yml
  56. - include: ../../../../common/openshift-cluster/upgrades/pre/verify_upgrade_targets.yml
  57. - include: ../../../../common/openshift-cluster/upgrades/pre/verify_docker_upgrade_targets.yml
  58. - include: ../../../../common/openshift-cluster/upgrades/pre/gate_checks.yml
  59. # Separate step so we can execute in parallel and clear out anything unused
  60. # before we get into the serialized upgrade process which will then remove
  61. # remaining images if possible.
  62. - name: Cleanup unused Docker images
  63. hosts: oo_nodes_to_upgrade
  64. tasks:
  65. - include: ../../../../common/openshift-cluster/upgrades/cleanup_unused_images.yml
  66. - include: ../../../../common/openshift-cluster/upgrades/upgrade_nodes.yml
  67. vars:
  68. node_config_hook: "v3_3/node_config_upgrade.yml"