diff options
author | Jenkins <jenkins@review.openstack.org> | 2016-09-03 16:03:51 +0000 |
---|---|---|
committer | Gerrit Code Review <review@openstack.org> | 2016-09-03 16:03:51 +0000 |
commit | 51258bc6bb87c5f434b286d3f843587c821a69de (patch) | |
tree | 7a658481fe03f897fbc7d8c22fdd0cafb9f1cae3 /network/ports | |
parent | 2c567e06ea75167c13d396a31a1996a0f60c45a2 (diff) | |
parent | bf3bc0d551f180f931e6cb3234307a540affd0de (diff) |
Merge "Generate composable service node_names lists"
Diffstat (limited to 'network/ports')
-rw-r--r-- | network/ports/net_ip_list_map.yaml | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/network/ports/net_ip_list_map.yaml b/network/ports/net_ip_list_map.yaml index 36f3358e..430158ac 100644 --- a/network/ports/net_ip_list_map.yaml +++ b/network/ports/net_ip_list_map.yaml @@ -28,6 +28,9 @@ parameters: ServiceNetMap: default: {} type: json + ServiceHostnameList: + default: [] + type: comma_delimited_list outputs: net_ip_map: @@ -71,3 +74,13 @@ outputs: storage_mgmt: {get_param: StorageMgmtIpList} tenant: {get_param: TenantIpList} management: {get_param: ManagementIpList} + service_hostnames: + description: > + Map of enabled services to a list of hostnames where they're running + value: + map_merge: + repeat: + template: + SERVICE_node_names: {get_param: ServiceHostnameList} + for_each: + SERVICE: {get_param: EnabledServices} |