NetApp ONTAP iSCSI/FCP: Enable multiattach capability

Change-Id: Ic86b1b771a343d3c73a42b32ec678d9243025d13
This commit is contained in:
Luiz Gavioli 2018-06-15 09:57:07 -03:00 committed by Lucio Seki
parent 688ff8157d
commit ac0c7d89ba
3 changed files with 6 additions and 2 deletions

View File

@ -413,7 +413,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.