Mark Infortrend drivers as unsupported

The Infortrend CI has not reported success past our CI
required period.

hecking name: Infortrend Cinder CI
  first seen: 2017-04-09 12:36:56 (25 days, 4:32:22 old)
  last seen: 2017-05-04 14:06:56 (3:02:22 old)
  last success: 2017-04-12 15:49:54 (22 days, 1:19:24 old)
  Job infortrend-cinder-volume-iscsi 3% success out of 249 comments S=9, F=240
      last success: 2017-04-12 13:45:54 (22 days, 3:23:24 old)
  Job infortrend-cinder-volume-fc 4% success out of 249 comments S=10, F=239
      last success: 2017-04-12 15:49:54 (22 days, 1:19:24 old)
Overall success rate: 3% of 250 comments

Per Cinder's non-compliance policy, this patch marks the drivers
as unsupported and deprecated and they will be removed in the
next cycle if the issue is not corrected.

Change-Id: I87a6bc0aa1854e7ae56826c5998fb8404a042d77
This commit is contained in:
Sean McGinnis 2017-05-05 12:20:33 -05:00
parent b92996ef35
commit 19413e8abe
3 changed files with 21 additions and 0 deletions

View File

@ -42,6 +42,9 @@ class InfortrendCLIFCDriver(driver.FibreChannelDriver):
CI_WIKI_NAME = "Infortrend_Storage_CI"
VERSION = common_cli.InfortrendCommon.VERSION
# TODO(smcginnis) Remove driver in Queens if CI issues not resolved
SUPPORTED = False
def __init__(self, *args, **kwargs):
super(InfortrendCLIFCDriver, self).__init__(*args, **kwargs)
self.common = common_cli.InfortrendCommon(

View File

@ -40,6 +40,9 @@ class InfortrendCLIISCSIDriver(driver.ISCSIDriver):
CI_WIKI_NAME = "Infortrend_Storage_CI"
VERSION = common_cli.InfortrendCommon.VERSION
# TODO(smcginnis) Remove driver in Queens if CI issues not resolved
SUPPORTED = False
def __init__(self, *args, **kwargs):
super(InfortrendCLIISCSIDriver, self).__init__(*args, **kwargs)
self.common = common_cli.InfortrendCommon(

View File

@ -0,0 +1,15 @@
---
upgrade:
- |
The Infortrend drivers have been marked as unsupported
and are now deprecated. ``enable_unsupported_driver`` will
need to be set to ``True`` in the driver's section in
cinder.conf to continue to use them.
deprecations:
- |
The Infortrend drivers have been marked as unsupported
and are now deprecated. ``enable_unsupported_driver`` will
need to be set to ``True`` in the driver's section in
cinder.conf to continue to use them. If their support
status does not change, they will be removed in the Queens
development cycle.