upgrade_control_plane.yml 2.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  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. - name: Configure the upgrade target for the common upgrade tasks
  19. hosts: oo_masters_to_config:oo_etcd_to_config:oo_lb_to_config
  20. tasks:
  21. - set_fact:
  22. openshift_upgrade_target: '3.7'
  23. openshift_upgrade_min: '3.6'
  24. - import_playbook: ../pre/config.yml
  25. # These vars a meant to exclude oo_nodes from plays that would otherwise include
  26. # them by default.
  27. vars:
  28. l_openshift_version_set_hosts: "oo_etcd_to_config:oo_masters_to_config:!oo_first_master"
  29. l_openshift_version_check_hosts: "oo_masters_to_config:!oo_first_master"
  30. l_upgrade_repo_hosts: "oo_masters_to_config:oo_etcd_to_config:oo_lb_to_config"
  31. l_upgrade_no_proxy_hosts: "oo_masters_to_config"
  32. l_upgrade_health_check_hosts: "oo_masters_to_config:oo_etcd_to_config:oo_lb_to_config"
  33. l_upgrade_verify_targets_hosts: "oo_masters_to_config"
  34. l_upgrade_docker_target_hosts: "oo_masters_to_config:oo_etcd_to_config"
  35. l_upgrade_excluder_hosts: "oo_masters_to_config"
  36. openshift_protect_installed_version: False
  37. - import_playbook: validator.yml
  38. - name: Flag pre-upgrade checks complete for hosts without errors
  39. hosts: oo_masters_to_config:oo_etcd_to_config
  40. tasks:
  41. - set_fact:
  42. pre_upgrade_complete: True
  43. # Pre-upgrade completed
  44. - import_playbook: ../upgrade_control_plane.yml
  45. vars:
  46. master_config_hook: "v3_7/master_config_upgrade.yml"
  47. # this must occur after the control plane is upgraded because systemd service
  48. # names are changed
  49. - name: Configure API aggregation on masters
  50. hosts: oo_masters_to_config
  51. serial: 1
  52. roles:
  53. - role: openshift_facts
  54. tasks:
  55. - include_tasks: ../../../../openshift-master/private/tasks/wire_aggregator.yml
  56. # All controllers must be stopped at the same time then restarted
  57. - name: Cycle all controller services to force new leader election mode
  58. hosts: oo_masters_to_config
  59. gather_facts: no
  60. roles:
  61. - role: openshift_facts
  62. tasks:
  63. - name: Stop {{ openshift_service_type }}-master-controllers
  64. systemd:
  65. name: "{{ openshift_service_type }}-master-controllers"
  66. state: stopped
  67. - name: Start {{ openshift_service_type }}-master-controllers
  68. systemd:
  69. name: "{{ openshift_service_type }}-master-controllers"
  70. state: started
  71. - import_playbook: ../post_control_plane.yml