Merge "Dell EMC Sc: Add support for excluded_domain_ips"

This commit is contained in:
Zuul 2018-10-23 06:30:15 +00:00 committed by Gerrit Code Review
commit 83a2d262b6
3 changed files with 15 additions and 1 deletions

View File

@ -19,4 +19,4 @@ parameter_defaults:
CinderDellScSecondarySanLogin: 'Admin'
CinderDellScSecondarySanPassword: ''
CinderDellScSecondaryScApiPort: 3033
CinderDellScExcludedDomainIp: ''
CinderDellScExcludedDomainIps: []

View File

@ -64,6 +64,9 @@ parameters:
CinderDellScExcludedDomainIp:
type: string
default: ''
CinderDellScExcludedDomainIps:
type: comma_delimited_list
default: []
ServiceData:
default: {}
description: Dictionary packing service data
@ -90,6 +93,11 @@ parameters:
type: json
description: Mapping of service endpoint -> protocol. Typically set
via parameter_defaults in the resource registry.
parameter_groups:
- label: deprecated
description: Do not use deprecated params, they will be removed.
parameters:
- CinderDellScExcludedDomainIp
outputs:
role_data:
@ -112,4 +120,5 @@ outputs:
cinder::backend::dellsc_iscsi::secondary_san_login: {get_param: CinderDellScSecondarySanLogin}
cinder::backend::dellsc_iscsi::secondary_san_password: {get_param: CinderDellScSecondarySanPassword}
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_ip: {get_param: CinderDellScExcludedDomainIp}

View File

@ -0,0 +1,5 @@
---
upgrade:
- The Dell EMC SC configuration option excluded_domain_ip has been deprecated
and will be removed in a future release. Deployments should now migrate to
the option excluded_domain_ips for equivalent functionality.