From 306d55f7d345720396bf42ce3b28a0acca8b5dfd Mon Sep 17 00:00:00 2001 From: Chris Yang Date: Mon, 31 Dec 2018 15:07:57 +0800 Subject: [PATCH] QNAP: Support QES FW on TDS series NAS Support both QTS and QES FW on TDS series NAS models. Change-Id: I1107aba8283cca216b5df8d4b3e5fbd81dbf0b33 --- cinder/volume/drivers/qnap.py | 8 +++++--- .../notes/qnap-tds-support-qes-5e5d766cded3a26d.yaml | 4 ++++ 2 files changed, 9 insertions(+), 3 deletions(-) create mode 100644 releasenotes/notes/qnap-tds-support-qes-5e5d766cded3a26d.yaml diff --git a/cinder/volume/drivers/qnap.py b/cinder/volume/drivers/qnap.py index f939774a06f..a67ee0f7c60 100644 --- a/cinder/volume/drivers/qnap.py +++ b/cinder/volume/drivers/qnap.py @@ -75,6 +75,8 @@ class QnapISCSIDriver(san.SanISCSIDriver): Add support for QES fw 2.0.0. 1.2.003: Add support for QES fw 2.1.0. + 1.2.004: + Add support for QES fw on TDS series NAS model. NOTE: Set driver_ssl_cert_verify as True under backend section to enable SSL verification. @@ -83,7 +85,7 @@ class QnapISCSIDriver(san.SanISCSIDriver): # ThirdPartySystems wiki page CI_WIKI_NAME = "QNAP_CI" - VERSION = '1.2.003' + VERSION = '1.2.004' TIME_INTERVAL = 3 @@ -175,10 +177,10 @@ class QnapISCSIDriver(san.SanISCSIDriver): model_type = matches.group(1) ts_model_types = [ - "TS", "SS", "IS", "TVS", "TDS", "TBS" + "TS", "SS", "IS", "TVS", "TBS" ] tes_model_types = [ - "TES" + "TES", "TDS" ] es_model_types = [ "ES" diff --git a/releasenotes/notes/qnap-tds-support-qes-5e5d766cded3a26d.yaml b/releasenotes/notes/qnap-tds-support-qes-5e5d766cded3a26d.yaml new file mode 100644 index 00000000000..553c2c35ff2 --- /dev/null +++ b/releasenotes/notes/qnap-tds-support-qes-5e5d766cded3a26d.yaml @@ -0,0 +1,4 @@ +--- +features: + - | + QNAP Cinder driver supports QES FW on TDS series NAS.