diff options
author | Jenkins <jenkins@review.openstack.org> | 2016-12-22 11:58:32 +0000 |
---|---|---|
committer | Gerrit Code Review <review@openstack.org> | 2016-12-22 11:58:32 +0000 |
commit | 58f3d248bab6ea0ed3433fd3aa485d8c93060f56 (patch) | |
tree | 31885a68b376bdb5064cee63254f4ec4d3a378e5 /network | |
parent | 33bdba26d668d91f213515a91f8797b9b249d84a (diff) | |
parent | 8d796ea0e4afd69f9776d07f491b1a0d83e34128 (diff) |
Merge "Add a per service bootstrap node variable"
Diffstat (limited to 'network')
-rw-r--r-- | network/ports/net_ip_list_map.yaml | 17 |
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]} |