Hitachi: Mark HBSD and VSP as unsupported

As per the message sent to the mailing list [1], the HBSD and
VSP drivers should be marked as unsupported.

[1]http://lists.openstack.org/pipermail/openstack/2017-March/018812.html
DocImpact

Change-Id: I921d1a16b28a2f310a483283069ae819ad498228
This commit is contained in:
Adriano Rosso 2017-03-30 14:13:06 -03:00
parent aa13d63d1b
commit 595c8d3f85
5 changed files with 13 additions and 0 deletions

View File

@ -53,6 +53,8 @@ class HBSDFCDriver(cinder.volume.driver.FibreChannelDriver):
# ThirdPartySystems wiki page
CI_WIKI_NAME = ["Hitachi_HBSD_CI", "Hitachi_HBSD2_CI"]
SUPPORTED = False
def __init__(self, *args, **kwargs):
os.environ['LANG'] = 'C'
super(HBSDFCDriver, self).__init__(*args, **kwargs)

View File

@ -61,6 +61,8 @@ class HBSDISCSIDriver(cinder.volume.driver.ISCSIDriver):
# ThirdPartySystems wiki page
CI_WIKI_NAME = ["Hitachi_HBSD_CI", "Hitachi_HBSD2_CI"]
SUPPORTED = False
def __init__(self, *args, **kwargs):
os.environ['LANG'] = 'C'
super(HBSDISCSIDriver, self).__init__(*args, **kwargs)

View File

@ -65,6 +65,8 @@ class VSPFCDriver(driver.FibreChannelDriver):
# ThirdPartySystems wiki page
CI_WIKI_NAME = "Hitachi_VSP_CI"
SUPPORTED = False
def __init__(self, *args, **kwargs):
"""Initialize instance variables."""
utils.output_log(MSG.DRIVER_INITIALIZATION_START,

View File

@ -72,6 +72,8 @@ class VSPISCSIDriver(driver.ISCSIDriver):
# ThirdPartySystems wiki page
CI_WIKI_NAME = "Hitachi_VSP_CI"
SUPPORTED = False
def __init__(self, *args, **kwargs):
"""Initialize instance variables."""
utils.output_log(MSG.DRIVER_INITIALIZATION_START,

View File

@ -0,0 +1,5 @@
---
deprecations:
- The Hitachi Block Storage Driver (HBSD) and VSP driver have been marked
as unsupported and are now deprecated. enable_unsupported_driver will need
to be set to True in cinder.conf to continue to use them.