upgrade_control_plane.yml 3.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  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. # Docker role (a dependency) should be told not to do anything to installed version
  46. # of docker, we handle this separately during upgrade. (the inventory may have a
  47. # docker_version defined, we don't want to actually do it until later)
  48. docker_protect_installed_version: True
  49. - include: ../../../../common/openshift-cluster/upgrades/pre/verify_control_plane_running.yml
  50. - include: ../../../../common/openshift-cluster/upgrades/pre/verify_upgrade_targets.yml
  51. - include: ../../../../common/openshift-cluster/upgrades/pre/verify_docker_upgrade_targets.yml
  52. - include: ../../../../common/openshift-cluster/upgrades/pre/gate_checks.yml
  53. - include: ../../../../common/openshift-cluster/upgrades/pre/backup_etcd.yml
  54. - name: Exit upgrade if dry-run specified
  55. hosts: oo_all_hosts
  56. tasks:
  57. - fail:
  58. msg: "Pre-upgrade checks completed, exiting due to openshift_upgrade_dry_run variable."
  59. when: openshift_upgrade_dry_run is defined and openshift_upgrade_dry_run | bool
  60. # Separate step so we can execute in parallel and clear out anything unused
  61. # before we get into the serialized upgrade process which will then remove
  62. # remaining images if possible.
  63. - name: Cleanup unused Docker images
  64. hosts: oo_masters_to_config:oo_etcd_to_config
  65. tasks:
  66. - include: ../../../../common/openshift-cluster/upgrades/cleanup_unused_images.yml
  67. - include: ../../../../common/openshift-cluster/upgrades/upgrade_control_plane.yml
  68. vars:
  69. master_config_hook: "v3_3/master_config_upgrade.yml"
  70. - include: ../../../../common/openshift-cluster/upgrades/post_control_plane.yml