aboutsummaryrefslogtreecommitdiffstats
path: root/overcloud.j2.yaml
diff options
context:
space:
mode:
authorJenkins <jenkins@review.openstack.org>2016-09-23 17:45:24 +0000
committerGerrit Code Review <review@openstack.org>2016-09-23 17:45:24 +0000
commit5d49b75b6e8c608ede6fc7bd63b06055ce5f6317 (patch)
treeba0ffab282b7a60d705370a6add0ba2db0c7dcbc /overcloud.j2.yaml
parent9d67d7b3b11b688be0b40fc2fcfb1daf5b5157df (diff)
parentd5a25f96d229c6274c6d9d790e4308c8f555120a (diff)
Merge "Remove hard-coded roles in EnabledServices output"
Diffstat (limited to 'overcloud.j2.yaml')
-rw-r--r--overcloud.j2.yaml8
1 files changed, 3 insertions, 5 deletions
diff --git a/overcloud.j2.yaml b/overcloud.j2.yaml
index 5c75a66f..e2ff4c14 100644
--- a/overcloud.j2.yaml
+++ b/overcloud.j2.yaml
@@ -551,8 +551,6 @@ outputs:
EnabledServices:
description: The services enabled on each role
value:
- Controller: {get_attr: [ControllerServiceChain, role_data, service_names]}
- Compute: {get_attr: [ComputeServiceChain, role_data, service_names]}
- BlockStorage: {get_attr: [BlockStorageServiceChain, role_data, service_names]}
- ObjectStorage: {get_attr: [ObjectStorageServiceChain, role_data, service_names]}
- CephStorage: {get_attr: [CephStorageServiceChain, role_data, service_names]}
+{% for role in roles %}
+ {{role.name}}: {get_attr: [{{role.name}}ServiceChain, role_data, service_names]}
+{% endfor %}