summaryrefslogtreecommitdiff
path: root/.zuul.yaml
blob: b8fadb52429abad93c800ba221a179db8f6063bd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
- project:
    templates:
      - openstack-python3-victoria-jobs
      - publish-openstack-docs-pti
      - periodic-stable-jobs
      - check-requirements
      # NOTE: we no longer run the integrated-gate-storage template
      # because it includes grenade.  The other jobs in the template,
      # tempest-integrated-storage and openstacksdk-functional-devstack
      # are configured explicitly below.
      # - integrated-gate-storage
      - release-notes-jobs-python3
    check:
      jobs:
        - cinder-code-coverage:
            voting: false
        - cinder-tox-bandit-baseline:
            voting: false
        - openstack-tox-functional-py36:
            irrelevant-files: &functional-irrelevant-files
              - ^.*\.rst$
              - ^api-ref/.*$
              - ^cinder/locale/.*$
              - ^cinder/tests/hacking/.*$
              - ^cinder/tests/unit.*$
              - ^contrib/block-box.*$
              - ^doc/.*$
              - ^releasenotes/.*$
        - openstack-tox-functional-py38:
            irrelevant-files: *functional-irrelevant-files
        - cinder-rally-task:
            voting: false
        - openstack-tox-pylint:
            voting: false
            timeout: 5400
            irrelevant-files: *functional-irrelevant-files
        - cinder-plugin-ceph-tempest:
            irrelevant-files: &gate-irrelevant-files
              - ^(test-|)requirements.txt$
              - ^lower-constraints.txt$
              - ^.*\.rst$
              - ^api-ref/.*$
              - ^cinder/cmd/status\.py$
              - ^cinder/locale/.*$
              - ^cinder/tests/functional.*$
              - ^cinder/tests/hacking/.*$
              - ^cinder/tests/unit.*$
              - ^contrib/block-box.*$
              - ^doc/.*$
              - ^releasenotes/.*$
              - ^setup.cfg$
              - ^tools/.*$
              - ^tox.ini$
        - cinder-plugin-ceph-tempest-mn-aa:
            voting: false
        - cinder-tempest-plugin-lvm-lio-barbican:
            irrelevant-files: *functional-irrelevant-files
        - cinder-tempest-lvm-multibackend:
            voting: false
            irrelevant-files: *gate-irrelevant-files
        - devstack-plugin-nfs-tempest-full:
            voting: false
            irrelevant-files: *gate-irrelevant-files
        - tempest-slow-py3:
            irrelevant-files: *gate-irrelevant-files
        - tempest-integrated-storage:
            irrelevant-files: *gate-irrelevant-files
        - tempest-ipv6-only:
            irrelevant-files: *gate-irrelevant-files
        - openstacksdk-functional-devstack:
            required-projects:
            - name: opendev.org/openstack/openstacksdk
              override-branch: stable/victoria
            irrelevant-files: *gate-irrelevant-files
    gate:
      jobs:
        - cinder-plugin-ceph-tempest:
            irrelevant-files: *gate-irrelevant-files
        - tempest-integrated-storage:
            irrelevant-files: *gate-irrelevant-files
        - tempest-ipv6-only:
            irrelevant-files: *gate-irrelevant-files
        - openstacksdk-functional-devstack:
            required-projects:
            - name: opendev.org/openstack/openstacksdk
              override-branch: stable/victoria
            irrelevant-files: *gate-irrelevant-files
    experimental:
      jobs:
        - tempest-cinder-v2-api:
            irrelevant-files: *gate-irrelevant-files
        - cinder-multibackend-matrix-migration:
            irrelevant-files: *gate-irrelevant-files
        - grenade:
            irrelevant-files: *gate-irrelevant-files
        - cinder-grenade-mn-sub-volbak:
            irrelevant-files: *gate-irrelevant-files
        - cinder-grenade-mn-sub-volschbak:
            irrelevant-files: *gate-irrelevant-files
        - cinder-grenade-mn-sub-bak:
            irrelevant-files: *gate-irrelevant-files
        - devstack-plugin-ceph-tempest-py3:
            irrelevant-files: *gate-irrelevant-files
        - tempest-pg-full:
            irrelevant-files: *gate-irrelevant-files
        - tempest-full-py3-opensuse15:
            irrelevant-files: *gate-irrelevant-files

- job:
    # Security testing for known issues
    name: cinder-tox-bandit-baseline
    parent: openstack-tox
    timeout: 2400
    vars:
      tox_envlist: bandit-baseline
    required-projects:
      - openstack/requirements
    irrelevant-files: *gate-irrelevant-files

- job:
    name: cinder-code-coverage
    parent: openstack-tox-cover
    timeout: 2400
    irrelevant-files:
      - ^(test-|)requirements.txt$
      - ^lower-constraints.txt$
      - ^.*\.rst$
      - ^api-ref/.*$
      - ^cinder/cmd/status\.py$
      - ^cinder/locale/.*$
      - ^contrib/block-box.*$
      - ^doc/.*$
      - ^releasenotes/.*$
      - ^setup.cfg$
      - ^tools/.*$
      - ^tox.ini$

- job:
    name: cinder-rally-task
    parent: rally-task-cinder
    timeout: 7800
    vars:
      devstack_localrc:
        OSPROFILER_COLLECTOR: redis
      devstack_plugins:
        osprofiler: https://opendev.org/openstack/osprofiler
        rally-openstack: https://opendev.org/openstack/rally-openstack
      rally_task: rally-jobs/cinder.yaml
    required-projects:
      - openstack/rally-openstack
      - openstack/osprofiler

