Merge "Hitachi: Mark HBSD and VSP as unsupported"

This commit is contained in:
Jenkins 2017-03-31 00:15:40 +00:00 committed by Gerrit Code Review
commit b0b25af300
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.