summaryrefslogtreecommitdiffstats
path: root/roles/openshift_node/tasks/storage_plugins
diff options
context:
space:
mode:
authorAndrew Butcher <abutcher@redhat.com>2016-01-06 09:54:44 -0500
committerAndrew Butcher <abutcher@redhat.com>2016-01-06 11:49:30 -0500
commit5b0543bda842f022289cae88a02498fa90d6a9a1 (patch)
tree969b6df9127fc5f4d6a28f7f2e72a166dafa4216 /roles/openshift_node/tasks/storage_plugins
parent21e91a6e22899e402f3e4642a3f52b61ab99be74 (diff)
downloadopenshift-5b0543bda842f022289cae88a02498fa90d6a9a1.tar.gz
openshift-5b0543bda842f022289cae88a02498fa90d6a9a1.tar.bz2
openshift-5b0543bda842f022289cae88a02498fa90d6a9a1.tar.xz
openshift-5b0543bda842f022289cae88a02498fa90d6a9a1.zip
Remove not is_containerized restriction on storage plugin includes.
Diffstat (limited to 'roles/openshift_node/tasks/storage_plugins')
-rw-r--r--roles/openshift_node/tasks/storage_plugins/main.yml5
1 files changed, 2 insertions, 3 deletions
diff --git a/roles/openshift_node/tasks/storage_plugins/main.yml b/roles/openshift_node/tasks/storage_plugins/main.yml
index d237c26ec..39c7b9390 100644
--- a/roles/openshift_node/tasks/storage_plugins/main.yml
+++ b/roles/openshift_node/tasks/storage_plugins/main.yml
@@ -3,12 +3,11 @@
# 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 "
+ when: "'glusterfs' in openshift.node.storage_plugin_deps"
- name: Ceph storage plugin configuration
include: ceph.yml
- when: "'ceph' in openshift.node.storage_plugin_deps and not openshift.common.is_containerized | bool"
+ when: "'ceph' in openshift.node.storage_plugin_deps"