aboutsummaryrefslogtreecommitdiffstats
path: root/overcloud.yaml
diff options
context:
space:
mode:
authorJenkins <jenkins@review.openstack.org>2016-08-08 12:55:28 +0000
committerGerrit Code Review <review@openstack.org>2016-08-08 12:55:28 +0000
commitff43f1d38ac2821b24ed81fc4b3537be7035f8a5 (patch)
tree9564f62e28665f980034e10d2f038a43980a6424 /overcloud.yaml
parente06ff3d45b2d92777ee16360ff55d5d4c10ac433 (diff)
parent7879f9d06b032ea486218bf7cdcf34e1d2bca23c (diff)
Merge "Convert AllNodesConfig hosts config to a map"
Diffstat (limited to 'overcloud.yaml')
-rw-r--r--overcloud.yaml21
1 files changed, 16 insertions, 5 deletions
diff --git a/overcloud.yaml b/overcloud.yaml
index e3d0bdf0..acd9b1fa 100644
--- a/overcloud.yaml
+++ b/overcloud.yaml
@@ -723,12 +723,23 @@ resources:
allNodesConfig:
type: OS::TripleO::AllNodes::SoftwareConfig
properties:
- compute_hosts: {get_attr: [Compute, hosts_entry]}
- controller_hosts: {get_attr: [Controller, hosts_entry]}
+ hosts:
+ - list_join:
+ - '\n'
+ - {get_attr: [Compute, hosts_entry]}
+ - list_join:
+ - '\n'
+ - {get_attr: [Controller, hosts_entry]}
+ - list_join:
+ - '\n'
+ - {get_attr: [BlockStorage, hosts_entry]}
+ - list_join:
+ - '\n'
+ - {get_attr: [ObjectStorage, hosts_entry]}
+ - list_join:
+ - '\n'
+ - {get_attr: [CephStorage, hosts_entry]}
controller_ips: {get_attr: [Controller, ip_address]}
- block_storage_hosts: {get_attr: [BlockStorage, hosts_entry]}
- object_storage_hosts: {get_attr: [ObjectStorage, hosts_entry]}
- ceph_storage_hosts: {get_attr: [CephStorage, hosts_entry]}
controller_names: {get_attr: [Controller, hostname]}
rabbit_node_ips: {get_attr: [ControllerIpListMap, net_ip_map, {get_param: [ServiceNetMap, RabbitMqNetwork]}]}
mongo_node_ips: {get_attr: [ControllerIpListMap, net_ip_map, {get_param: [ServiceNetMap, MongoDbNetwork]}]}