Merge "Containerize clustercheck galera monitor for HA deployments"
[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   DockerNamespace:
8     description: namespace
9     default: 'tripleoupstream'
10     type: string
11   DockerGnocchiApiImage:
12     description: image
13     default: 'centos-binary-gnocchi-api: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   RoleName:
30     default: ''
31     description: Role name on which the service is applied
32     type: string
33   RoleParameters:
34     default: {}
35     description: Parameters specific to the role
36     type: json
37   EnableInternalTLS:
38     type: boolean
39     default: false
40
41 conditions:
42
43   internal_tls_enabled: {equals: [{get_param: EnableInternalTLS}, true]}
44
45 resources:
46
47   ContainersCommon:
48     type: ./containers-common.yaml
49
50   GnocchiApiPuppetBase:
51       type: ../../puppet/services/gnocchi-api.yaml
52       properties:
53         EndpointMap: {get_param: EndpointMap}
54         ServiceNetMap: {get_param: ServiceNetMap}
55         DefaultPasswords: {get_param: DefaultPasswords}
56         RoleName: {get_param: RoleName}
57         RoleParameters: {get_param: RoleParameters}
58
59 outputs:
60   role_data:
61     description: Role data for the gnocchi API role.
62     value:
63       service_name: {get_attr: [GnocchiApiPuppetBase, role_data, service_name]}
64       config_settings:
65         map_merge:
66           - get_attr: [GnocchiApiPuppetBase, role_data, config_settings]
67           - apache::default_vhost: false
68       step_config: &step_config
69         get_attr: [GnocchiApiPuppetBase, role_data, step_config]
70       service_config_settings: {get_attr: [GnocchiApiPuppetBase, role_data, service_config_settings]}
71       # BEGIN DOCKER SETTINGS
72       puppet_config:
73         config_volume: gnocchi
74         puppet_tags: gnocchi_api_paste_ini,gnocchi_config
75         step_config: *step_config
76         config_image: &gnocchi_image
77           list_join:
78             - '/'
79             - [ {get_param: DockerNamespace}, {get_param: DockerGnocchiApiImage} ]
80       kolla_config:
81         /var/lib/kolla/config_files/gnocchi-api.json:
82           command: /usr/sbin/httpd -DFOREGROUND
83           permissions:
84             - path: /var/log/gnocchi
85               owner: gnocchi:gnocchi
86               recurse: true
87       docker_config:
88         # db sync runs before permissions set by kolla_config
89         step_3:
90           gnocchi_init_log:
91             start_order: 0
92             image: *gnocchi_image
93             user: root
94             volumes:
95               - /var/log/containers/gnocchi:/var/log/gnocchi
96             command: ['/bin/bash', '-c', 'mkdir -p /var/log/httpd; chown -R gnocchi:gnocchi /var/log/gnocchi']
97           gnocchi_db_sync:
98             start_order: 1
99             image: *gnocchi_image
100             net: host
101             detach: false
102             privileged: false
103             user: root
104             volumes:
105               list_concat:
106                 - {get_attr: [ContainersCommon, volumes]}
107                 -
108                   - /var/lib/config-data/gnocchi/etc/gnocchi/:/etc/gnocchi/:ro
109                   - /var/log/containers/gnocchi:/var/log/gnocchi
110             command: "/usr/bin/bootstrap_host_exec gnocchi_api su gnocchi -s /bin/bash -c '/usr/bin/gnocchi-upgrade --skip-storage'"
111         step_4:
112           gnocchi_api:
113             image: *gnocchi_image
114             net: host
115             privileged: false
116             restart: always
117             volumes:
118               list_concat:
119                 - {get_attr: [ContainersCommon, volumes]}
120                 -
121                   - /var/lib/kolla/config_files/gnocchi-api.json:/var/lib/kolla/config_files/config.json:ro
122                   - /var/lib/config-data/gnocchi/etc/gnocchi/:/etc/gnocchi/:ro
123                   - /var/lib/config-data/gnocchi/etc/httpd/:/etc/httpd/:ro
124                   - /var/lib/config-data/gnocchi/var/www/:/var/www/:ro
125                   - /var/log/containers/gnocchi:/var/log/gnocchi
126                   -
127                     if:
128                       - internal_tls_enabled
129                       - /etc/pki/tls/certs/httpd:/etc/pki/tls/certs/httpd:ro
130                       - ''
131                   -
132                     if:
133                       - internal_tls_enabled
134                       - /etc/pki/tls/private/httpd:/etc/pki/tls/private/httpd:ro
135                       - ''
136             environment:
137               - KOLLA_CONFIG_STRATEGY=COPY_ALWAYS
138       host_prep_tasks:
139         - name: create persistent logs directory
140           file:
141             path: /var/log/containers/gnocchi
142             state: directory
143       upgrade_tasks:
144         - name: Stop and disable httpd service
145           tags: step2
146           service: name=httpd state=stopped enabled=no
147       metadata_settings:
148         get_attr: [GnocchiApiPuppetBase, role_data, metadata_settings]