upgrade_control_plane.yml 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138
  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: ../init.yml
  15. tags:
  16. - pre_upgrade
  17. - name: Configure the upgrade target for the common upgrade tasks
  18. hosts: oo_all_hosts
  19. tags:
  20. - pre_upgrade
  21. tasks:
  22. - set_fact:
  23. openshift_upgrade_target: '3.8'
  24. openshift_upgrade_min: '3.7'
  25. # Pre-upgrade
  26. - include: ../initialize_nodes_to_upgrade.yml
  27. tags:
  28. - pre_upgrade
  29. - include: ../pre/verify_etcd3_backend.yml
  30. tags:
  31. - pre_upgrade
  32. - name: Update repos on control plane hosts
  33. hosts: oo_masters_to_config:oo_etcd_to_config:oo_lb_to_config
  34. tags:
  35. - pre_upgrade
  36. roles:
  37. - openshift_repos
  38. - name: Set openshift_no_proxy_internal_hostnames
  39. hosts: oo_masters_to_config:oo_nodes_to_upgrade
  40. tags:
  41. - pre_upgrade
  42. tasks:
  43. - set_fact:
  44. openshift_no_proxy_internal_hostnames: "{{ hostvars | oo_select_keys(groups['oo_nodes_to_config']
  45. | union(groups['oo_masters_to_config'])
  46. | union(groups['oo_etcd_to_config'] | default([])))
  47. | oo_collect('openshift.common.hostname') | default([]) | join (',')
  48. }}"
  49. when:
  50. - openshift_http_proxy is defined or openshift_https_proxy is defined
  51. - openshift_generate_no_proxy_hosts | default(True) | bool
  52. - include: ../pre/verify_inventory_vars.yml
  53. tags:
  54. - pre_upgrade
  55. - include: ../pre/verify_health_checks.yml
  56. tags:
  57. - pre_upgrade
  58. - include: ../pre/verify_control_plane_running.yml
  59. tags:
  60. - pre_upgrade
  61. - include: ../disable_master_excluders.yml
  62. tags:
  63. - pre_upgrade
  64. - include: ../../../../init/version.yml
  65. tags:
  66. - pre_upgrade
  67. vars:
  68. # Request specific openshift_release and let the openshift_version role handle converting this
  69. # to a more specific version, respecting openshift_image_tag and openshift_pkg_version if
  70. # defined, and overriding the normal behavior of protecting the installed version
  71. openshift_release: "{{ openshift_upgrade_target }}"
  72. openshift_protect_installed_version: False
  73. - include: ../../../../openshift-master/private/validate_restart.yml
  74. tags:
  75. - pre_upgrade
  76. - name: Verify upgrade targets
  77. hosts: oo_masters_to_config
  78. tasks:
  79. - include: ../pre/verify_upgrade_targets.yml
  80. tags:
  81. - pre_upgrade
  82. - name: Verify docker upgrade targets
  83. hosts: oo_masters_to_config:oo_etcd_to_config
  84. tasks:
  85. - include: ../pre/tasks/verify_docker_upgrade_targets.yml
  86. tags:
  87. - pre_upgrade
  88. - include: validator.yml
  89. tags:
  90. - pre_upgrade
  91. - include: ../pre/gate_checks.yml
  92. tags:
  93. - pre_upgrade
  94. # Pre-upgrade completed, nothing after this should be tagged pre_upgrade.
  95. # Separate step so we can execute in parallel and clear out anything unused
  96. # before we get into the serialized upgrade process which will then remove
  97. # remaining images if possible.
  98. - name: Cleanup unused Docker images
  99. hosts: oo_masters_to_config:oo_etcd_to_config
  100. tasks:
  101. - include: ../cleanup_unused_images.yml
  102. - include: ../upgrade_control_plane.yml
  103. vars:
  104. master_config_hook: "v3_7/master_config_upgrade.yml"
  105. # All controllers must be stopped at the same time then restarted
  106. - name: Cycle all controller services to force new leader election mode
  107. hosts: oo_masters_to_config
  108. gather_facts: no
  109. tasks:
  110. - name: Stop {{ openshift.common.service_type }}-master-controllers
  111. systemd:
  112. name: "{{ openshift.common.service_type }}-master-controllers"
  113. state: stopped
  114. - name: Start {{ openshift.common.service_type }}-master-controllers
  115. systemd:
  116. name: "{{ openshift.common.service_type }}-master-controllers"
  117. state: started
  118. - include: ../post_control_plane.yml