Pure Storage FlashArray driver - enable multiattach support

Change-Id: Ia7a93caeb524e213bdcef524eb3b9429977dd671
This commit is contained in:
Simon Dodsley 2018-07-18 12:05:53 -04:00
parent 80d2a130e6
commit 8f4802baf5
3 changed files with 5 additions and 2 deletions

View File

@ -2726,7 +2726,7 @@ class PureVolumeUpdateStatsTestCase(PureBaseSharedDriverTestCase):
'storage_protocol': None,
'consistencygroup_support': True,
'thin_provisioning_support': True,
'multiattach': False,
'multiattach': True,
'QoS_support': False,
'total_capacity_gb': TOTAL_CAPACITY,
'free_capacity_gb': TOTAL_CAPACITY - USED_SPACE,

View File

@ -559,7 +559,7 @@ class PureBaseVolumeDriver(san.SanDriver):
# Add flags for supported features
data['consistencygroup_support'] = True
data['thin_provisioning_support'] = True
data['multiattach'] = False
data['multiattach'] = True
data['QoS_support'] = False
# Add capacity info for scheduler

View File

@ -0,0 +1,3 @@
---
features:
- Pure Storage FlashArray driver has added multiatach support.