Enable Neutron LBaaS Integration
[apex-tripleo-heat-templates.git] / docker / services / cinder-api.yaml
1 heat_template_version: pike
2
3 description: >
4   OpenStack containerized Cinder API service
5
6 parameters:
7   DockerNamespace:
8     description: namespace
9     default: 'tripleoupstream'
10     type: string
11   DockerCinderApiImage:
12     description: image
13     default: 'centos-binary-cinder-api:latest'
14     type: string
15   DockerCinderConfigImage:
16     description: The container image to use for the cinder config_volume
17     default: 'centos-binary-cinder-api:latest'
18     type: string
19   EndpointMap:
20     default: {}
21     description: Mapping of service endpoint -> protocol. Typically set
22                  via parameter_defaults in the resource registry.
23     type: json
24   ServiceNetMap:
25     default: {}
26     description: Mapping of service_name -> network name. Typically set
27                  via parameter_defaults in the resource registry.  This
28                  mapping overrides those in ServiceNetMapDefaults.
29     type: json
30   DefaultPasswords:
31     default: {}
32     type: json
33   RoleName:
34     default: ''
35     description: Role name on which the service is applied
36     type: string
37   RoleParameters:
38     default: {}
39     description: Parameters specific to the role
40     type: json
41   EnableInternalTLS:
42     type: boolean
43     default: false
44
45 conditions:
46
47   internal_tls_enabled: {equals: [{get_param: EnableInternalTLS}, true]}
48
49 resources:
50
51   ContainersCommon:
52     type: ./containers-common.yaml
53
54   CinderBase:
55     type: ../../puppet/services/cinder-api.yaml
56     properties:
57       EndpointMap: {get_param: EndpointMap}
58       ServiceNetMap: {get_param: ServiceNetMap}
59       DefaultPasswords: {get_param: DefaultPasswords}
60       RoleName: {get_param: RoleName}
61       RoleParameters: {get_param: RoleParameters}
62
63 outputs:
64   role_data:
65     description: Role data for the Cinder API role.
66     value:
67       service_name: {get_attr: [CinderBase, role_data, service_name]}
68       config_settings: {get_attr: [CinderBase, role_data, config_settings]}
69       step_config: &step_config
70         get_attr: [CinderBase, role_data, step_config]
71       service_config_settings: {get_attr: [CinderBase, role_data, service_config_settings]}
72       # BEGIN DOCKER SETTINGS
73       puppet_config:
74         config_volume: cinder
75         puppet_tags: cinder_config,file,concat,file_line
76         step_config: *step_config
77         config_image:
78           list_join:
79             - '/'
80             - [ {get_param: DockerNamespace}, {get_param: DockerCinderConfigImage} ]
81       kolla_config:
82         /var/lib/kolla/config_files/cinder_api.json:
83           command: /usr/sbin/httpd -DFOREGROUND
84           config_files:
85             - source: "/var/lib/kolla/config_files/src/*"
86               dest: "/"
87               merge: true
88               preserve_properties: true
89           permissions:
90             - path: /var/log/cinder
91               owner: cinder:cinder
92               recurse: true
93       docker_config:
94         step_2:
95           cinder_api_init_logs:
96             image: &cinder_api_image
97               list_join:
98                 - '/'
99                 - [ {get_param: DockerNamespace}, {get_param: DockerCinderApiImage} ]
100             privileged: false
101             user: root
102             volumes:
103               - /var/log/containers/cinder:/var/log/cinder
104             command: ['/bin/bash', '-c', 'chown -R cinder:cinder /var/log/cinder']
105         step_3:
106           cinder_api_db_sync:
107             image: *cinder_api_image
108             net: host
109             privileged: false
110             detach: false
111             user: root
112             volumes:
113               list_concat:
114                 - {get_attr: [ContainersCommon, volumes]}
115                 -
116                   - /var/lib/config-data/cinder/etc/cinder/:/etc/cinder/:ro
117                   - /var/log/containers/cinder:/var/log/cinder
118             command:
119               - '/usr/bin/bootstrap_host_exec'
120               - 'cinder_api'
121               - "su cinder -s /bin/bash -c 'cinder-manage db sync'"
122         step_4:
123           cinder_api:
124             image: *cinder_api_image
125             net: host
126             privileged: false
127             restart: always
128             # NOTE(mandre) kolla image changes the user to 'cinder', we need it
129             # to be root to run httpd
130             user: root
131             volumes:
132               list_concat:
133                 - {get_attr: [ContainersCommon, volumes]}
134                 -
135                   - /var/lib/kolla/config_files/cinder_api.json:/var/lib/kolla/config_files/config.json:ro
136                   - /var/lib/config-data/puppet-generated/cinder/:/var/lib/kolla/config_files/src:ro
137                   - /var/log/containers/cinder:/var/log/cinder
138                   -
139                     if:
140                       - internal_tls_enabled
141                       - /etc/pki/tls/certs/httpd:/etc/pki/tls/certs/httpd:ro
142                       - ''
143                   -
144                     if:
145                       - internal_tls_enabled
146                       - /etc/pki/tls/private/httpd:/etc/pki/tls/private/httpd:ro
147                       - ''
148             environment:
149               - KOLLA_CONFIG_STRATEGY=COPY_ALWAYS
150       host_prep_tasks:
151         - name: create persistent logs directory
152           file:
153             path: /var/log/containers/cinder
154             state: directory
155       upgrade_tasks:
156         - name: Stop and disable cinder_api service
157           tags: step2
158           service: name=httpd state=stopped enabled=no