Merge "NetApp ONTAP: Remove NFS driver online volume extending support"

This commit is contained in:
Zuul 2018-07-13 20:35:35 +00:00 committed by Gerrit Code Review
commit 829fdc8916
3 changed files with 7 additions and 0 deletions

View File

@ -246,6 +246,7 @@ class NetAppCmodeNfsDriverTestCase(test.TestCase):
'consistencygroup_support': True,
'consistent_group_snapshot_enabled': True,
'replication_enabled': False,
'online_extend_support': False,
}]
expected[0].update({'QoS_support': cluster_credentials})

View File

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

View File

@ -0,0 +1,5 @@
---
fixes:
- |
NetApp ONTAP (bug 1765182): Make ONTAP NetApp NFS driver report to the
Cinder scheduler that it doesn't support online volume extending.