Merge "Use a single configuration file for specifying docker containers."
[apex-tripleo-heat-templates.git] / docker / services / mistral-executor.yaml
1 heat_template_version: pike
2
3 description: >
4   OpenStack containerized Mistral Executor service
5
6 parameters:
7   DockerMistralExecutorImage:
8     description: image
9     type: string
10   DockerMistralConfigImage:
11     description: The container image to use for the mistral 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   MistralBase:
47     type: ../../puppet/services/mistral-executor.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 Mistral Executor role.
59     value:
60       service_name: {get_attr: [MistralBase, role_data, service_name]}
61       config_settings:
62         map_merge:
63           - get_attr: [MistralBase, role_data, config_settings]
64       step_config: &step_config
65         get_attr: [MistralBase, role_data, step_config]
66       service_config_settings: {get_attr: [MistralBase, role_data, service_config_settings]}
67       # BEGIN DOCKER SETTINGS
68       puppet_config:
69         config_volume: mistral
70         puppet_tags: mistral_config
71         step_config: *step_config
72         config_image: {get_param: DockerMistralConfigImage}
73       kolla_config:
74         /var/lib/kolla/config_files/mistral_executor.json:
75           command: /usr/bin/mistral-server --config-file=/etc/mistral/mistral.conf --log-file=/var/log/mistral/executor.log --server=executor
76           config_files:
77             - source: "/var/lib/kolla/config_files/src/*"
78               dest: "/"
79               merge: true
80               preserve_properties: true
81           permissions:
82             - path: /var/log/mistral
83               owner: mistral:mistral
84               recurse: true
85       docker_config:
86         step_4:
87           mistral_executor:
88             image: {get_param: DockerMistralExecutorImage}
89             net: host
90             privileged: false
91             restart: always
92             volumes:
93               list_concat:
94                 - {get_attr: [ContainersCommon, volumes]}
95                 -
96                   - /var/lib/kolla/config_files/mistral_executor.json:/var/lib/kolla/config_files/config.json:ro
97                   - /var/lib/config-data/puppet-generated/mistral/:/var/lib/kolla/config_files/src:ro
98                   - /run:/run
99                   # FIXME: this is required in order for Nova cells
100                   # initialization workflows on the Undercloud. Need to
101                   # exclude this on the overcloud for security reasons.
102                   - /var/lib/config-data/nova/etc/nova:/etc/nova:ro
103                   - /var/log/containers/mistral:/var/log/mistral
104             environment:
105               - KOLLA_CONFIG_STRATEGY=COPY_ALWAYS
106       host_prep_tasks:
107         - name: create persistent logs directory
108           file:
109             path: /var/log/containers/mistral
110             state: directory
111       upgrade_tasks:
112         - name: Stop and disable mistral_executor service
113           tags: step2
114           service: name=openstack-mistral-executor state=stopped enabled=no