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