Merge "Add CephConfigOverrides to allow arbitrary configs in ceph.conf" into stable...
[apex-tripleo-heat-templates.git] / docker / services / nova-api.yaml
1 heat_template_version: pike
2
3 description: >
4   OpenStack containerized Nova API service
5
6 parameters:
7   DockerNovaApiImage:
8     description: image
9     type: string
10   DockerNovaConfigImage:
11     description: The container image to use for the nova 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   EnableInternalTLS:
40     type: boolean
41     default: false
42
43 conditions:
44
45   internal_tls_enabled: {equals: [{get_param: EnableInternalTLS}, true]}
46
47 resources:
48
49   ContainersCommon:
50     type: ./containers-common.yaml
51
52   MySQLClient:
53     type: ../../puppet/services/database/mysql-client.yaml
54
55   NovaApiBase:
56     type: ../../puppet/services/nova-api.yaml
57     properties:
58       EndpointMap: {get_param: EndpointMap}
59       ServiceData: {get_param: ServiceData}
60       ServiceNetMap: {get_param: ServiceNetMap}
61       DefaultPasswords: {get_param: DefaultPasswords}
62       RoleName: {get_param: RoleName}
63       RoleParameters: {get_param: RoleParameters}
64
65 outputs:
66   role_data:
67     description: Role data for the Nova API role.
68     value:
69       service_name: {get_attr: [NovaApiBase, role_data, service_name]}
70       config_settings:
71         map_merge:
72           - get_attr: [NovaApiBase, role_data, config_settings]
73           - apache::default_vhost: false
74       step_config: &step_config
75         list_join:
76           - "\n"
77           - - "['Nova_cell_v2'].each |String $val| { noop_resource($val) }"
78             - {get_attr: [NovaApiBase, role_data, step_config]}
79             - {get_attr: [MySQLClient, role_data, step_config]}
80       service_config_settings: {get_attr: [NovaApiBase, role_data, service_config_settings]}
81       # BEGIN DOCKER SETTINGS
82       puppet_config:
83         config_volume: nova
84         puppet_tags: nova_config
85         step_config: *step_config
86         config_image: {get_param: DockerNovaConfigImage}
87       kolla_config:
88         /var/lib/kolla/config_files/nova_api.json:
89           command: /usr/sbin/httpd -DFOREGROUND
90           config_files:
91             - source: "/var/lib/kolla/config_files/src/*"
92               dest: "/"
93               merge: true
94               preserve_properties: true
95           permissions:
96             - path: /var/log/nova
97               owner: nova:nova
98               recurse: true
99         /var/lib/kolla/config_files/nova_api_cron.json:
100           command: /usr/sbin/crond -n
101           config_files:
102             - source: "/var/lib/kolla/config_files/src/*"
103               dest: "/"
104               merge: true
105               preserve_properties: true
106           permissions:
107             - path: /var/log/nova
108               owner: nova:nova
109               recurse: true
110       docker_config:
111         # db sync runs before permissions set by kolla_config
112         step_2:
113           nova_init_logs:
114             image: &nova_api_image {get_param: DockerNovaApiImage}
115             privileged: false
116             user: root
117             volumes:
118               - /var/log/containers/nova:/var/log/nova
119               - /var/log/containers/httpd/nova-api:/var/log/httpd
120             command: ['/bin/bash', '-c', 'chown -R nova:nova /var/log/nova']
121         step_3:
122           nova_api_db_sync:
123             start_order: 0
124             image: *nova_api_image
125             net: host
126             detach: false
127             user: root
128             volumes: &nova_api_bootstrap_volumes
129               list_concat:
130                 - {get_attr: [ContainersCommon, volumes]}
131                 -
132                   - /var/lib/config-data/nova/etc/my.cnf.d/tripleo.cnf:/etc/my.cnf.d/tripleo.cnf:ro
133                   - /var/lib/config-data/nova/etc/nova/:/etc/nova/:ro
134                   - /var/log/containers/nova:/var/log/nova
135                   - /var/log/containers/httpd/nova-api:/var/log/httpd
136             command: "/usr/bin/bootstrap_host_exec nova_api su nova -s /bin/bash -c '/usr/bin/nova-manage api_db sync'"
137           # FIXME: we probably want to wait on the 'cell_v2 update' in order for this
138           # to be capable of upgrading a baremetal setup. This is to ensure the name
139           # of the cell is 'default'
140           nova_api_map_cell0:
141             start_order: 1
142             image: *nova_api_image
143             net: host
144             detach: false
145             user: root
146             volumes: *nova_api_bootstrap_volumes
147             command: "/usr/bin/bootstrap_host_exec nova_api su nova -s /bin/bash -c '/usr/bin/nova-manage cell_v2 map_cell0'"
148           nova_api_create_default_cell:
149             start_order: 2
150             image: *nova_api_image
151             net: host
152             detach: false
153             volumes: *nova_api_bootstrap_volumes
154             # NOTE: allowing the exit code 2 is a dirty way of making
155             # this idempotent (if the resource already exists a conflict
156             # is raised)
157             exit_codes: [0,2]
158             user: root
159             command: "/usr/bin/bootstrap_host_exec nova_api su nova -s /bin/bash -c '/usr/bin/nova-manage cell_v2 create_cell --name=default'"
160           nova_db_sync:
161             start_order: 3
162             image: *nova_api_image
163             net: host
164             detach: false
165             volumes: *nova_api_bootstrap_volumes
166             user: root
167             command: "/usr/bin/bootstrap_host_exec nova_api su nova -s /bin/bash -c '/usr/bin/nova-manage db sync'"
168         step_4:
169           nova_api:
170             start_order: 2
171             image: *nova_api_image
172             net: host
173             user: root
174             privileged: true
175             restart: always
176             volumes:
177               list_concat:
178                 - {get_attr: [ContainersCommon, volumes]}
179                 -
180                   - /var/lib/kolla/config_files/nova_api.json:/var/lib/kolla/config_files/config.json:ro
181                   - /var/lib/config-data/puppet-generated/nova/:/var/lib/kolla/config_files/src:ro
182                   - /var/log/containers/nova:/var/log/nova
183                   - /var/log/containers/httpd/nova-api:/var/log/httpd
184                   -
185                     if:
186                       - internal_tls_enabled
187                       - /etc/pki/tls/certs/httpd:/etc/pki/tls/certs/httpd:ro
188                       - ''
189                   -
190                     if:
191                       - internal_tls_enabled
192                       - /etc/pki/tls/private/httpd:/etc/pki/tls/private/httpd:ro
193                       - ''
194             environment:
195               - KOLLA_CONFIG_STRATEGY=COPY_ALWAYS
196           nova_api_cron:
197             image: *nova_api_image
198             net: host
199             user: root
200             privileged: false
201             restart: always
202             healthcheck:
203               test: /bin/true
204             volumes:
205               list_concat:
206                 - {get_attr: [ContainersCommon, volumes]}
207                 -
208                   - /var/lib/kolla/config_files/nova_api_cron.json:/var/lib/kolla/config_files/config.json:ro
209                   - /var/lib/config-data/puppet-generated/nova/:/var/lib/kolla/config_files/src:ro
210                   - /var/log/containers/nova:/var/log/nova
211                   - /var/log/containers/httpd/nova-api:/var/log/httpd
212             environment:
213               - KOLLA_CONFIG_STRATEGY=COPY_ALWAYS
214         step_5:
215           nova_api_discover_hosts:
216             start_order: 1
217             image: *nova_api_image
218             net: host
219             detach: false
220             volumes: *nova_api_bootstrap_volumes
221             user: root
222             command: "/usr/bin/bootstrap_host_exec nova_api su nova -s /bin/bash -c '/usr/bin/nova-manage cell_v2 discover_hosts --verbose'"
223       metadata_settings:
224         get_attr: [NovaApiBase, role_data, metadata_settings]
225       host_prep_tasks:
226         - name: create persistent logs directory
227           file:
228             path: "{{ item }}"
229             state: directory
230           with_items:
231             - /var/log/containers/nova
232             - /var/log/containers/httpd/nova-api
233       upgrade_tasks:
234         - name: Stop and disable nova_api service
235           tags: step2
236           service: name=openstack-nova-api state=stopped enabled=no
237         - name: remove old nova cron jobs
238           file:
239             path: /var/spool/cron/nova
240             state: absent