upgrade_nodes.yml 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115
  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. # We skip the docker role at this point in upgrade to prevent
  61. # unintended package, container, or config upgrades which trigger
  62. # docker restarts. At this early stage of upgrade we can assume
  63. # docker is configured and running.
  64. skip_docker_role: True
  65. - name: Verify masters are already upgraded
  66. hosts: oo_masters_to_config
  67. tags:
  68. - pre_upgrade
  69. tasks:
  70. - fail: msg="Master running {{ openshift.common.version }} must be upgraded to {{ openshift_version }} before node upgrade can be run."
  71. when: openshift.common.version != openshift_version
  72. - include: ../pre/verify_control_plane_running.yml
  73. tags:
  74. - pre_upgrade
  75. - name: Verify upgrade targets
  76. hosts: 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_nodes_to_upgrade
  83. tasks:
  84. - include: ../pre/tasks/verify_docker_upgrade_targets.yml
  85. tags:
  86. - pre_upgrade
  87. - include: ../pre/gate_checks.yml
  88. tags:
  89. - pre_upgrade
  90. # Pre-upgrade completed, nothing after this should be tagged pre_upgrade.
  91. # Separate step so we can execute in parallel and clear out anything unused
  92. # before we get into the serialized upgrade process which will then remove
  93. # remaining images if possible.
  94. - name: Cleanup unused Docker images
  95. hosts: oo_nodes_to_upgrade
  96. tasks:
  97. - include: ../cleanup_unused_images.yml
  98. - include: ../upgrade_nodes.yml