NetApp ONTAP NFS: Enable multiattach capability

Change-Id: I65fabec317a3e3dce2512002247e8a7b75fbe5d7
This commit is contained in:
Luiz Gavioli 2018-06-04 11:42:34 -03:00 committed by Luiz Benedito Aidar Gavioli
parent 4b96310411
commit 4e064a3ae7
3 changed files with 6 additions and 2 deletions

View File

@ -226,7 +226,7 @@ class NetAppCmodeNfsDriverTestCase(test.TestCase):
'pool_name': '10.10.10.10:/vola',
'reserved_percentage': fake.RESERVED_PERCENTAGE,
'max_over_subscription_ratio': fake.MAX_OVER_SUBSCRIPTION_RATIO,
'multiattach': False,
'multiattach': True,
'total_capacity_gb': total_capacity_gb,
'free_capacity_gb': free_capacity_gb,
'netapp_dedupe_used_percent': 55.0,

View File

@ -273,7 +273,7 @@ class NetAppCmodeNfsDriver(nfs_base.NetAppNfsDriver,
pool['QoS_support'] = self.using_cluster_credentials
pool['consistencygroup_support'] = True
pool['consistent_group_snapshot_enabled'] = True
pool['multiattach'] = False
pool['multiattach'] = True
# Add up-to-date capacity info
nfs_share = ssc_vol_info['pool_name']

View File

@ -0,0 +1,4 @@
---
features:
- |
NetApp ONTAP NFS multiattach capability enabled.