aboutsummaryrefslogtreecommitdiffstats
path: root/network
diff options
context:
space:
mode:
authorJenkins <jenkins@review.openstack.org>2016-12-22 11:58:32 +0000
committerGerrit Code Review <review@openstack.org>2016-12-22 11:58:32 +0000
commit58f3d248bab6ea0ed3433fd3aa485d8c93060f56 (patch)
tree31885a68b376bdb5064cee63254f4ec4d3a378e5 /network
parent33bdba26d668d91f213515a91f8797b9b249d84a (diff)
parent8d796ea0e4afd69f9776d07f491b1a0d83e34128 (diff)
Merge "Add a per service bootstrap node variable"
Diffstat (limited to 'network')
-rw-r--r--network/ports/net_ip_list_map.yaml17
1 files changed, 17 insertions, 0 deletions
diff --git a/network/ports/net_ip_list_map.yaml b/network/ports/net_ip_list_map.yaml
index d7863e02..263eccd8 100644
--- a/network/ports/net_ip_list_map.yaml
+++ b/network/ports/net_ip_list_map.yaml
@@ -138,3 +138,20 @@ outputs:
SERVICE_short_node_names: {get_param: ServiceHostnameList}
for_each:
SERVICE: {get_attr: [EnabledServicesValue, value]}
+ short_service_bootstrap_hostnames:
+ description: >
+ Map of enabled services to a list of hostnames where they're running regardless of the network
+ Used for bootstrap purposes
+ value:
+ yaql:
+ # If ServiceHostnameList is empty the role is deployed with zero nodes
+ # therefore we don't want to add any *_node_names to the map
+ expression: dict($.data.map.items().where(len($[1]) > 0))
+ data:
+ map:
+ map_merge:
+ repeat:
+ template:
+ SERVICE_short_bootstrap_node_name: {get_param: ServiceHostnameList}
+ for_each:
+ SERVICE: {get_attr: [EnabledServicesValue, value]}