diff --git a/cinder/volume/drivers/qnap.py b/cinder/volume/drivers/qnap.py index 313b8bf6a83..6bfda171130 100644 --- a/cinder/volume/drivers/qnap.py +++ b/cinder/volume/drivers/qnap.py @@ -66,6 +66,11 @@ class QnapISCSIDriver(san.SanISCSIDriver): # ThirdPartySystems wiki page CI_WIKI_NAME = "QNAP_CI" + + # TODO(smcginnis) Either remove this if CI requirement are met, or + # remove this driver in the Queens release per normal deprecation + SUPPORTED = False + VERSION = '1.0.0' TIME_INTERVAL = 3 diff --git a/releasenotes/notes/mark-qnap-unsupported-79bd8ece9a2bfcd2.yaml b/releasenotes/notes/mark-qnap-unsupported-79bd8ece9a2bfcd2.yaml new file mode 100644 index 00000000000..519bfdfe805 --- /dev/null +++ b/releasenotes/notes/mark-qnap-unsupported-79bd8ece9a2bfcd2.yaml @@ -0,0 +1,12 @@ +--- +upgrade: + - | + The QNAP 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 QNAP 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.