Merge "Use a single configuration file for specifying docker containers."
[apex-tripleo-heat-templates.git] / docker / services / heat-engine.yaml
1 heat_template_version: pike
2
3 description: >
4   OpenStack containerized Heat Engine service
5
6 parameters:
7   DockerHeatEngineImage:
8     description: image
9     type: string
10   DockerHeatConfigImage:
11     description: The container image to use for the heat config_volume
12     type: string
13   EndpointMap:
14     default: {}
15     description: Mapping of service endpoint -> protocol. Typically set
16                  via parameter_defaults in the resource registry.
17     type: json
18   ServiceData:
19     default: {}
20     description: Dictionary packing service data
21     type: json
22   ServiceNetMap:
23     default: {}
24     description: Mapping of service_name -> network name. Typically set
25                  via parameter_defaults in the resource registry.  This
26                  mapping overrides those in ServiceNetMapDefaults.
27     type: json
28   DefaultPasswords:
29     default: {}
30     type: json
31   RoleName:
32     default: ''
33     description: Role name on which the service is applied
34     type: string
35   RoleParameters:
36     default: {}
37     description: Parameters specific to the role
38     type: json
39
40
41 resources:
42
43   ContainersCommon:
44     type: ./containers-common.yaml
45
46   HeatBase:
47     type: ../../puppet/services/heat-engine.yaml
48     properties:
49       EndpointMap: {get_param: EndpointMap}
50       ServiceData: {get_param: ServiceData}
51       ServiceNetMap: {get_param: ServiceNetMap}
52       DefaultPasswords: {get_param: DefaultPasswords}
53       RoleName: {get_param: RoleName}
54       RoleParameters: {get_param: RoleParameters}
55
56 outputs:
57   role_data:
58     description: Role data for the Heat Engine role.
59     value:
60       service_name: {get_attr: [HeatBase, role_data, service_name]}
61       config_settings:
62         map_merge:
63           - get_attr: [HeatBase, role_data, config_settings]
64           - apache::default_vhost: false
65       step_config: &step_config
66         get_attr: [HeatBase, role_data, step_config]
67       service_config_settings: {get_attr: [HeatBase, role_data, service_config_settings]}
68       # BEGIN DOCKER SETTINGS
69       puppet_config:
70         config_volume: heat
71         puppet_tags: heat_config,file,concat,file_line
72         step_config: *step_config
73         config_image: {get_param: DockerHeatConfigImage}
74       kolla_config:
75         /var/lib/kolla/config_files/heat_engine.json:
76           command: /usr/bin/heat-engine --config-file /usr/share/heat/heat-dist.conf --config-file /etc/heat/heat.conf
77           config_files:
78             - source: "/var/lib/kolla/config_files/src/*"
79               dest: "/"
80               merge: true
81               preserve_properties: true
82           permissions:
83             - path: /var/log/heat
84               owner: heat:heat
85               recurse: true
86       docker_config:
87         # db sync runs before permissions set by kolla_config
88         step_2:
89           heat_init_log:
90             image: &heat_engine_image {get_param: DockerHeatEngineImage}
91             user: root
92             volumes:
93               - /var/log/containers/heat:/var/log/heat
94             command: ['/bin/bash', '-c', 'chown -R heat:heat /var/log/heat']
95         step_3:
96           heat_engine_db_sync:
97             image: *heat_engine_image
98             net: host
99             privileged: false
100             detach: false
101             user: root
102             volumes:
103               list_concat:
104                 - {get_attr: [ContainersCommon, volumes]}
105                 -
106                   - /var/lib/config-data/heat/etc/heat/:/etc/heat/:ro
107                   - /var/log/containers/heat:/var/log/heat
108             command: "/usr/bin/bootstrap_host_exec heat_engine su heat -s /bin/bash -c 'heat-manage db_sync'"
109         step_4:
110           heat_engine:
111             image: *heat_engine_image
112             net: host
113             privileged: false
114             restart: always
115             volumes:
116               list_concat:
117                 - {get_attr: [ContainersCommon, volumes]}
118                 -
119                   - /var/lib/kolla/config_files/heat_engine.json:/var/lib/kolla/config_files/config.json:ro
120                   - /var/lib/config-data/puppet-generated/heat/:/var/lib/kolla/config_files/src:ro
121                   - /var/log/containers/heat:/var/log/heat
122             environment:
123               - KOLLA_CONFIG_STRATEGY=COPY_ALWAYS
124       host_prep_tasks:
125         - name: create persistent logs directory
126           file:
127             path: /var/log/containers/heat
128             state: directory
129       upgrade_tasks:
130         - name: Stop and disable heat_engine service
131           tags: step2
132           service: name=openstack-heat-engine state=stopped enabled=no