upgrade.yml 920 B

12345678910111213141516171819202122232425262728293031
  1. # Playbook to upgrade Docker to the max allowable version for an OpenShift cluster.
  2. #
  3. # Currently only supports upgrading 1.9.x to >= 1.10.x.
  4. - hosts: localhost
  5. connection: local
  6. become: no
  7. gather_facts: no
  8. tasks:
  9. - include_vars: ../../cluster_hosts.yml
  10. - add_host:
  11. name: "{{ item }}"
  12. groups: l_oo_all_hosts
  13. with_items: "{{ g_all_hosts | default([]) }}"
  14. changed_when: false
  15. - hosts: l_oo_all_hosts
  16. gather_facts: no
  17. tasks:
  18. - include_vars: ../../cluster_hosts.yml
  19. - include: ../../../../common/openshift-cluster/evaluate_groups.yml
  20. vars:
  21. # Do not allow adding hosts during upgrade.
  22. g_new_master_hosts: []
  23. g_new_node_hosts: []
  24. openshift_cluster_id: "{{ cluster_id | default('default') }}"
  25. openshift_deployment_type: "{{ deployment_type }}"
  26. - include: ../../../../common/openshift-cluster/upgrades/initialize_nodes_to_upgrade.yml
  27. - include: docker_upgrade.yml