upgrade_control_plane.yml 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  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. - name: Configure the upgrade target for the common upgrade tasks
  18. hosts: oo_masters_to_config:oo_etcd_to_config:oo_lb_to_config
  19. tasks:
  20. - set_fact:
  21. openshift_upgrade_target: '3.9'
  22. openshift_upgrade_min: '3.7'
  23. - import_playbook: ../pre/config.yml
  24. vars:
  25. l_upgrade_repo_hosts: "oo_masters_to_config:oo_etcd_to_config:oo_lb_to_config"
  26. l_upgrade_no_proxy_hosts: "oo_masters_to_config"
  27. l_upgrade_health_check_hosts: "oo_masters_to_config:oo_etcd_to_config:oo_lb_to_config"
  28. l_upgrade_verify_targets_hosts: "oo_masters_to_config"
  29. l_upgrade_docker_target_hosts: "oo_masters_to_config:oo_etcd_to_config"
  30. l_upgrade_excluder_hosts: "oo_masters_to_config"
  31. - import_playbook: validator.yml
  32. - name: Flag pre-upgrade checks complete for hosts without errors
  33. hosts: oo_masters_to_config:oo_etcd_to_config
  34. tasks:
  35. - set_fact:
  36. pre_upgrade_complete: True
  37. # Pre-upgrade completed
  38. - import_playbook: ../upgrade_control_plane.yml
  39. vars:
  40. master_config_hook: "v3_7/master_config_upgrade.yml"
  41. # All controllers must be stopped at the same time then restarted
  42. - name: Cycle all controller services to force new leader election mode
  43. hosts: oo_masters_to_config
  44. gather_facts: no
  45. roles:
  46. - role: openshift_facts
  47. tasks:
  48. - name: Stop {{ openshift.common.service_type }}-master-controllers
  49. systemd:
  50. name: "{{ openshift.common.service_type }}-master-controllers"
  51. state: stopped
  52. - name: Start {{ openshift.common.service_type }}-master-controllers
  53. systemd:
  54. name: "{{ openshift.common.service_type }}-master-controllers"
  55. state: started
  56. - import_playbook: ../post_control_plane.yml