upgrade.yml 4.1 KB

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