Merge "NetApp ONTAP NFS: Enable multiattach capability"

This commit is contained in:
Zuul 2018-07-05 05:41:45 +00:00 committed by Gerrit Code Review
commit 023f7d5464
3 changed files with 6 additions and 2 deletions
cinder
tests/unit/volume/drivers/netapp/dataontap
volume/drivers/netapp/dataontap
releasenotes/notes

@ -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,

@ -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']

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