upgrade_control_plane.yml 3.6 KB

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