upgrade_control_plane.yml 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. ---
  2. #
  3. # Control Plane Upgrade Playbook
  4. #
  5. # Upgrades masters and Docker (only on standalone etcd hosts)
  6. #
  7. # This upgrade does not include:
  8. # - node service running on masters
  9. # - docker running on masters
  10. # - node service running on dedicated nodes
  11. #
  12. # You can run the upgrade_nodes.yml playbook after this to upgrade these components separately.
  13. #
  14. - import_playbook: ../init.yml
  15. vars:
  16. l_upgrade_no_switch_firewall_hosts: "oo_masters_to_config:oo_etcd_to_config:oo_lb_to_config"
  17. l_init_fact_hosts: "oo_masters_to_config:oo_etcd_to_config:oo_lb_to_config"
  18. when: not skip_version_info | default(false)
  19. - name: Configure the upgrade target for the common upgrade tasks
  20. hosts: oo_masters_to_config:oo_etcd_to_config:oo_lb_to_config
  21. tasks:
  22. - set_fact:
  23. openshift_upgrade_target: '3.8'
  24. openshift_upgrade_min: '3.7'
  25. - import_playbook: ../pre/config.yml
  26. # These vars a meant to exclude oo_nodes from plays that would otherwise include
  27. # them by default.
  28. vars:
  29. l_openshift_version_set_hosts: "oo_etcd_to_config:oo_masters_to_config:!oo_first_master"
  30. l_openshift_version_check_hosts: "oo_masters_to_config:!oo_first_master"
  31. l_upgrade_repo_hosts: "oo_masters_to_config:oo_etcd_to_config:oo_lb_to_config"
  32. l_upgrade_no_proxy_hosts: "oo_masters_to_config"
  33. l_upgrade_health_check_hosts: "oo_masters_to_config:oo_etcd_to_config:oo_lb_to_config"
  34. l_upgrade_verify_targets_hosts: "oo_masters_to_config"
  35. l_upgrade_docker_target_hosts: "oo_masters_to_config:oo_etcd_to_config"
  36. l_upgrade_excluder_hosts: "oo_masters_to_config"
  37. openshift_protect_installed_version: False
  38. - import_playbook: validator.yml
  39. - name: Flag pre-upgrade checks complete for hosts without errors
  40. hosts: oo_masters_to_config:oo_etcd_to_config
  41. tasks:
  42. - set_fact:
  43. pre_upgrade_complete: True
  44. # Pre-upgrade completed
  45. - import_playbook: ../upgrade_control_plane.yml
  46. # All controllers must be stopped at the same time then restarted
  47. - name: Cycle all controller services to force new leader election mode
  48. hosts: oo_masters_to_config
  49. gather_facts: no
  50. roles:
  51. - role: openshift_facts
  52. tasks:
  53. - name: Stop {{ openshift_service_type }}-master-controllers
  54. systemd:
  55. name: "{{ openshift_service_type }}-master-controllers"
  56. state: stopped
  57. - name: Start {{ openshift_service_type }}-master-controllers
  58. systemd:
  59. name: "{{ openshift_service_type }}-master-controllers"
  60. state: started
  61. - import_playbook: ../post_control_plane.yml