upgrade.yml 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. ---
  2. #
  3. # Full Control Plane + Nodes Upgrade
  4. #
  5. - import_playbook: ../init.yml
  6. tags:
  7. - pre_upgrade
  8. - name: Configure the upgrade target for the common upgrade tasks
  9. hosts: oo_all_hosts
  10. tags:
  11. - pre_upgrade
  12. tasks:
  13. - set_fact:
  14. openshift_upgrade_target: '3.8'
  15. openshift_upgrade_min: '3.7'
  16. - import_playbook: ../pre/config.yml
  17. vars:
  18. l_upgrade_repo_hosts: "oo_masters_to_config:oo_nodes_to_upgrade:oo_etcd_to_config:oo_lb_to_config"
  19. l_upgrade_no_proxy_hosts: "oo_masters_to_config:oo_nodes_to_upgrade"
  20. l_upgrade_health_check_hosts: "oo_masters_to_config:oo_etcd_to_config:oo_lb_to_config"
  21. l_upgrade_verify_targets_hosts: "oo_masters_to_config:oo_nodes_to_upgrade"
  22. l_upgrade_docker_target_hosts: "oo_masters_to_config:oo_nodes_to_upgrade:oo_etcd_to_config"
  23. l_upgrade_excluder_hosts: "oo_nodes_to_config:oo_masters_to_config"
  24. openshift_protect_installed_version: False
  25. - import_playbook: validator.yml
  26. - name: Flag pre-upgrade checks complete for hosts without errors
  27. hosts: oo_masters_to_config:oo_nodes_to_upgrade:oo_etcd_to_config
  28. tasks:
  29. - set_fact:
  30. pre_upgrade_complete: True
  31. # Pre-upgrade completed
  32. - import_playbook: ../upgrade_control_plane.yml
  33. # All controllers must be stopped at the same time then restarted
  34. - name: Cycle all controller services to force new leader election mode
  35. hosts: oo_masters_to_config
  36. gather_facts: no
  37. roles:
  38. - role: openshift_facts
  39. tasks:
  40. - name: Stop {{ openshift_service_type }}-master-controllers
  41. systemd:
  42. name: "{{ openshift_service_type }}-master-controllers"
  43. state: stopped
  44. - name: Start {{ openshift_service_type }}-master-controllers
  45. systemd:
  46. name: "{{ openshift_service_type }}-master-controllers"
  47. state: started
  48. - import_playbook: ../upgrade_nodes.yml
  49. - import_playbook: ../post_control_plane.yml