upgrade.yml 924 B

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