Browse Source

Remove not is_containerized restriction on storage plugin includes.

Andrew Butcher 9 years ago
parent
commit
5b0543bda8
1 changed files with 2 additions and 3 deletions
  1. 2 3
      roles/openshift_node/tasks/storage_plugins/main.yml

+ 2 - 3
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"