upgrade_nodes.yml 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109
  1. ---
  2. #
  3. # Node Upgrade Playbook
  4. #
  5. # Upgrades nodes only, but requires the control plane to have already been upgraded.
  6. #
  7. - include: ../init.yml
  8. tags:
  9. - pre_upgrade
  10. - name: Configure the upgrade target for the common upgrade tasks
  11. hosts: oo_all_hosts
  12. tags:
  13. - pre_upgrade
  14. tasks:
  15. - set_fact:
  16. openshift_upgrade_target: '3.7'
  17. openshift_upgrade_min: '3.6'
  18. # Pre-upgrade
  19. - include: ../initialize_nodes_to_upgrade.yml
  20. tags:
  21. - pre_upgrade
  22. - name: Update repos on nodes
  23. hosts: oo_masters_to_config:oo_nodes_to_upgrade:oo_etcd_to_config:oo_lb_to_config
  24. roles:
  25. - openshift_repos
  26. tags:
  27. - pre_upgrade
  28. - name: Set openshift_no_proxy_internal_hostnames
  29. hosts: oo_masters_to_config:oo_nodes_to_upgrade
  30. tags:
  31. - pre_upgrade
  32. tasks:
  33. - set_fact:
  34. openshift_no_proxy_internal_hostnames: "{{ hostvars | oo_select_keys(groups['oo_nodes_to_upgrade']
  35. | union(groups['oo_masters_to_config'])
  36. | union(groups['oo_etcd_to_config'] | default([])))
  37. | oo_collect('openshift.common.hostname') | default([]) | join (',')
  38. }}"
  39. when:
  40. - openshift_http_proxy is defined or openshift_https_proxy is defined
  41. - openshift_generate_no_proxy_hosts | default(True) | bool
  42. - include: ../pre/verify_inventory_vars.yml
  43. tags:
  44. - pre_upgrade
  45. - include: ../pre/verify_health_checks.yml
  46. tags:
  47. - pre_upgrade
  48. - include: ../disable_node_excluders.yml
  49. tags:
  50. - pre_upgrade
  51. - include: ../../../../init/version.yml
  52. tags:
  53. - pre_upgrade
  54. vars:
  55. # Request specific openshift_release and let the openshift_version role handle converting this
  56. # to a more specific version, respecting openshift_image_tag and openshift_pkg_version if
  57. # defined, and overriding the normal behavior of protecting the installed version
  58. openshift_release: "{{ openshift_upgrade_target }}"
  59. openshift_protect_installed_version: False
  60. - name: Verify masters are already upgraded
  61. hosts: oo_masters_to_config
  62. tags:
  63. - pre_upgrade
  64. tasks:
  65. - fail: msg="Master running {{ openshift.common.version }} must be upgraded to {{ openshift_version }} before node upgrade can be run."
  66. when: openshift.common.version != openshift_version
  67. - include: ../pre/verify_control_plane_running.yml
  68. tags:
  69. - pre_upgrade
  70. - name: Verify upgrade targets
  71. hosts: 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_nodes_to_upgrade
  78. tasks:
  79. - include: ../pre/tasks/verify_docker_upgrade_targets.yml
  80. tags:
  81. - pre_upgrade
  82. - include: ../pre/gate_checks.yml
  83. tags:
  84. - pre_upgrade
  85. # Pre-upgrade completed, nothing after this should be tagged pre_upgrade.
  86. # Separate step so we can execute in parallel and clear out anything unused
  87. # before we get into the serialized upgrade process which will then remove
  88. # remaining images if possible.
  89. - name: Cleanup unused Docker images
  90. hosts: oo_nodes_to_upgrade
  91. tasks:
  92. - include: ../cleanup_unused_images.yml
  93. - include: ../upgrade_nodes.yml