upgrade.yml 3.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  1. ---
  2. #
  3. # Full Control Plane + Nodes Upgrade
  4. #
  5. - include: ../../../../common/openshift-cluster/upgrades/init.yml
  6. # Configure the upgrade target for the common upgrade tasks:
  7. - hosts: l_oo_all_hosts
  8. tasks:
  9. - set_fact:
  10. openshift_upgrade_target: "{{ '1.3' if deployment_type == 'origin' else '3.3' }}"
  11. openshift_upgrade_min: "{{ '1.2' if deployment_type == 'origin' else '3.2' }}"
  12. # Pre-upgrade
  13. - include: ../../../../common/openshift-cluster/initialize_facts.yml
  14. - name: Update repos and initialize facts on all hosts
  15. hosts: oo_masters_to_config:oo_nodes_to_config:oo_etcd_to_config:oo_lb_to_config
  16. roles:
  17. - openshift_repos
  18. - name: Set openshift_no_proxy_internal_hostnames
  19. hosts: oo_masters_to_config:oo_nodes_to_config
  20. tasks:
  21. - set_fact:
  22. openshift_no_proxy_internal_hostnames: "{{ hostvars | oo_select_keys(groups['oo_nodes_to_config']
  23. | union(groups['oo_masters_to_config'])
  24. | union(groups['oo_etcd_to_config'] | default([])))
  25. | oo_collect('openshift.common.hostname') | default([]) | join (',')
  26. }}"
  27. when: "{{ (openshift_http_proxy is defined or openshift_https_proxy is defined) and
  28. openshift_generate_no_proxy_hosts | default(True) | bool }}"
  29. - include: ../../../../common/openshift-cluster/upgrades/pre/verify_inventory_vars.yml
  30. - include: ../../../../common/openshift-cluster/initialize_openshift_version.yml
  31. vars:
  32. # Request specific openshift_release and let the openshift_version role handle converting this
  33. # to a more specific version, respecting openshift_image_tag and openshift_pkg_version if
  34. # defined, and overriding the normal behavior of protecting the installed version
  35. openshift_release: "{{ openshift_upgrade_target }}"
  36. openshift_protect_installed_version: False
  37. # Docker role (a dependency) should be told not to do anything to installed version
  38. # of docker, we handle this separately during upgrade. (the inventory may have a
  39. # docker_version defined, we don't want to actually do it until later)
  40. docker_protect_installed_version: True
  41. - include: ../../../../common/openshift-cluster/upgrades/pre/verify_control_plane_running.yml
  42. - include: ../../../../common/openshift-cluster/upgrades/pre/verify_upgrade_targets.yml
  43. - include: ../../../../common/openshift-cluster/upgrades/pre/verify_docker_upgrade_targets.yml
  44. - include: ../../../../common/openshift-cluster/upgrades/pre/gate_checks.yml
  45. - include: ../../../../common/openshift-cluster/upgrades/pre/backup_etcd.yml
  46. - name: Exit upgrade if dry-run specified
  47. hosts: oo_all_hosts
  48. tasks:
  49. - fail:
  50. msg: "Pre-upgrade checks completed, exiting due to openshift_upgrade_dry_run variable."
  51. when: openshift_upgrade_dry_run is defined and openshift_upgrade_dry_run | bool
  52. # Separate step so we can execute in parallel and clear out anything unused
  53. # before we get into the serialized upgrade process which will then remove
  54. # remaining images if possible.
  55. - name: Cleanup unused Docker images
  56. hosts: oo_masters_to_config:oo_nodes_to_config:oo_etcd_to_config
  57. tasks:
  58. - include: ../../../../common/openshift-cluster/upgrades/cleanup_unused_images.yml
  59. - include: ../../../../common/openshift-cluster/upgrades/upgrade_control_plane.yml
  60. vars:
  61. master_config_hook: "v3_3/master_config_upgrade.yml"
  62. - include: ../../../../common/openshift-cluster/upgrades/upgrade_nodes.yml
  63. vars:
  64. node_config_hook: "v3_3/node_config_upgrade.yml"
  65. - include: ../../../openshift-master/restart.yml
  66. - include: ../../../../common/openshift-cluster/upgrades/post_control_plane.yml