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:
Rabi Mishra 2022-09-12 16:15:55 +05:30
parent f9a4495c96
commit 3e41f36368
2 changed files with 21 additions and 7 deletions

View File

@ -133,14 +133,23 @@ parameters:
conditions: conditions:
server_blacklisted: server_blacklisted:
equals: or:
- {get_param: [DeploymentServerBlacklistDict, {get_param: Hostname}]} - equals:
- 1 - {get_param: [DeploymentServerBlacklistDict, {get_param: Hostname}]}
- 1
- equals:
- {get_param: [DeploymentServerBlacklistDict, {get_param: [HostnameMap, {get_param: Hostname}]}]}
- 1
server_not_blacklisted: server_not_blacklisted:
not: and:
equals: - not:
- {get_param: [DeploymentServerBlacklistDict, {get_param: Hostname}]} equals:
- 1 - {get_param: [DeploymentServerBlacklistDict, {get_param: Hostname}]}
- 1
- not:
equals:
- {get_param: [DeploymentServerBlacklistDict, {get_param: [HostnameMap, {get_param: Hostname}]}]}
- 1
ctlplane_fixed_ip_set: ctlplane_fixed_ip_set:
or: or:
- not: - not:

View File

@ -0,0 +1,5 @@
---
features:
- |
DeploymentServerBlacklist parameter now supports both
heat and actual hostnames.