Merge "NetApp ONTAP iSCSI/FCP: Enable multiattach capability"

This commit is contained in:
Zuul 2018-07-18 05:21:09 +00:00 committed by Gerrit Code Review
commit 80d2a130e6
3 changed files with 6 additions and 2 deletions

View File

@ -414,7 +414,7 @@ class NetAppBlockStorageCmodeLibraryTestCase(test.TestCase):
'consistent_group_snapshot_enabled': True,
'reserved_percentage': 5,
'max_over_subscription_ratio': 10.0,
'multiattach': False,
'multiattach': True,
'total_capacity_gb': 10.0,
'free_capacity_gb': 2.0,
'netapp_dedupe_used_percent': 55.0,

View File

@ -295,7 +295,7 @@ class NetAppBlockStorageCmodeLibrary(block_base.NetAppBlockStorageLibrary,
# Add driver capabilities and config info
pool['QoS_support'] = self.using_cluster_credentials
pool['multiattach'] = False
pool['multiattach'] = True
pool['online_extend_support'] = False
pool['consistencygroup_support'] = True
pool['consistent_group_snapshot_enabled'] = True

View File

@ -0,0 +1,4 @@
---
features:
- |
NetApp ONTAP iSCSI and FCP drivers multiattach capability enabled.