HPE 3PAR-Added support for multiattach feature in hpe3par cinder driver

The 3PAR driver has long supported the ability to do
multiattach of volumes. This patch updates the
capability reporting to support multiattach.

Change-Id: I78c7e0cb076405d37c9bd54576cec735986a0f38
This commit is contained in:
Sneha Rai 2019-05-16 11:22:12 +05:30
parent 0bc7bd7435
commit 1926a03521
2 changed files with 6 additions and 2 deletions

View File

@ -278,11 +278,12 @@ class HPE3PARCommon(object):
failover. bug #1773069
4.0.10 - Added retry in delete_volume. bug #1783934
4.0.11 - Added extra spec hpe3par:convert_to_base
4.0.12 - Added multiattach support
"""
VERSION = "4.0.11"
VERSION = "4.0.12"
stats = {}
@ -1615,7 +1616,7 @@ class HPE3PARCommon(object):
AVG_BUSY_PERC: stat_capabilities[AVG_BUSY_PERC],
'filter_function': filter_function,
'goodness_function': goodness_function,
'multiattach': False,
'multiattach': True,
'consistent_group_snapshot_enabled': True,
'compression': compression_support,
'consistent_group_replication_enabled':

View File

@ -0,0 +1,3 @@
---
features:
- Enabled multiattach capability for hpe3par driver.