Support actual hostnames in DeploymentServerBlacklist
Historically, we only supported heat hostnames in DeploymentServerBlacklist and this causes lots of confusion, specifically when using ephemeral heat. Let's support both. Change-Id: Ifdc0ea99e02743739d6369101eac8476f28c25b8
This commit is contained in:
parent
f9a4495c96
commit
3e41f36368
@ -133,14 +133,23 @@ parameters:
|
||||
|
||||
conditions:
|
||||
server_blacklisted:
|
||||
equals:
|
||||
- {get_param: [DeploymentServerBlacklistDict, {get_param: Hostname}]}
|
||||
- 1
|
||||
or:
|
||||
- equals:
|
||||
- {get_param: [DeploymentServerBlacklistDict, {get_param: Hostname}]}
|
||||
- 1
|
||||
- equals:
|
||||
- {get_param: [DeploymentServerBlacklistDict, {get_param: [HostnameMap, {get_param: Hostname}]}]}
|
||||
- 1
|
||||
server_not_blacklisted:
|
||||
not:
|
||||
equals:
|
||||
- {get_param: [DeploymentServerBlacklistDict, {get_param: Hostname}]}
|
||||
- 1
|
||||
and:
|
||||
- not:
|
||||
equals:
|
||||
- {get_param: [DeploymentServerBlacklistDict, {get_param: Hostname}]}
|
||||
- 1
|
||||
- not:
|
||||
equals:
|
||||
- {get_param: [DeploymentServerBlacklistDict, {get_param: [HostnameMap, {get_param: Hostname}]}]}
|
||||
- 1
|
||||
ctlplane_fixed_ip_set:
|
||||
or:
|
||||
- not:
|
||||
|
@ -0,0 +1,5 @@
|
||||
---
|
||||
features:
|
||||
- |
|
||||
DeploymentServerBlacklist parameter now supports both
|
||||
heat and actual hostnames.
|
Loading…
x
Reference in New Issue
Block a user