upgrade_nodes.yml 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  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. # Docker role (a dependency) should be told not to do anything to installed version
  40. # of docker, we handle this separately during upgrade. (the inventory may have a
  41. # docker_version defined, we don't want to actually do it until later)
  42. docker_protect_installed_version: True
  43. - name: Verify masters are already upgraded
  44. hosts: oo_masters_to_config
  45. tasks:
  46. - fail: msg="Master running {{ openshift.common.version }} must be upgraded to {{ openshift_version }} before node upgrade can be run."
  47. when: openshift.common.version != openshift_version
  48. - name: Exit upgrade if dry-run specified
  49. hosts: oo_all_hosts
  50. tasks:
  51. - fail:
  52. msg: "Pre-upgrade checks completed, exiting due to openshift_upgrade_dry_run variable."
  53. when: openshift_upgrade_dry_run is defined and openshift_upgrade_dry_run | bool
  54. - include: ../../../../common/openshift-cluster/upgrades/pre/verify_control_plane_running.yml
  55. - include: ../../../../common/openshift-cluster/upgrades/pre/verify_upgrade_targets.yml
  56. - include: ../../../../common/openshift-cluster/upgrades/pre/verify_docker_upgrade_targets.yml
  57. - include: ../../../../common/openshift-cluster/upgrades/pre/gate_checks.yml
  58. # Separate step so we can execute in parallel and clear out anything unused
  59. # before we get into the serialized upgrade process which will then remove
  60. # remaining images if possible.
  61. - name: Cleanup unused Docker images
  62. hosts: oo_nodes_to_upgrade
  63. tasks:
  64. - include: ../../../../common/openshift-cluster/upgrades/cleanup_unused_images.yml
  65. - include: ../../../../common/openshift-cluster/upgrades/upgrade_nodes.yml
  66. vars:
  67. node_config_hook: "v3_3/node_config_upgrade.yml"