Remove deployed-server related stack output

The DeployedServerEnvironment output has been removed from the stack
as they are no longer needed when using config-download with
pre-provisioned nodes.

Change-Id: If94997621ebd1096326ba77a167564a728102b54
This commit is contained in:
James Slagle 2019-06-19 17:42:16 -04:00
parent dc4ceb5a75
commit c4a0224ed5
2 changed files with 5 additions and 22 deletions

View File

@ -1005,23 +1005,6 @@ resources:
- redis: {get_attr: [RedisVirtualIP, ip_address]}
CloudNames: {get_attr: [CloudNames, value]}
DeployedServerEnvironment:
type: OS::TripleO::DeployedServerEnvironment
properties:
RoleCounts:
{%- for role in roles %}
{{role.name}}DeployedServerCount: {get_param: {{role.name}}Count}
{%- endfor %}
VipMap:
map_merge:
- {get_attr: [VipMap, net_ip_map]}
- redis: {get_attr: [RedisVirtualIP, ip_address]}
DeployedServerPortMap:
map_merge:
list_concat:
{%- for role in roles %}
- {get_attr: [{{role.name}}, deployed_server_port_map]}
{%- endfor %}
outputs:
ManagedEndpoints:
@ -1106,11 +1089,6 @@ outputs:
ServerIdData:
description: Mapping of each role to a list of nova server IDs and the bootstrap ID
value: {get_attr: [ServerIdMap, value]}
DeployedServerEnvironment:
description:
Environment data that can be used as input into the services stack when
using split-stack.
value: {get_attr: [DeployedServerEnvironment, deployed_server_environment]}
BlacklistedHostnames:
description: List of blacklisted hostnames
value: {get_attr: [BlacklistedHostnames, value]}

View File

@ -0,0 +1,5 @@
---
other:
- The DeployedServerEnvironment output has been removed from the stack
as they are no longer needed when using config-download with
pre-provisioned nodes.