upgrade.yml 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136
  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.7'
  15. openshift_upgrade_min: '3.6'
  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. - include: ../../../../openshift-master/private/validate_restart.yml
  68. tags:
  69. - pre_upgrade
  70. - name: Verify upgrade targets
  71. hosts: oo_masters_to_config:oo_nodes_to_upgrade
  72. tasks:
  73. - include: ../pre/verify_upgrade_targets.yml
  74. tags:
  75. - pre_upgrade
  76. - name: Verify docker upgrade targets
  77. hosts: oo_masters_to_config:oo_nodes_to_upgrade:oo_etcd_to_config
  78. tasks:
  79. - include: ../pre/tasks/verify_docker_upgrade_targets.yml
  80. tags:
  81. - pre_upgrade
  82. - include: validator.yml
  83. tags:
  84. - pre_upgrade
  85. - include: ../pre/gate_checks.yml
  86. tags:
  87. - pre_upgrade
  88. # Pre-upgrade completed, nothing after this should be tagged pre_upgrade.
  89. # Separate step so we can execute in parallel and clear out anything unused
  90. # before we get into the serialized upgrade process which will then remove
  91. # remaining images if possible.
  92. - name: Cleanup unused Docker images
  93. hosts: oo_masters_to_config:oo_nodes_to_upgrade:oo_etcd_to_config
  94. tasks:
  95. - include: ../cleanup_unused_images.yml
  96. - include: ../upgrade_control_plane.yml
  97. vars:
  98. master_config_hook: "v3_7/master_config_upgrade.yml"
  99. # All controllers must be stopped at the same time then restarted
  100. - name: Cycle all controller services to force new leader election mode
  101. hosts: oo_masters_to_config
  102. gather_facts: no
  103. tasks:
  104. - name: Stop {{ openshift.common.service_type }}-master-controllers
  105. systemd:
  106. name: "{{ openshift.common.service_type }}-master-controllers"
  107. state: stopped
  108. - name: Start {{ openshift.common.service_type }}-master-controllers
  109. systemd:
  110. name: "{{ openshift.common.service_type }}-master-controllers"
  111. state: started
  112. - include: ../upgrade_nodes.yml
  113. - include: ../post_control_plane.yml