upgrade_nodes.yml 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738
  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. - name: Configure the upgrade target for the common upgrade tasks
  9. hosts: oo_all_hosts
  10. tasks:
  11. - set_fact:
  12. openshift_upgrade_target: '3.11'
  13. openshift_upgrade_min: '3.10'
  14. openshift_release: '3.11'
  15. - import_playbook: ../pre/config.yml
  16. vars:
  17. l_upgrade_repo_hosts: "oo_nodes_to_config"
  18. l_upgrade_no_proxy_hosts: "oo_all_hosts"
  19. l_upgrade_health_check_hosts: "oo_nodes_to_config"
  20. l_upgrade_verify_targets_hosts: "oo_nodes_to_config"
  21. l_upgrade_docker_target_hosts: "oo_nodes_to_config"
  22. l_upgrade_excluder_hosts: "oo_nodes_to_config:!oo_masters_to_config"
  23. l_upgrade_nodes_only: True
  24. # Need to run sanity checks after version has been run.
  25. - import_playbook: ../../../../init/sanity_checks.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_nodes.yml