config.yml 2.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. ---
  2. # Pre-upgrade
  3. - import_playbook: ../initialize_nodes_to_upgrade.yml
  4. - import_playbook: verify_cluster.yml
  5. - name: Update repos on upgrade hosts
  6. hosts: "{{ l_upgrade_repo_hosts }}"
  7. roles:
  8. - openshift_repos
  9. - name: Set openshift_no_proxy_internal_hostnames
  10. hosts: "{{ l_upgrade_no_proxy_hosts }}"
  11. tasks:
  12. - set_fact:
  13. openshift_no_proxy_internal_hostnames: "{{ hostvars | lib_utils_oo_select_keys(groups['oo_nodes_to_config']
  14. | union(groups['oo_masters_to_config'])
  15. | union(groups['oo_etcd_to_config'] | default([])))
  16. | lib_utils_oo_collect('openshift.common.hostname') | default([]) | join (',')
  17. }}"
  18. when:
  19. - openshift_http_proxy is defined or openshift_https_proxy is defined
  20. - openshift_generate_no_proxy_hosts | default(True) | bool
  21. - name: OpenShift Health Checks
  22. hosts: "{{ l_upgrade_health_check_hosts }}"
  23. any_errors_fatal: true
  24. roles:
  25. - openshift_health_checker
  26. vars:
  27. - r_openshift_health_checker_playbook_context: upgrade
  28. post_tasks:
  29. - name: Run health checks (upgrade)
  30. action: openshift_health_check
  31. args:
  32. checks:
  33. - disk_availability
  34. - memory_availability
  35. - docker_image_availability
  36. - import_playbook: ../disable_excluders.yml
  37. - import_playbook: ../../../../init/version.yml
  38. vars:
  39. # Request specific openshift_release and let the openshift_version role handle converting this
  40. # to a more specific version, respecting openshift_image_tag and openshift_pkg_version if
  41. # defined, and overriding the normal behavior of protecting the installed version
  42. openshift_release: "{{ openshift_upgrade_target }}"
  43. openshift_protect_installed_version: False
  44. # If we're only upgrading nodes, we need to ensure masters are already upgraded
  45. - name: Verify masters are already upgraded
  46. hosts: oo_masters_to_config
  47. tasks:
  48. - fail: msg="Master running {{ openshift.common.version }} must be upgraded to {{ openshift_version }} before node upgrade can be run."
  49. when:
  50. - l_upgrade_nodes_only | default(False) | bool
  51. - openshift.common.version != openshift_version
  52. # If we're only upgrading nodes, skip this.
  53. - import_playbook: ../../../../openshift-master/private/validate_restart.yml
  54. when: not (l_upgrade_nodes_only | default(False)) | bool
  55. - name: Verify upgrade targets
  56. hosts: "{{ l_upgrade_verify_targets_hosts }}"
  57. roles:
  58. - role: openshift_facts
  59. tasks:
  60. - include_tasks: verify_upgrade_targets.yml
  61. - name: Verify docker upgrade targets
  62. hosts: "{{ l_upgrade_docker_target_hosts }}"
  63. tasks:
  64. - include_role:
  65. name: container_runtime
  66. tasks_from: docker_upgrade_check.yml