upgrade.yml 3.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  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/upgrades/initialize_nodes_to_upgrade.yml
  14. - name: Update repos and initialize facts on all hosts
  15. hosts: oo_masters_to_config:oo_nodes_to_upgrade: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_upgrade
  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. # We skip the docker role at this point in upgrade to prevent
  38. # unintended package, container, or config upgrades which trigger
  39. # docker restarts. At this early stage of upgrade we can assume
  40. # docker is configured and running.
  41. skip_docker_role: True
  42. - include: ../../../../common/openshift-cluster/upgrades/pre/verify_control_plane_running.yml
  43. - include: ../../../../common/openshift-cluster/upgrades/pre/verify_upgrade_targets.yml
  44. - include: ../../../../common/openshift-cluster/upgrades/pre/verify_docker_upgrade_targets.yml
  45. - include: ../../../../common/openshift-cluster/upgrades/pre/gate_checks.yml
  46. - include: ../../../../common/openshift-cluster/upgrades/pre/backup_etcd.yml
  47. - name: Exit upgrade if dry-run specified
  48. hosts: oo_all_hosts
  49. tasks:
  50. - fail:
  51. msg: "Pre-upgrade checks completed, exiting due to openshift_upgrade_dry_run variable."
  52. when: openshift_upgrade_dry_run is defined and openshift_upgrade_dry_run | bool
  53. # Separate step so we can execute in parallel and clear out anything unused
  54. # before we get into the serialized upgrade process which will then remove
  55. # remaining images if possible.
  56. - name: Cleanup unused Docker images
  57. hosts: oo_masters_to_config:oo_nodes_to_upgrade:oo_etcd_to_config
  58. tasks:
  59. - include: ../../../../common/openshift-cluster/upgrades/cleanup_unused_images.yml
  60. - include: ../../../../common/openshift-cluster/upgrades/upgrade_control_plane.yml
  61. vars:
  62. master_config_hook: "v3_3/master_config_upgrade.yml"
  63. - include: ../../../../common/openshift-cluster/upgrades/upgrade_nodes.yml
  64. vars:
  65. node_config_hook: "v3_3/node_config_upgrade.yml"
  66. - include: ../../../openshift-master/restart.yml
  67. - include: ../../../../common/openshift-cluster/upgrades/post_control_plane.yml