Merge "Revert "Revert "Blacklist support for ExtraConfig"""
[apex-tripleo-heat-templates.git] / docker / services / cinder-volume.yaml
1 heat_template_version: pike
2
3 description: >
4   OpenStack containerized Cinder Volume service
5
6 parameters:
7   DockerNamespace:
8     description: namespace
9     default: 'tripleoupstream'
10     type: string
11   DockerCinderVolumeImage:
12     description: image
13     default: 'centos-binary-cinder-volume: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   # custom parameters for the Cinder volume role
42   CinderEnableIscsiBackend:
43     default: true
44     description: Whether to enable or not the Iscsi backend for Cinder
45     type: boolean
46   CinderLVMLoopDeviceSize:
47     default: 10280
48     description: The size of the loopback file used by the cinder LVM driver.
49     type: number
50
51 resources:
52
53   ContainersCommon:
54     type: ./containers-common.yaml
55
56   CinderBase:
57     type: ../../puppet/services/cinder-volume.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 Cinder Volume role.
68     value:
69       service_name: {get_attr: [CinderBase, role_data, service_name]}
70       config_settings: {get_attr: [CinderBase, role_data, config_settings]}
71       step_config: &step_config
72         get_attr: [CinderBase, role_data, step_config]
73       service_config_settings: {get_attr: [CinderBase, role_data, service_config_settings]}
74       # BEGIN DOCKER SETTINGS
75       puppet_config:
76         config_volume: cinder
77         puppet_tags: cinder_config,file,concat,file_line
78         step_config: *step_config
79         config_image:
80           list_join:
81             - '/'
82             - [ {get_param: DockerNamespace}, {get_param: DockerCinderConfigImage} ]
83       kolla_config:
84         /var/lib/kolla/config_files/cinder_volume.json:
85           command: /usr/bin/cinder-volume --config-file /usr/share/cinder/cinder-dist.conf --config-file /etc/cinder/cinder.conf
86           config_files:
87             # NOTE(mandre): the copy of ceph conf will need to go once we
88             # generate a ceph.conf for cinder in puppet
89             # Copy ceph config files before cinder ones as a precaution, for
90             # the later one to take precendence in case of duplicate files.
91             - source: "/var/lib/kolla/config_files/src-ceph/*"
92               dest: "/"
93               merge: true
94               preserve_properties: true
95             - source: "/var/lib/kolla/config_files/src/*"
96               dest: "/"
97               merge: true
98               preserve_properties: true
99           permissions:
100             - path: /var/log/cinder
101               owner: cinder:cinder
102               recurse: true
103       docker_config:
104         step_3:
105           cinder_volume_init_logs:
106             start_order: 0
107             image: &cinder_volume_image
108               list_join:
109                 - '/'
110                 - [ {get_param: DockerNamespace}, {get_param: DockerCinderVolumeImage} ]
111             privileged: false
112             user: root
113             volumes:
114               - /var/log/containers/cinder:/var/log/cinder
115             command: ['/bin/bash', '-c', 'chown -R cinder:cinder /var/log/cinder']
116         step_4:
117           cinder_volume:
118             image: *cinder_volume_image
119             net: host
120             privileged: true
121             restart: always
122             volumes:
123               list_concat:
124                 - {get_attr: [ContainersCommon, volumes]}
125                 -
126                   - /var/lib/kolla/config_files/cinder_volume.json:/var/lib/kolla/config_files/config.json:ro
127                   - /var/lib/config-data/puppet-generated/cinder/:/var/lib/kolla/config_files/src:ro
128                   # FIXME: we need to generate a ceph.conf with puppet for this
129                   - /var/lib/config-data/puppet-generated/ceph/:/var/lib/kolla/config_files/src-ceph:ro
130                   - /dev/:/dev/
131                   - /run/:/run/
132                   - /sys:/sys
133                   - /etc/iscsi:/etc/iscsi
134                   - /var/lib/cinder:/var/lib/cinder
135                   - /var/log/containers/cinder:/var/log/cinder
136             environment:
137               - KOLLA_CONFIG_STRATEGY=COPY_ALWAYS
138       host_prep_tasks:
139         - name: create persistent directories
140           file:
141             path: "{{ item }}"
142             state: directory
143           with_items:
144             - /var/log/containers/cinder
145             - /var/lib/cinder
146         - name: cinder_enable_iscsi_backend fact
147           set_fact:
148             cinder_enable_iscsi_backend: {get_param: CinderEnableIscsiBackend}
149         - name: cinder create LVM volume group dd
150           command:
151             list_join:
152             - ''
153             - - 'dd if=/dev/zero of=/var/lib/cinder/cinder-volumes bs=1 count=0 seek='
154               - str_replace:
155                   template: VALUE
156                   params:
157                     VALUE: {get_param: CinderLVMLoopDeviceSize}
158               - 'M'
159           args:
160             creates: /var/lib/cinder/cinder-volumes
161           when: cinder_enable_iscsi_backend
162         - name: cinder create LVM volume group
163           shell: |
164             if ! losetup /dev/loop2; then
165               losetup /dev/loop2 /var/lib/cinder/cinder-volumes
166             fi
167             if ! pvdisplay | grep cinder-volumes; then
168               pvcreate /dev/loop2
169             fi
170             if ! vgdisplay | grep cinder-volumes; then
171               vgcreate cinder-volumes /dev/loop2
172             fi
173           args:
174             executable: /bin/bash
175             creates: /dev/loop2
176           when: cinder_enable_iscsi_backend
177       upgrade_tasks:
178         - name: Stop and disable cinder_volume service
179           tags: step2
180           service: name=openstack-cinder-volume state=stopped enabled=no