upgrade.yml 3.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  1. ---
  2. #
  3. # Full Control Plane + Nodes Upgrade
  4. #
  5. - include: ../../../../common/openshift-cluster/upgrades/init.yml
  6. tags:
  7. - pre_upgrade
  8. # Configure the upgrade target for the common upgrade tasks:
  9. - hosts: l_oo_all_hosts
  10. tags:
  11. - pre_upgrade
  12. tasks:
  13. - set_fact:
  14. openshift_upgrade_target: "{{ '1.4' if deployment_type == 'origin' else '3.4' }}"
  15. openshift_upgrade_min: "{{ '1.3' if deployment_type == 'origin' else '3.3' }}"
  16. # Pre-upgrade
  17. - include: ../../../../common/openshift-cluster/upgrades/initialize_nodes_to_upgrade.yml
  18. tags:
  19. - pre_upgrade
  20. - name: Update repos and initialize facts on all hosts
  21. hosts: oo_masters_to_config:oo_nodes_to_upgrade:oo_etcd_to_config:oo_lb_to_config
  22. tags:
  23. - pre_upgrade
  24. roles:
  25. - openshift_repos
  26. - name: Set openshift_no_proxy_internal_hostnames
  27. hosts: oo_masters_to_config:oo_nodes_to_upgrade
  28. tags:
  29. - pre_upgrade
  30. tasks:
  31. - set_fact:
  32. openshift_no_proxy_internal_hostnames: "{{ hostvars | oo_select_keys(groups['oo_nodes_to_config']
  33. | union(groups['oo_masters_to_config'])
  34. | union(groups['oo_etcd_to_config'] | default([])))
  35. | oo_collect('openshift.common.hostname') | default([]) | join (',')
  36. }}"
  37. when: "{{ (openshift_http_proxy is defined or openshift_https_proxy is defined) and
  38. openshift_generate_no_proxy_hosts | default(True) | bool }}"
  39. - include: ../../../../common/openshift-cluster/upgrades/pre/verify_inventory_vars.yml
  40. tags:
  41. - pre_upgrade
  42. - include: ../../../../common/openshift-cluster/initialize_openshift_version.yml
  43. tags:
  44. - pre_upgrade
  45. vars:
  46. # Request specific openshift_release and let the openshift_version role handle converting this
  47. # to a more specific version, respecting openshift_image_tag and openshift_pkg_version if
  48. # defined, and overriding the normal behavior of protecting the installed version
  49. openshift_release: "{{ openshift_upgrade_target }}"
  50. openshift_protect_installed_version: False
  51. # We skip the docker role at this point in upgrade to prevent
  52. # unintended package, container, or config upgrades which trigger
  53. # docker restarts. At this early stage of upgrade we can assume
  54. # docker is configured and running.
  55. skip_docker_role: True
  56. - include: ../../../../common/openshift-cluster/upgrades/pre/verify_control_plane_running.yml
  57. tags:
  58. - pre_upgrade
  59. - include: ../../../../common/openshift-cluster/upgrades/pre/verify_upgrade_targets.yml
  60. tags:
  61. - pre_upgrade
  62. - include: ../../../../common/openshift-cluster/upgrades/pre/verify_docker_upgrade_targets.yml
  63. tags:
  64. - pre_upgrade
  65. - include: ../../../../common/openshift-cluster/upgrades/pre/gate_checks.yml
  66. tags:
  67. - pre_upgrade
  68. # Pre-upgrade completed, nothing after this should be tagged pre_upgrade.
  69. # Separate step so we can execute in parallel and clear out anything unused
  70. # before we get into the serialized upgrade process which will then remove
  71. # remaining images if possible.
  72. - name: Cleanup unused Docker images
  73. hosts: oo_masters_to_config:oo_nodes_to_upgrade:oo_etcd_to_config
  74. tasks:
  75. - include: ../../../../common/openshift-cluster/upgrades/cleanup_unused_images.yml
  76. - include: ../../../../common/openshift-cluster/upgrades/upgrade_control_plane.yml
  77. - include: ../../../../common/openshift-cluster/upgrades/upgrade_nodes.yml
  78. - include: ../../../../common/openshift-cluster/upgrades/post_control_plane.yml