aboutsummaryrefslogtreecommitdiffstats
path: root/overcloud.j2.yaml
diff options
context:
space:
mode:
authorJenkins <jenkins@review.openstack.org>2017-06-26 23:58:51 +0000
committerGerrit Code Review <review@openstack.org>2017-06-26 23:58:51 +0000
commiteda12ae632d0d2756b51868858a87f5452aab85f (patch)
tree87feb6a2b3974dacde81fdc3ef31a9800f7c4a3a /overcloud.j2.yaml
parentce9f018e420614c68fe0c716f2e572b8f638e7b7 (diff)
parentc8a266d99e4844c14526dccbad9ce3f48d8740a8 (diff)
Merge "Add os-collect-config data as an output"
Diffstat (limited to 'overcloud.j2.yaml')
-rw-r--r--overcloud.j2.yaml15
1 files changed, 15 insertions, 0 deletions
diff --git a/overcloud.j2.yaml b/overcloud.j2.yaml
index e4c04b4e..3cecac14 100644
--- a/overcloud.j2.yaml
+++ b/overcloud.j2.yaml
@@ -741,6 +741,15 @@ resources:
{{role.name}}: {get_attr: [{{role.name}}ServiceChainRoleData, value]}
{% endfor %}
+ ServerOsCollectConfigData:
+ type: OS::Heat::Value
+ properties:
+ type: json
+ value:
+{% for role in roles %}
+ {{role.name}}: {get_attr: [{{role.name}}, attributes, os_collect_config]}
+{% endfor %}
+
outputs:
ManagedEndpoints:
description: Asserts that the keystone endpoints have been provisioned.
@@ -791,3 +800,9 @@ outputs:
{% for role in roles %}
{{role.name}}: {get_attr: [{{role.name}}NetworkHostnameMap, value]}
{% endfor %}
+ ServerOsCollectConfigData:
+ description: The os-collect-config configuration associated with each server resource
+ value:
+{% for role in roles %}
+ {{role.name}}: {get_attr: [{{role.name}}, attributes, os_collect_config]}
+{% endfor %}