upgrade.yml 987 B

123456789101112131415161718192021222324252627282930313233343536
  1. ---
  2. # Playbook to upgrade Docker to the max allowable version for an OpenShift cluster.
  3. - name: Create initial host groups for localhost
  4. hosts: localhost
  5. connection: local
  6. become: no
  7. gather_facts: no
  8. tags:
  9. - always
  10. tasks:
  11. - include_vars: ../../cluster_hosts.yml
  12. - name: Evaluate group l_oo_all_hosts
  13. add_host:
  14. name: "{{ item }}"
  15. groups: l_oo_all_hosts
  16. with_items: "{{ g_all_hosts | default([]) }}"
  17. changed_when: False
  18. - name: Create initial host groups for all hosts
  19. hosts: l_oo_all_hosts
  20. gather_facts: no
  21. tags:
  22. - always
  23. tasks:
  24. - include_vars: ../../cluster_hosts.yml
  25. - include: ../../../../common/openshift-cluster/evaluate_groups.yml
  26. vars:
  27. # Do not allow adding hosts during upgrade.
  28. g_new_master_hosts: []
  29. g_new_node_hosts: []
  30. openshift_cluster_id: "{{ cluster_id | default('default') }}"
  31. - include: ../../../../common/openshift-cluster/upgrades/initialize_nodes_to_upgrade.yml
  32. - include: docker_upgrade.yml