From 1eacfbbcc96d47fb7872056d2233a57de02a5891 Mon Sep 17 00:00:00 2001 From: Sean McGinnis Date: Fri, 5 May 2017 12:30:52 -0500 Subject: [PATCH] Mark Nimble driver as unsupported The Nimble CI has not reported success past our CI required period. Checking name: Nimble Storage CI first seen: 2016-07-12 18:33:36 (295 days, 22:36:45 old) last seen: 2017-02-27 23:42:16 (65 days, 17:28:05 old) last success: 2017-02-27 23:42:16 (65 days, 17:28:05 old) Job nimble-fc-driver-dsvm-volume 61% success out of 88 comments S=54, F=34 Job nimble-iscsi-driver-dsvm-volume 36% success out of 131 comments S=48, F=83 last success: 2017-01-26 20:33:12 (97 days, 20:37:09 old) Overall success rate: 46% of 250 comments Per Cinder's non-compliance policy, this patch marks the driver as unsupported and deprecated and it will be removed in the next cycle if the issue is not corrected. Change-Id: Ie068ae8d8fbc224d78118818426e514ba3e100e3 --- cinder/volume/drivers/nimble.py | 3 +++ .../mark-nimble-deprecated-9f7d1c178b48fa39.yaml | 13 +++++++++++++ 2 files changed, 16 insertions(+) create mode 100644 releasenotes/notes/mark-nimble-deprecated-9f7d1c178b48fa39.yaml diff --git a/cinder/volume/drivers/nimble.py b/cinder/volume/drivers/nimble.py index a51ca5940fe..183024b4694 100644 --- a/cinder/volume/drivers/nimble.py +++ b/cinder/volume/drivers/nimble.py @@ -131,6 +131,9 @@ class NimbleBaseVolumeDriver(san.SanDriver): # ThirdPartySystems wiki page CI_WIKI_NAME = "Nimble_Storage_CI" + # TODO(smcginnis) Remove driver in Queens if CI issues are not resolved + SUPPORTED = False + def __init__(self, *args, **kwargs): super(NimbleBaseVolumeDriver, self).__init__(*args, **kwargs) self.APIExecutor = None diff --git a/releasenotes/notes/mark-nimble-deprecated-9f7d1c178b48fa39.yaml b/releasenotes/notes/mark-nimble-deprecated-9f7d1c178b48fa39.yaml new file mode 100644 index 00000000000..fc855560a2c --- /dev/null +++ b/releasenotes/notes/mark-nimble-deprecated-9f7d1c178b48fa39.yaml @@ -0,0 +1,13 @@ +--- +upgrade: + - | + The Nimble driver has been marked as unsupported and is now deprecated. + ``enable_unsupported_driver`` will need to be set to ``True`` in + the driver's section in cinder.conf to continue to use it. +deprecations: + - | + The Nimble driver has been marked as unsupported and is now deprecated. + ``enable_unsupported_driver`` will need to be set to ``True`` in + the driver's section in cinder.conf to continue to use it. If the + support status does not change, they will be removed in the Queens + development cycle.