setup_storage.yml 731 B

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