Merge "Overwrite nova placement with stub for docker"
[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: &step_config
50         get_attr: [HeatBase, role_data, step_config]
51       service_config_settings: {get_attr: [HeatBase, role_data, service_config_settings]}
52       # BEGIN DOCKER SETTINGS
53       docker_image: &heat_engine_image
54         list_join:
55           - '/'
56           - [ {get_param: DockerNamespace}, {get_param: DockerHeatEngineImage} ]
57       puppet_config:
58         config_volume: heat
59         puppet_tags: heat_config,file,concat,file_line
60         step_config: *step_config
61         config_image: *heat_engine_image
62       kolla_config:
63          /var/lib/kolla/config_files/heat_engine.json:
64            command: /usr/bin/heat-engine --config-file /usr/share/heat/heat-dist.conf --config-file /etc/heat/heat.conf
65            config_files:
66            - dest: /etc/heat/heat.conf
67              owner: heat
68              perm: '0640'
69              source: /var/lib/kolla/config_files/src/etc/heat/heat.conf
70       docker_config:
71         step_3:
72           heat_engine_db_sync:
73             image: *heat_engine_image
74             net: host
75             privileged: false
76             detach: false
77             volumes:
78               - /var/lib/config-data/heat/etc/heat:/etc/heat:ro
79               - /etc/hosts:/etc/hosts:ro
80               - /etc/localtime:/etc/localtime:ro
81             command: ['heat-manage', 'db_sync']
82         step_4:
83           heat_engine:
84             image: *heat_engine_image
85             net: host
86             privileged: false
87             restart: always
88             volumes:
89               - /run:/run
90               - /var/lib/kolla/config_files/heat_engine.json:/var/lib/kolla/config_files/config.json:ro
91               - /var/lib/config-data/heat/:/var/lib/kolla/config_files/src:ro
92               - /etc/hosts:/etc/hosts:ro
93               - /etc/localtime:/etc/localtime:ro
94             environment:
95               - KOLLA_CONFIG_STRATEGY=COPY_ALWAYS