upgrade_nodes.yml 1002 B

12345678910111213141516171819202122232425262728293031323334
  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.9'
  13. openshift_upgrade_min: '3.7'
  14. - import_playbook: ../pre/config.yml
  15. vars:
  16. l_upgrade_repo_hosts: "oo_nodes_to_config"
  17. l_upgrade_no_proxy_hosts: "oo_all_hosts"
  18. l_upgrade_health_check_hosts: "oo_nodes_to_config"
  19. l_upgrade_verify_targets_hosts: "oo_nodes_to_config"
  20. l_upgrade_docker_target_hosts: "oo_nodes_to_config"
  21. l_upgrade_excluder_hosts: "oo_nodes_to_config:!oo_masters_to_config"
  22. l_upgrade_nodes_only: True
  23. - name: Flag pre-upgrade checks complete for hosts without errors
  24. hosts: oo_masters_to_config:oo_nodes_to_upgrade:oo_etcd_to_config
  25. tasks:
  26. - set_fact:
  27. pre_upgrade_complete: True
  28. # Pre-upgrade completed
  29. - import_playbook: ../upgrade_nodes.yml