summaryrefslogtreecommitdiffstats
path: root/playbooks/container-runtime/private/setup_storage.yml
blob: 97226d6b2eb3bbfca2f2c8e8caae2412a4608f70 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
---
- hosts: "{{ l_containerized_host_groups }}"
  vars:
    l_chg_temp: "{{ openshift_containerized_host_groups | default([]) }}"
    l_containerized_host_groups: "{{ (['oo_nodes_to_config'] | union(l_chg_temp)) | join(':') }}"
  # role: container_runtime is necessary  here to bring role default variables
  # into the play scope.
  roles:
    - role: container_runtime
  tasks:
    - include_role:
        name: container_runtime
        tasks_from: docker_storage_setup_overlay.yml
      when:
        - container_runtime_docker_storage_type|default('') == "overlay2"
        - openshift_docker_is_node_or_master | bool