5964f88354295a81a5f6e79dfc024f241414798b
[apex-tripleo-heat-templates.git] / puppet / services / nova-conductor.yaml
1 heat_template_version: 2016-04-08
2
3 description: >
4   OpenStack Nova Conductor service configured with Puppet
5
6 parameters:
7   EndpointMap:
8     default: {}
9     description: Mapping of service endpoint -> protocol. Typically set
10                  via parameter_defaults in the resource registry.
11     type: json
12   NovaWorkers:
13     default: 0
14     description: Number of workers for Nova Conductor service.
15     type: number
16
17 resources:
18   NovaBase:
19     type: ./nova-base.yaml
20     properties:
21       EndpointMap: {get_param: EndpointMap}
22
23 outputs:
24   role_data:
25     description: Role data for the Nova Conductor service.
26     value:
27       service_name: nova_conductor
28       config_settings:
29         map_merge:
30           - get_attr: [NovaBase, role_data, config_settings]
31           - nova::conductor::workers: {get_param: NovaWorkers}
32       step_config: |
33         include tripleo::profile::base::nova::conductor