Update the template_version alias for all the templates to pike.
[apex-tripleo-heat-templates.git] / docker / services / nova-metadata.yaml
1 heat_template_version: pike
2
3 description: >
4   OpenStack containerized Nova Metadata service
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   ServiceNetMap:
13     default: {}
14     description: Mapping of service_name -> network name. Typically set
15                  via parameter_defaults in the resource registry.  This
16                  mapping overrides those in ServiceNetMapDefaults.
17     type: json
18   DefaultPasswords:
19     default: {}
20     type: json
21   RoleName:
22     default: ''
23     description: Role name on which the service is applied
24     type: string
25   RoleParameters:
26     default: {}
27     description: Parameters specific to the role
28     type: json
29
30 resources:
31
32   NovaMetadataBase:
33     type: ../../puppet/services/nova-metadata.yaml
34     properties:
35       EndpointMap: {get_param: EndpointMap}
36       ServiceNetMap: {get_param: ServiceNetMap}
37       DefaultPasswords: {get_param: DefaultPasswords}
38       RoleName: {get_param: RoleName}
39       RoleParameters: {get_param: RoleParameters}
40
41 outputs:
42   role_data:
43     description: Role data for the Nova Metadata service.
44     value:
45       service_name: {get_attr: [NovaMetadataBase, role_data, service_name]}
46       config_settings:
47         map_merge:
48           - get_attr: [NovaMetadataBase, role_data, config_settings]
49       step_config: &step_config
50         get_attr: [NovaMetadataBase, role_data, step_config]
51       service_config_settings: {get_attr: [NovaMetadataBase, role_data, service_config_settings]}
52       # BEGIN DOCKER SETTINGS
53       puppet_config:
54         config_volume: ''
55         puppet_tags: ''
56         step_config: *step_config
57         config_image: ''
58       kolla_config: {}
59       docker_config: {}