From aec037b157bd5fe1bc4118af8de81fcb1fd6cfc0 Mon Sep 17 00:00:00 2001 From: Sean McGinnis Date: Fri, 16 Dec 2016 19:10:35 +0000 Subject: [PATCH] Mark Huawei volume driver as unsupported The Huawei CI has not reported past our CI requirements. Checking name: Huawei FusionStorage CI last seen: 2016-09-30 08:36:22 (77 days, 8:53:56 old) last success: 2016-09-30 08:36:22 (77 days, 8:51:53 old) success rate: 54% 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: I266b54515dae0c205ae429ec40e7cfd2fc3d3f7c --- cinder/volume/drivers/huawei/huawei_driver.py | 4 ++++ .../mark-huawei-unsupported-d48ab48033b363f9.yaml | 11 +++++++++++ 2 files changed, 15 insertions(+) create mode 100644 releasenotes/notes/mark-huawei-unsupported-d48ab48033b363f9.yaml diff --git a/cinder/volume/drivers/huawei/huawei_driver.py b/cinder/volume/drivers/huawei/huawei_driver.py index 1baf82dc438..7248b59f23d 100644 --- a/cinder/volume/drivers/huawei/huawei_driver.py +++ b/cinder/volume/drivers/huawei/huawei_driver.py @@ -84,6 +84,10 @@ class HuaweiBaseDriver(driver.VolumeDriver): # ThirdPartySytems wiki page CI_WIKI_NAME = "Huawei_volume_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): super(HuaweiBaseDriver, self).__init__(*args, **kwargs) diff --git a/releasenotes/notes/mark-huawei-unsupported-d48ab48033b363f9.yaml b/releasenotes/notes/mark-huawei-unsupported-d48ab48033b363f9.yaml new file mode 100644 index 00000000000..d936ca2902e --- /dev/null +++ b/releasenotes/notes/mark-huawei-unsupported-d48ab48033b363f9.yaml @@ -0,0 +1,11 @@ +--- +upgrade: + - The Huawei 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 Huawei 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.