From 3599eb5ba948e743ad63999dabeecafa86373ee0 Mon Sep 17 00:00:00 2001 From: Peng Wang Date: Sun, 3 Jun 2018 19:30:06 -0700 Subject: [PATCH] DS8K: Enable multiattach support Support multiattach capability for IBM DS8K Change-Id: I4e1f79dba0ed241fabd83bf972f60a6cbe21a106 --- cinder/tests/unit/volume/drivers/ibm/test_ds8k_proxy.py | 4 ++-- cinder/volume/drivers/ibm/ibm_storage/ds8k_proxy.py | 2 +- .../notes/ds8k-allow-multi-attach-41fa7bddbbd719ec.yaml | 3 +++ 3 files changed, 6 insertions(+), 3 deletions(-) create mode 100644 releasenotes/notes/ds8k-allow-multi-attach-41fa7bddbbd719ec.yaml diff --git a/cinder/tests/unit/volume/drivers/ibm/test_ds8k_proxy.py b/cinder/tests/unit/volume/drivers/ibm/test_ds8k_proxy.py index f89221d74a3..5a664f8c2f3 100644 --- a/cinder/tests/unit/volume/drivers/ibm/test_ds8k_proxy.py +++ b/cinder/tests/unit/volume/drivers/ibm/test_ds8k_proxy.py @@ -1259,7 +1259,7 @@ class DS8KProxyTest(test.TestCase): "consistent_group_snapshot_enabled": True, "group_replication_enabled": True, "consistent_group_replication_enabled": True, - "multiattach": False, + "multiattach": True, "backend_state": 'up' } @@ -1328,7 +1328,7 @@ class DS8KProxyTest(test.TestCase): "consistent_group_snapshot_enabled": True, "group_replication_enabled": True, "consistent_group_replication_enabled": True, - "multiattach": False, + "multiattach": True, "backend_state": 'up' } diff --git a/cinder/volume/drivers/ibm/ibm_storage/ds8k_proxy.py b/cinder/volume/drivers/ibm/ibm_storage/ds8k_proxy.py index 2f4d11694b6..fb9ae650135 100644 --- a/cinder/volume/drivers/ibm/ibm_storage/ds8k_proxy.py +++ b/cinder/volume/drivers/ibm/ibm_storage/ds8k_proxy.py @@ -477,7 +477,7 @@ class DS8KProxy(proxy.IBMStorageProxy): "consistent_group_snapshot_enabled": True, "group_replication_enabled": True, "consistent_group_replication_enabled": True, - "multiattach": False, + "multiattach": True, "vendor_name": 'IBM', "driver_version": self.full_version, "storage_protocol": self._helper.get_connection_type(), diff --git a/releasenotes/notes/ds8k-allow-multi-attach-41fa7bddbbd719ec.yaml b/releasenotes/notes/ds8k-allow-multi-attach-41fa7bddbbd719ec.yaml new file mode 100644 index 00000000000..4ed33c49623 --- /dev/null +++ b/releasenotes/notes/ds8k-allow-multi-attach-41fa7bddbbd719ec.yaml @@ -0,0 +1,3 @@ +--- +features: + - IBM DS8K driver has added multiattach support.