Merge "Added Dell EMC SC multipath support"

This commit is contained in:
Zuul 2018-11-27 05:42:25 +00:00 committed by Gerrit Code Review
commit c464b3d206
3 changed files with 11 additions and 0 deletions

@ -20,3 +20,4 @@ parameter_defaults:
CinderDellScSecondarySanPassword: '' CinderDellScSecondarySanPassword: ''
CinderDellScSecondaryScApiPort: 3033 CinderDellScSecondaryScApiPort: 3033
CinderDellScExcludedDomainIps: [] CinderDellScExcludedDomainIps: []
CinderDellScMultipathXfer: true

@ -73,6 +73,9 @@ parameters:
CinderDellScExcludedDomainIps: CinderDellScExcludedDomainIps:
type: comma_delimited_list type: comma_delimited_list
default: [] default: []
CinderDellScMultipathXfer:
type: boolean
default: true
ServiceData: ServiceData:
default: {} default: {}
description: Dictionary packing service data description: Dictionary packing service data
@ -129,6 +132,7 @@ outputs:
cinder::backend::dellsc_iscsi::secondary_sc_api_port: {get_param: CinderDellScSecondaryScApiPort} cinder::backend::dellsc_iscsi::secondary_sc_api_port: {get_param: CinderDellScSecondaryScApiPort}
cinder::backend::dellsc_iscsi::excluded_domain_ips: {get_param: CinderDellScExcludedDomainIps} cinder::backend::dellsc_iscsi::excluded_domain_ips: {get_param: CinderDellScExcludedDomainIps}
cinder::backend::dellsc_iscsi::excluded_domain_ip: {get_param: CinderDellScExcludedDomainIp} cinder::backend::dellsc_iscsi::excluded_domain_ip: {get_param: CinderDellScExcludedDomainIp}
cinder::backend::dellsc_iscsi::use_multipath_for_image_xfer: {get_param: CinderDellScMultipathXfer}
- -
if: if:
- {equals : [{get_param: CinderDellScAvailabilityZone}, '']} - {equals : [{get_param: CinderDellScAvailabilityZone}, '']}

@ -0,0 +1,6 @@
---
features:
- Added Dell EMC SC multipath support
This change adds support for
cinder::backend::dellsc_iscsi::use_multipath_for_image_xfer
Added a new parameter CinderDellScMultipathXfer.