Merge "Add support for node groups in NetConfigDataLookup"
[apex-tripleo-heat-templates.git] / docker / services / heat-engine.yaml
1 heat_template_version: ocata
2
3 description: >
4   OpenStack containerized Heat Engine service
5
6 parameters:
7   DockerNamespace:
8     description: namespace
9     default: 'tripleoupstream'
10     type: string
11   DockerHeatEngineImage:
12     description: image
13     default: 'centos-binary-heat-engine:latest'
14     type: string
15   EndpointMap:
16     default: {}
17     description: Mapping of service endpoint -> protocol. Typically set
18                  via parameter_defaults in the resource registry.
19     type: json
20   ServiceNetMap:
21     default: {}
22     description: Mapping of service_name -> network name. Typically set
23                  via parameter_defaults in the resource registry.  This
24                  mapping overrides those in ServiceNetMapDefaults.
25     type: json
26   DefaultPasswords:
27     default: {}
28     type: json
29
30
31 resources:
32
33   HeatBase:
34     type: ../../puppet/services/heat-engine.yaml
35     properties:
36       EndpointMap: {get_param: EndpointMap}
37       ServiceNetMap: {get_param: ServiceNetMap}
38       DefaultPasswords: {get_param: DefaultPasswords}
39
40 outputs:
41   role_data:
42     description: Role data for the Heat Engine role.
43     value:
44       service_name: {get_attr: [HeatBase, role_data, service_name]}
45       config_settings:
46         map_merge:
47           - get_attr: [HeatBase, role_data, config_settings]
48           - apache::default_vhost: false
49       step_config: {get_attr: [HeatBase, role_data, step_config]}
50       service_config_settings: {get_attr: [HeatBase, role_data, service_config_settings]}
51       # BEGIN DOCKER SETTINGS
52       docker_image: &heat_engine_image
53         list_join:
54           - '/'
55           - [ {get_param: DockerNamespace}, {get_param: DockerHeatEngineImage} ]
56       puppet_tags: heat_config,file,concat,file_line
57       config_volume: heat
58       config_image: *heat_engine_image
59       kolla_config:
60          /var/lib/kolla/config_files/heat_engine.json:
61            command: /usr/bin/heat-engine --config-file /usr/share/heat/heat-dist.conf --config-file /etc/heat/heat.conf
62            config_files:
63            - dest: /etc/heat/heat.conf
64              owner: heat
65              perm: '0640'
66              source: /var/lib/kolla/config_files/src/etc/heat/heat.conf
67       docker_config:
68         step_3:
69           heat_engine_db_sync:
70             image: *heat_engine_image
71             net: host
72             privileged: false
73             detach: false
74             volumes:
75               - /var/lib/config-data/heat/etc/heat:/etc/heat:ro
76               - /etc/hosts:/etc/hosts:ro
77               - /etc/localtime:/etc/localtime:ro
78             command: ['heat-manage', 'db_sync']
79         step_4:
80           heat_engine:
81             image: *heat_engine_image
82             net: host
83             privileged: false
84             restart: always
85             volumes:
86               - /run:/run
87               - /var/lib/kolla/config_files/heat_engine.json:/var/lib/kolla/config_files/config.json:ro
88               - /var/lib/config-data/heat/:/var/lib/kolla/config_files/src:ro
89               - /etc/hosts:/etc/hosts:ro
90               - /etc/localtime:/etc/localtime:ro
91             environment:
92               - KOLLA_CONFIG_STRATEGY=COPY_ALWAYS