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. - 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. - import_playbook: ../disable_excluders.yml
  23. - import_playbook: ../../../../init/version.yml
  24. vars:
  25. # Request specific openshift_release and let the openshift_version role handle converting this
  26. # to a more specific version, respecting openshift_image_tag and openshift_pkg_version if
  27. # defined, and overriding the normal behavior of protecting the installed version
  28. openshift_release: "{{ openshift_upgrade_target }}"
  29. # openshift_protect_installed_version is passed n via upgrade_control_plane.yml
  30. # l_openshift_version_set_hosts is passed via upgrade_control_plane.yml
  31. - name: OpenShift Health Checks
  32. hosts: "{{ l_upgrade_health_check_hosts }}"
  33. any_errors_fatal: true
  34. roles:
  35. - openshift_health_checker
  36. vars:
  37. - r_openshift_health_checker_playbook_context: upgrade
  38. post_tasks:
  39. - name: Run health checks (upgrade)
  40. action: openshift_health_check
  41. args:
  42. checks:
  43. - disk_availability
  44. - memory_availability
  45. - docker_image_availability
  46. - import_playbook: verify_cluster.yml
  47. # If we're only upgrading nodes, we need to ensure masters are already upgraded
  48. - name: Verify masters are already upgraded
  49. hosts: oo_masters_to_config
  50. tasks:
  51. - fail: msg="Master running {{ openshift_current_version }} must be upgraded to {{ openshift_version }} before node upgrade can be run."
  52. when:
  53. - l_upgrade_nodes_only | default(False) | bool
  54. - not (openshift_current_version | default('0.0') is match(openshift_version))
  55. # If we're only upgrading nodes, skip this.
  56. - import_playbook: ../../../../openshift-master/private/validate_restart.yml
  57. when: not (l_upgrade_nodes_only | default(False)) | bool
  58. - name: Verify upgrade targets
  59. hosts: "{{ l_upgrade_verify_targets_hosts }}"
  60. roles:
  61. - role: openshift_facts
  62. tasks:
  63. - import_tasks: verify_upgrade_targets.yml
  64. - name: Verify docker upgrade targets
  65. hosts: "{{ l_upgrade_docker_target_hosts }}"
  66. tasks:
  67. - import_role:
  68. name: container_runtime
  69. tasks_from: docker_upgrade_check.yml
  70. when: docker_upgrade | default(True) | bool