config.yml 3.2 KB

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