Merge "Persist containerized services httpd logs" into stable/pike
[apex-tripleo-heat-templates.git] / docker / services / gnocchi-api.yaml
1 heat_template_version: pike
2
3 description: >
4   OpenStack containerized gnocchi service
5
6 parameters:
7   DockerGnocchiApiImage:
8     description: image
9     type: string
10   DockerGnocchiConfigImage:
11     description: The container image to use for the gnocchi 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   NumberOfStorageSacks:
43     default: 128
44     description: Number of storage sacks to create.
45     type: number
46
47 conditions:
48
49   internal_tls_enabled: {equals: [{get_param: EnableInternalTLS}, true]}
50
51 resources:
52
53   ContainersCommon:
54     type: ./containers-common.yaml
55
56   GnocchiApiPuppetBase:
57       type: ../../puppet/services/gnocchi-api.yaml
58       properties:
59         EndpointMap: {get_param: EndpointMap}
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 gnocchi API role.
68     value:
69       service_name: {get_attr: [GnocchiApiPuppetBase, role_data, service_name]}
70       config_settings:
71         map_merge:
72           - get_attr: [GnocchiApiPuppetBase, role_data, config_settings]
73           - apache::default_vhost: false
74       step_config: &step_config
75         get_attr: [GnocchiApiPuppetBase, role_data, step_config]
76       service_config_settings: {get_attr: [GnocchiApiPuppetBase, role_data, service_config_settings]}
77       # BEGIN DOCKER SETTINGS
78       puppet_config:
79         config_volume: gnocchi
80         puppet_tags: gnocchi_api_paste_ini,gnocchi_config
81         step_config: *step_config
82         config_image: {get_param: DockerGnocchiConfigImage}
83       kolla_config:
84         /var/lib/kolla/config_files/gnocchi_api.json:
85           command: /usr/sbin/httpd -DFOREGROUND
86           config_files:
87             - source: "/var/lib/kolla/config_files/src/*"
88               dest: "/"
89               merge: true
90               preserve_properties: true
91             - source: "/var/lib/kolla/config_files/src-ceph/"
92               dest: "/etc/ceph/"
93               merge: true
94               preserve_properties: true
95           permissions:
96             - path: /var/log/gnocchi
97               owner: gnocchi:gnocchi
98               recurse: true
99       docker_config:
100         # db sync runs before permissions set by kolla_config
101         step_2:
102           gnocchi_init_log:
103             image: &gnocchi_api_image {get_param: DockerGnocchiApiImage}
104             user: root
105             volumes:
106               - /var/log/containers/gnocchi:/var/log/gnocchi
107               - /var/log/containers/httpd/gnocchi-api:/var/log/httpd
108             command: ['/bin/bash', '-c', 'chown -R gnocchi:gnocchi /var/log/gnocchi']
109         step_4:
110           gnocchi_db_sync:
111             image: *gnocchi_api_image
112             net: host
113             detach: false
114             privileged: false
115             user: root
116             volumes:
117               list_concat:
118                 - {get_attr: [ContainersCommon, volumes]}
119                 -
120                   - /var/lib/config-data/gnocchi/etc/my.cnf.d/tripleo.cnf:/etc/my.cnf.d/tripleo.cnf:ro
121                   - /var/lib/config-data/gnocchi/etc/gnocchi/:/etc/gnocchi/:ro
122                   - /var/log/containers/gnocchi:/var/log/gnocchi
123                   - /var/log/containers/httpd/gnocchi-api:/var/log/httpd
124                   - /etc/ceph:/etc/ceph:ro
125             command:
126               str_replace:
127                 template: /usr/bin/bootstrap_host_exec gnocchi_api su gnocchi -s /bin/bash -c '/usr/bin/gnocchi-upgrade --sacks-number=SACK_NUM'
128                 params:
129                   SACK_NUM: {get_param: NumberOfStorageSacks}
130         step_5:
131           gnocchi_api:
132             image: *gnocchi_api_image
133             net: host
134             privileged: false
135             restart: always
136             volumes:
137               list_concat:
138                 - {get_attr: [ContainersCommon, volumes]}
139                 -
140                   - /var/lib/kolla/config_files/gnocchi_api.json:/var/lib/kolla/config_files/config.json:ro
141                   - /var/lib/config-data/puppet-generated/gnocchi/:/var/lib/kolla/config_files/src:ro
142                   - /var/log/containers/gnocchi:/var/log/gnocchi
143                   - /var/log/containers/httpd/gnocchi-api:/var/log/httpd
144                   - /etc/ceph:/var/lib/kolla/config_files/src-ceph:ro
145                   -
146                     if:
147                       - internal_tls_enabled
148                       - /etc/pki/tls/certs/httpd:/etc/pki/tls/certs/httpd:ro
149                       - ''
150                   -
151                     if:
152                       - internal_tls_enabled
153                       - /etc/pki/tls/private/httpd:/etc/pki/tls/private/httpd:ro
154                       - ''
155             environment:
156               - KOLLA_CONFIG_STRATEGY=COPY_ALWAYS
157       host_prep_tasks:
158         - name: create persistent logs directory
159           file:
160             path: "{{ item }}"
161             state: directory
162           with_items:
163             - /var/log/containers/gnocchi
164             - /var/log/containers/httpd/gnocchi-api
165         - name: ensure ceph configurations exist
166           file:
167             path: /etc/ceph
168             state: directory
169       upgrade_tasks:
170         - name: Stop and disable httpd service
171           tags: step2
172           service: name=httpd state=stopped enabled=no
173       metadata_settings:
174         get_attr: [GnocchiApiPuppetBase, role_data, metadata_settings]