From 0b2bf684bde0f6868535cee1f1f6cb11624cd6d5 Mon Sep 17 00:00:00 2001 From: Sean McGinnis Date: Fri, 16 Dec 2016 19:30:03 +0000 Subject: [PATCH] Mark HPE XP volume driver as unsupported The HPE XP CI has not reported past our CI requirements. Checking name: XP Cinder CI last seen: 2016-08-16 09:34:42 (122 days, 7:56:25 old) last success: 2016-08-09 14:39:13 (129 days, 2:49:02 old) success rate: 32% Per Cinder's non-compliance policy [1] this patch marks the driver as unsupported and deprecated and it will be approved if the issue is not corrected by the next cycle. [1] https://wiki.openstack.org/wiki/Cinder/tested-3rdParty-drivers#Non-Compliance_Policy Change-Id: I9a0b5f6ebd0e6fb35877ec120159f4d9c3e59b07 --- cinder/volume/drivers/hpe/hpe_xp_fc.py | 4 ++++ .../mark-hpe-xp-unsupported-c9ce6cfbab622e46.yaml | 11 +++++++++++ 2 files changed, 15 insertions(+) create mode 100644 releasenotes/notes/mark-hpe-xp-unsupported-c9ce6cfbab622e46.yaml diff --git a/cinder/volume/drivers/hpe/hpe_xp_fc.py b/cinder/volume/drivers/hpe/hpe_xp_fc.py index 5b3e3fd43e6..c8f5495b1d6 100644 --- a/cinder/volume/drivers/hpe/hpe_xp_fc.py +++ b/cinder/volume/drivers/hpe/hpe_xp_fc.py @@ -35,6 +35,10 @@ class HPEXPFCDriver(driver.FibreChannelDriver): # ThirdPartySystems wiki page CI_WIKI_NAME = "XP_Storage_CI" + # TODO(smcginnis) Either remove this if CI requirements are met, or + # remove this driver in the Pike release per normal deprecation + SUPPORTED = False + def __init__(self, *args, **kwargs): """Initialize the driver.""" super(HPEXPFCDriver, self).__init__(*args, **kwargs) diff --git a/releasenotes/notes/mark-hpe-xp-unsupported-c9ce6cfbab622e46.yaml b/releasenotes/notes/mark-hpe-xp-unsupported-c9ce6cfbab622e46.yaml new file mode 100644 index 00000000000..028720447e7 --- /dev/null +++ b/releasenotes/notes/mark-hpe-xp-unsupported-c9ce6cfbab622e46.yaml @@ -0,0 +1,11 @@ +--- +upgrade: + - The HPE XP driver has been marked as unsupported and is + now deprecated. enable_unsupported_drivers will need to + be set to True in cinder.conf to continue to use it. +deprecations: + - The HPE XP driver has been marked as unsupported and is + now deprecated. enable_unsupported_drivers will need to + be set to True in cinder.conf to continue to use it. If + its support status does not change it will be removed in + the next release.