From 5f7ef168b331b8b60584d5115851e012735754cc Mon Sep 17 00:00:00 2001 From: "Jay S. Bryant" Date: Thu, 29 Aug 2019 08:39:16 -0500 Subject: [PATCH] Mark IBM Flashsystem Drivers Unsupported The IBM driver CIs stopped reporting some time ago and attempts to reach out to driver maintainers have failed. As a result, we need to mark the drivers unsupported for the T release. Change-Id: I2c41448fa5ea19ac80f1b4b663222da2ca5ec8f9 --- cinder/volume/drivers/ibm/flashsystem_common.py | 3 +++ doc/source/reference/support-matrix.ini | 2 +- ...m-flashsystem-unsupported-28f9aaf11b56fb2f.yaml | 14 ++++++++++++++ 3 files changed, 18 insertions(+), 1 deletion(-) create mode 100644 releasenotes/notes/ibm-flashsystem-unsupported-28f9aaf11b56fb2f.yaml diff --git a/cinder/volume/drivers/ibm/flashsystem_common.py b/cinder/volume/drivers/ibm/flashsystem_common.py index 979e5eca7b0..4b22e2d08d9 100644 --- a/cinder/volume/drivers/ibm/flashsystem_common.py +++ b/cinder/volume/drivers/ibm/flashsystem_common.py @@ -97,6 +97,9 @@ class FlashSystemDriver(san.SanDriver, VERSION = "1.0.12" + # TODO(jsbryant) Remove driver in the 'U' release if CI is not fixed. + SUPPORTED = False + MULTI_HOST_MAP_ERRORS = ['CMMVC6045E', 'CMMVC6071E'] def __init__(self, *args, **kwargs): diff --git a/doc/source/reference/support-matrix.ini b/doc/source/reference/support-matrix.ini index ac1d9218beb..29b21e84b34 100644 --- a/doc/source/reference/support-matrix.ini +++ b/doc/source/reference/support-matrix.ini @@ -230,7 +230,7 @@ driver.huawei_dorado=complete driver.huawei_fusionstorage=complete driver.infinidat=complete driver.ibm_ds8k=complete -driver.ibm_flashsystem=complete +driver.ibm_flashsystem=missing driver.ibm_gpfs=complete driver.ibm_storwize=complete driver.ibm_xiv=complete diff --git a/releasenotes/notes/ibm-flashsystem-unsupported-28f9aaf11b56fb2f.yaml b/releasenotes/notes/ibm-flashsystem-unsupported-28f9aaf11b56fb2f.yaml new file mode 100644 index 00000000000..a24383c96e6 --- /dev/null +++ b/releasenotes/notes/ibm-flashsystem-unsupported-28f9aaf11b56fb2f.yaml @@ -0,0 +1,14 @@ +--- +upgrade: + - | + The IBM Flashsystem 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 IBM Flashsystem 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 the support status does not change, the + drivers will be removed in the 'U' development cycle.