summaryrefslogtreecommitdiffstats
path: root/roles/openshift_node/tasks/storage_plugins/main.yml
blob: d237c26ece01bd5102c949c5916fa0bfff207d42 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
---
# The NFS storage plugin is always enabled since it doesn't require any
# additional package dependencies
- name: NFS storage plugin configuration
  include: nfs.yml
  when: not openshift.common.is_containerized | bool

- name: GlusterFS storage plugin configuration
  include: glusterfs.yml
  when: "'glusterfs' in openshift.node.storage_plugin_deps and not openshift.common.is_containerized | bool "

- name: Ceph storage plugin configuration
  include: ceph.yml
  when: "'ceph' in openshift.node.storage_plugin_deps and not openshift.common.is_containerized | bool"