diff options
| -rw-r--r-- | roles/openshift_node/tasks/storage_plugins/iscsi.yml | 1 | ||||
| -rw-r--r-- | roles/openshift_storage_glusterfs/tasks/glusterfs_common.yml | 5 | 
2 files changed, 5 insertions, 1 deletions
| diff --git a/roles/openshift_node/tasks/storage_plugins/iscsi.yml b/roles/openshift_node/tasks/storage_plugins/iscsi.yml index 72415f9a6..e31433dbc 100644 --- a/roles/openshift_node/tasks/storage_plugins/iscsi.yml +++ b/roles/openshift_node/tasks/storage_plugins/iscsi.yml @@ -15,6 +15,7 @@      name: "{{ item }}"      state: started      enabled: True +  when: not openshift_is_atomic | bool    with_items:      - multipathd      - rpcbind diff --git a/roles/openshift_storage_glusterfs/tasks/glusterfs_common.yml b/roles/openshift_storage_glusterfs/tasks/glusterfs_common.yml index a5fdae803..e6e261b52 100644 --- a/roles/openshift_storage_glusterfs/tasks/glusterfs_common.yml +++ b/roles/openshift_storage_glusterfs/tasks/glusterfs_common.yml @@ -313,7 +313,10 @@    - glusterfs_storageclass or glusterfs_s3_deploy  - include_tasks: glusterblock_deploy.yml -  when: glusterfs_block_deploy +  when: +  - glusterfs_block_deploy +  #TODO: Remove this when multipathd will be available on atomic +  - not openshift_is_atomic | bool  - block:    - name: Create heketi block secret | 
