Merge "Fix PowerStore iSCSI targets filtering" into stable/victoria

This commit is contained in:
Zuul 2021-05-05 11:00:55 +00:00 committed by Gerrit Code Review
commit ba1d2574a1
3 changed files with 13 additions and 2 deletions

View File

@ -384,7 +384,7 @@ class PowerStoreClient(object):
"/ip_pool_address",
params={
"appliance_id": "eq.%s" % appliance_id,
"purposes": "eq.{Storage_Iscsi_Target}",
"purposes": "cs.{Storage_Iscsi_Target}",
"select": "address,ip_port(target_iqn)"
}

View File

@ -38,9 +38,12 @@ class PowerStoreDriver(driver.VolumeDriver):
Version history:
1.0.0 - Initial version
1.0.1 - Add CHAP support
1.0.2 - Fix iSCSI targets not being returned from the REST API call if
targets are used for multiple purposes
(iSCSI target, Replication target, etc.)
"""
VERSION = "1.0.1"
VERSION = "1.0.2"
VENDOR = "Dell EMC"
# ThirdPartySystems wiki page

View File

@ -0,0 +1,8 @@
---
fixes:
- |
PowerStore driver `Bug #1920729
<https://bugs.launchpad.net/cinder/+bug/1920729>`_: Fix
iSCSI targets not being returned from the REST API call if
targets are used for multiple purposes
(iSCSI target, Replication target, etc.).