From 21446687b137e7399d57011f1da3abce03925129 Mon Sep 17 00:00:00 2001 From: Sean McGinnis Date: Fri, 16 Dec 2016 20:00:14 +0000 Subject: [PATCH] Mark Tintri volume driver as unsupported The Tintri CI has not reported past our CI requirements. Checking name: Tintri CI last seen: 2016-12-16 16:50:50 (0:43:36 old) last success: 2016-11-16 20:42:29 (29 days, 20:45:46 old) success rate: 19% 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: I8249dd5a82e22f17015c4eb5f9367a221caaeac2 --- cinder/volume/drivers/tintri.py | 4 ++++ .../mark-tintri-unsupported-9f6bd4393eab9176.yaml | 11 +++++++++++ 2 files changed, 15 insertions(+) create mode 100644 releasenotes/notes/mark-tintri-unsupported-9f6bd4393eab9176.yaml diff --git a/cinder/volume/drivers/tintri.py b/cinder/volume/drivers/tintri.py index 8654df18467..37204865d05 100644 --- a/cinder/volume/drivers/tintri.py +++ b/cinder/volume/drivers/tintri.py @@ -89,6 +89,10 @@ class TintriDriver(driver.ManageableVD, # ThirdPartySystems wiki page CI_WIKI_NAME = "Tintri_CI" + # TODO(smcginnis) Either remove this if CI requirements are met, or + # remove this driver in the Pike release per normal deprecation + SUPPORTED = False + REQUIRED_OPTIONS = ['tintri_server_hostname', 'tintri_server_username', 'tintri_server_password'] diff --git a/releasenotes/notes/mark-tintri-unsupported-9f6bd4393eab9176.yaml b/releasenotes/notes/mark-tintri-unsupported-9f6bd4393eab9176.yaml new file mode 100644 index 00000000000..02145a95cd7 --- /dev/null +++ b/releasenotes/notes/mark-tintri-unsupported-9f6bd4393eab9176.yaml @@ -0,0 +1,11 @@ +--- +upgrade: + - The Tintri 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 Tintri 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.