upgrade_nodes.yml 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. ---
  2. #
  3. # Node Upgrade Playbook
  4. #
  5. # Upgrades nodes only, but requires the control plane to have already been upgraded.
  6. #
  7. - import_playbook: ../init.yml
  8. vars:
  9. l_upgrade_cert_check_hosts: "oo_nodes_to_config"
  10. - name: Configure the upgrade target for the common upgrade tasks
  11. hosts: oo_all_hosts
  12. tasks:
  13. - set_fact:
  14. openshift_upgrade_target: '3.10'
  15. openshift_upgrade_min: '3.9'
  16. openshift_release: '3.10'
  17. - import_playbook: ../pre/config.yml
  18. vars:
  19. l_upgrade_repo_hosts: "oo_nodes_to_config"
  20. l_upgrade_no_proxy_hosts: "oo_all_hosts"
  21. l_upgrade_health_check_hosts: "oo_nodes_to_config"
  22. l_upgrade_verify_targets_hosts: "oo_nodes_to_config"
  23. l_upgrade_docker_target_hosts: "oo_nodes_to_config"
  24. l_upgrade_excluder_hosts: "oo_nodes_to_config:!oo_masters_to_config"
  25. l_upgrade_nodes_only: True
  26. # Need to run sanity checks after version has been run.
  27. - import_playbook: ../../../../init/sanity_checks.yml
  28. - name: Flag pre-upgrade checks complete for hosts without errors
  29. hosts: oo_masters_to_config:oo_nodes_to_upgrade:oo_etcd_to_config
  30. tasks:
  31. - set_fact:
  32. pre_upgrade_complete: True
  33. # Pre-upgrade completed
  34. - import_playbook: ../upgrade_nodes.yml