Merge "Add RoleNetHostnameMap output"
This commit is contained in:
commit
7996b2e817
@ -373,7 +373,13 @@ resources:
|
|||||||
EnabledServices: {get_attr: [{{role.name}}ServiceNames, value]}
|
EnabledServices: {get_attr: [{{role.name}}ServiceNames, value]}
|
||||||
ServiceNetMap: {get_attr: [ServiceNetMap, service_net_map_lower]}
|
ServiceNetMap: {get_attr: [ServiceNetMap, service_net_map_lower]}
|
||||||
ServiceHostnameList: {get_attr: [{{role.name}}, hostname]}
|
ServiceHostnameList: {get_attr: [{{role.name}}, hostname]}
|
||||||
NetworkHostnameMap:
|
NetworkHostnameMap: {get_attr: [{{role.name}}NetworkHostnameMap, value]}
|
||||||
|
|
||||||
|
{{role.name}}NetworkHostnameMap:
|
||||||
|
type: OS::Heat::Value
|
||||||
|
properties:
|
||||||
|
type: json
|
||||||
|
value:
|
||||||
# Note (shardy) this somewhat complex yaql may be replaced
|
# Note (shardy) this somewhat complex yaql may be replaced
|
||||||
# with a map_deep_merge function in ocata. It merges the
|
# with a map_deep_merge function in ocata. It merges the
|
||||||
# list of maps, but appends to colliding lists so we can
|
# list of maps, but appends to colliding lists so we can
|
||||||
@ -740,4 +746,10 @@ outputs:
|
|||||||
value:
|
value:
|
||||||
{% for role in roles %}
|
{% for role in roles %}
|
||||||
{{role.name}}: {get_attr: [{{role.name}}IpListMap, net_ip_map]}
|
{{role.name}}: {get_attr: [{{role.name}}IpListMap, net_ip_map]}
|
||||||
|
{% endfor %}
|
||||||
|
RoleNetHostnameMap:
|
||||||
|
description: Mapping of each network to a list of hostnames for each role
|
||||||
|
value:
|
||||||
|
{% for role in roles %}
|
||||||
|
{{role.name}}: {get_attr: [{{role.name}}NetworkHostnameMap, value]}
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
|
Loading…
Reference in New Issue
Block a user