Преглед на файлове

Remove not is_containerized restriction on storage plugin includes.

Andrew Butcher преди 9 години
родител
ревизия
5b0543bda8
променени са 1 файла, в които са добавени 2 реда и са изтрити 3 реда
  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"