config.yml 3.1 KB

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