- job:
    name: cinder-plugin-ceph-tempest
    parent: devstack-plugin-ceph-tempest-py3
    roles:
      - zuul: opendev.org/openstack/cinderlib
      - zuul: opendev.org/openstack/cinder-tempest-plugin
    run: playbooks/tempest-and-cinderlib-run.yaml
    post-run: playbooks/post-cinderlib.yaml
    required-projects:
      - opendev.org/openstack/cinderlib
    vars:
      zuul_additional_subunit_dirs:
        - "{{ ansible_user_dir }}/{{ zuul.projects['opendev.org/openstack/cinderlib'].src_dir }}"
      devstack_local_conf:
        test-config:
          $TEMPEST_CONFIG:
            volume-feature-enabled:
              volume_revert: True

- job:
    name: cinder-plugin-ceph-tempest-mn-aa
    parent: devstack-plugin-ceph-multinode-tempest-py3
    roles:
      - zuul: opendev.org/openstack/cinderlib
      - zuul: opendev.org/openstack/cinder-tempest-plugin
    run: playbooks/tempest-and-cinderlib-run.yaml
    post-run: playbooks/post-cinderlib.yaml
    required-projects:
      - opendev.org/openstack/cinderlib
    vars:
      zuul_additional_subunit_dirs:
        - "{{ ansible_user_dir }}/{{ zuul.projects['opendev.org/openstack/cinderlib'].src_dir }}"
      devstack_localrc:
        TEMPEST_VOLUME_REVERT_TO_SNAPSHOT: True
      devstack_local_conf:
        post-config:
          $CINDER_CONF:
            DEFAULT:
              cluster: ceph

- job:
    name: cinder-grenade-mn-sub-bak
    parent: grenade-multinode
    description: |
      Cinder grenade multinode job where cinder-backup only runs
      on the subnode.
      It tests the new c-api, c-sch, c-vol (on the controller node)
      with the old c-bak (on the subnode).
      Former names for this job were:
        * cinder-grenade-dsvm-mn-sub-bak
        * legacy-grenade-dsvm-cinder-mn-sub-bak
    required-projects:
      - opendev.org/openstack/grenade
      - opendev.org/openstack/cinder
    vars:
      devstack_services:
        c-bak: false
        c-vol: true
    group-vars:
      subnode:
        devstack_services:
          c-bak: true
          c-vol: false

- job:
    name: cinder-grenade-mn-sub-volbak
    parent: grenade-multinode
    description: |
      Cinder grenade multinode job where cinder-backup and cinder-volume
      only run on the subnode.
      It tests the new c-api, c-sch (on the controller node)
      with the old c-bak, c-vol (on the subnode).
      Former names for this job were:
        * cinder-grenade-dsvm-mn-sub-volbak
        * legacy-grenade-dsvm-cinder-mn-sub-volbak
    required-projects:
      - opendev.org/openstack/grenade
      - opendev.org/openstack/cinder
    vars:
      devstack_services:
        c-bak: false
        c-vol: false
    group-vars:
      subnode:
        devstack_services:
          c-bak: true
          c-vol: true

- job:
    name: cinder-grenade-mn-sub-volschbak
    parent: grenade-multinode
    description: |
      Cinder grenade multinode job where cinder-backup, cinder-volume
      and cinder-scheduler only run on the subnode.
      It tests the new c-api (on the controller node)
      with the old c-bak, c-sch, c-vol (on the subnode).
      Former names for this job were:
        * cinder-grenade-dsvm-mn-sub-volschbak
        * legacy-grenade-dsvm-cinder-mn-sub-volschbak
    required-projects:
      - opendev.org/openstack/grenade
      - opendev.org/openstack/cinder
    vars:
      devstack_services:
        c-bak: false
        c-sch: false
        c-vol: false
    group-vars:
      subnode:
        devstack_services:
          c-bak: true
          c-sch: true
          c-vol: true

- job:
    name: cinder-tempest-lvm-multibackend
    parent: devstack-tempest
    description: |
      Cinder tempest job based on LVM and multiple backends.
      Former names for this job were:
        * legacy-tempest-dsvm-lvm-multibackend
    timeout: 10800
    required-projects:
      - name: opendev.org/openstack/cinder-tempest-plugin
        override-checkout: 1.3.0
    vars:
      tox_envlist: all
      tempest_test_regex: '(?!.*\[.*\bslow\b.*\])(^tempest\.(api|scenario)|(^cinder_tempest_plugin))'
      tempest_plugins:
        - cinder-tempest-plugin
      devstack_localrc:
        CINDER_ENABLED_BACKENDS: 'lvm:lvmdriver-1,lvm:lvmdriver-2'
        CINDER_VOLUME_CLEAR: none
    irrelevant-files: *gate-irrelevant-files

- job:
    name: cinder-multibackend-matrix-migration
    parent: devstack-tempest
    description: |
      Run migration tests between several combinations of backends
      (LVM, Ceph, NFS)
      Former names for this job were:
        * legacy-tempest-dsvm-multibackend-matrix
    timeout: 10800
    required-projects:
      - opendev.org/openstack/devstack-plugin-ceph
      - opendev.org/openstack/devstack-plugin-nfs
    run: playbooks/cinder-multibackend-matrix.yaml
    host-vars:
      controller:
        devstack_plugins:
          devstack-plugin-ceph: https://opendev.org/openstack/devstack-plugin-ceph
          devstack-plugin-nfs: https://opendev.org/openstack/devstack-plugin-nfs
    vars:
      devstack_localrc:
        CINDER_ENABLED_BACKENDS: lvm:lvm,nfs:nfs,ceph:ceph
        ENABLE_NFS_CINDER: true
      devstack_local_conf:
        test-config:
          $TEMPEST_CONFIG:
            volume:
              build_timeout: 900