setup_storage.yml 665 B

12345678910111213141516
  1. ---
  2. - hosts: "{{ l_containerized_host_groups }}"
  3. vars:
  4. l_chg_temp: "{{ hostvars[groups['oo_first_master'][0]]['openshift_containerized_host_groups'] | default([]) }}"
  5. l_containerized_host_groups: "{{ (['oo_nodes_to_config'] | union(l_chg_temp)) | join(':') }}"
  6. # role: container_runtime is necessary here to bring role default variables
  7. # into the play scope.
  8. roles:
  9. - role: container_runtime
  10. tasks:
  11. - import_role:
  12. name: container_runtime
  13. tasks_from: docker_storage_setup_overlay.yml
  14. when:
  15. - container_runtime_docker_storage_type|default('') == "overlay2"
  16. - openshift_docker_is_node_or_master | bool