Merge "Deprecate Hitachi Block Storage Driver"
This commit is contained in:
commit
39efe56eb8
cinder/volume/drivers/hitachi
releasenotes/notes
@ -21,11 +21,12 @@ import threading
|
|||||||
|
|
||||||
from oslo_config import cfg
|
from oslo_config import cfg
|
||||||
from oslo_log import log as logging
|
from oslo_log import log as logging
|
||||||
|
from oslo_log import versionutils
|
||||||
from oslo_utils import excutils
|
from oslo_utils import excutils
|
||||||
import six
|
import six
|
||||||
|
|
||||||
from cinder import exception
|
from cinder import exception
|
||||||
from cinder.i18n import _LI, _LW
|
from cinder.i18n import _, _LI, _LW
|
||||||
from cinder import interface
|
from cinder import interface
|
||||||
from cinder import utils
|
from cinder import utils
|
||||||
import cinder.volume.driver
|
import cinder.volume.driver
|
||||||
@ -310,6 +311,9 @@ class HBSDFCDriver(cinder.volume.driver.FibreChannelDriver):
|
|||||||
self.context = context
|
self.context = context
|
||||||
self.common = common.HBSDCommon(self.configuration, self,
|
self.common = common.HBSDCommon(self.configuration, self,
|
||||||
context, self.db)
|
context, self.db)
|
||||||
|
msg = _("The HBSD FC driver is deprecated and "
|
||||||
|
"will be removed in P release.")
|
||||||
|
versionutils.report_deprecated_feature(LOG, msg)
|
||||||
|
|
||||||
self.check_param()
|
self.check_param()
|
||||||
|
|
||||||
|
@ -21,10 +21,11 @@ import threading
|
|||||||
|
|
||||||
from oslo_config import cfg
|
from oslo_config import cfg
|
||||||
from oslo_log import log as logging
|
from oslo_log import log as logging
|
||||||
|
from oslo_log import versionutils
|
||||||
import six
|
import six
|
||||||
|
|
||||||
from cinder import exception
|
from cinder import exception
|
||||||
from cinder.i18n import _LE, _LI
|
from cinder.i18n import _, _LE, _LI
|
||||||
from cinder import interface
|
from cinder import interface
|
||||||
from cinder import utils
|
from cinder import utils
|
||||||
import cinder.volume.driver
|
import cinder.volume.driver
|
||||||
@ -262,6 +263,9 @@ class HBSDISCSIDriver(cinder.volume.driver.ISCSIDriver):
|
|||||||
self.context = context
|
self.context = context
|
||||||
self.common = common.HBSDCommon(self.configuration, self,
|
self.common = common.HBSDCommon(self.configuration, self,
|
||||||
context, self.db)
|
context, self.db)
|
||||||
|
msg = _("The HBSD iSCSI driver is deprecated and "
|
||||||
|
"will be removed in P release")
|
||||||
|
versionutils.report_deprecated_feature(LOG, msg)
|
||||||
|
|
||||||
self.check_param()
|
self.check_param()
|
||||||
|
|
||||||
|
@ -0,0 +1,6 @@
|
|||||||
|
---
|
||||||
|
deprecations:
|
||||||
|
- The HBSD (Hitachi Block Storage Driver) volume drivers which supports
|
||||||
|
Hitachi Storages HUS100 and VSP family are deprecated. Support for HUS110
|
||||||
|
family will be no longer provided. Support on VSP will be provided as
|
||||||
|
hitachi.vsp_* drivers.
|
Loading…
x
Reference in New Issue
Block a user