blob: d88c988946148f0a1f57a9b1914e5b45eac210dd [file] [log] [blame]
Ghanshyam Mann61f57332020-11-25 11:46:20 -06001# NOTE(gmann): This file includes all integrated jobs definition which
2# are supposed to be run by Tempest and other projects as
3# integrated testing.
4- job:
5 name: tempest-all
6 parent: devstack-tempest
7 description: |
8 Integration test that runs all tests.
9 Former name for this job was:
10 * legacy-periodic-tempest-dsvm-all-master
11 vars:
12 tox_envlist: all
13 tempest_test_regex: tempest
Ghanshyam Mann861c78f2021-02-09 11:25:26 -060014 # TODO(gmann): Enable File injection tests once nova bug is fixed
15 # https://bugs.launchpad.net/nova/+bug/1882421
16 # devstack_localrc:
17 # ENABLE_FILE_INJECTION: true
Ghanshyam Mann61f57332020-11-25 11:46:20 -060018
19- job:
20 name: tempest-ipv6-only
21 parent: devstack-tempest-ipv6
22 # This currently works from stable/pike on.
23 branches: ^(?!stable/ocata).*$
24 description: |
25 Integration test of IPv6-only deployments. This job runs
26 smoke and IPv6 relates tests only. Basic idea is to test
27 whether OpenStack Services listen on IPv6 addrress or not.
28 timeout: 10800
29 vars:
30 tox_envlist: ipv6-only
31
32- job:
33 name: tempest-full
34 parent: devstack-tempest
35 # This currently works from stable/pike on.
36 # Before stable/pike, legacy version of tempest-full
37 # 'legacy-tempest-dsvm-neutron-full' run.
38 branches: ^(?!stable/ocata).*$
39 description: |
40 Base integration test with Neutron networking and py27.
41 This job is supposed to run until stable/train setup only.
42 If you are running it on stable/ussuri gate onwards for python2.7
43 coverage then you need to do override-checkout with any stable
44 branch less than or equal to stable/train.
45 Former names for this job where:
46 * legacy-tempest-dsvm-neutron-full
47 * gate-tempest-dsvm-neutron-full-ubuntu-xenial
48 vars:
49 tox_envlist: full
50 devstack_localrc:
51 ENABLE_FILE_INJECTION: true
52 ENABLE_VOLUME_MULTIATTACH: true
53 USE_PYTHON3: False
54 devstack_services:
55 # NOTE(mriedem): Disable the cinder-backup service from tempest-full
56 # since tempest-full is in the integrated-gate project template but
57 # the backup tests do not really involve other services so they should
58 # be run in some more cinder-specific job, especially because the
59 # tests fail at a high rate (see bugs 1483434, 1813217, 1745168)
60 c-bak: false
61
62- job:
Ghanshyam Mann518e4262023-02-10 19:57:36 -060063 name: tempest-extra-tests
64 parent: devstack-tempest
65 description: |
66 This job runs the extra tests mentioned in
67 tools/tempest-extra-tests-list.txt.
68 vars:
69 tox_envlist: extra-tests
70
71- job:
Ghanshyam Mann61f57332020-11-25 11:46:20 -060072 name: tempest-full-py3
73 parent: devstack-tempest
Ghanshyam Mann0ead7532020-12-29 13:22:26 -060074 # This job version is with swift enabled on py3
75 # as swift is ready on py3 from stable/ussuri onwards.
76 branches: ^(?!stable/(ocata|pike|queens|rocky|stein|train)).*$
77 description: |
Ghanshyam Mann4e2a6ff2021-06-02 12:14:26 -050078 Base integration test with Neutron networking, horizon, swift enable,
79 and py3.
Ghanshyam Mann0ead7532020-12-29 13:22:26 -060080 Former names for this job where:
81 * legacy-tempest-dsvm-py35
82 * gate-tempest-dsvm-py35
Ghanshyam Mann4e2a6ff2021-06-02 12:14:26 -050083 required-projects:
84 - openstack/horizon
Ghanshyam Mann0ead7532020-12-29 13:22:26 -060085 vars:
Ghanshyam Mann518e4262023-02-10 19:57:36 -060086 tox_envlist: integrated-full
Ghanshyam Mann0ead7532020-12-29 13:22:26 -060087 devstack_localrc:
88 USE_PYTHON3: true
89 FORCE_CONFIG_DRIVE: true
90 ENABLE_VOLUME_MULTIATTACH: true
91 GLANCE_USE_IMPORT_WORKFLOW: True
Ghanshyam Mann4e2a6ff2021-06-02 12:14:26 -050092 devstack_plugins:
93 neutron: https://opendev.org/openstack/neutron
Ghanshyam Mann4e2a6ff2021-06-02 12:14:26 -050094 devstack_services:
95 # Enbale horizon so that we can run horizon test.
96 horizon: true
Ghanshyam Mann0ead7532020-12-29 13:22:26 -060097
Ghanshyam Mann24a3a362022-10-12 15:50:28 -050098# TODO(gmann): As per the 2023.1 testing runtime, we need to run at least
99# one job on Focal. This job can be removed as per the future testing
100# runtime (whenever we drop the Ubuntu Focal testing).
101- job:
102 name: tempest-full-ubuntu-focal
103 description: This is tempest-full python3 job on Ubuntu Focal(20.04)
104 parent: tempest-full-py3
105 nodeset: openstack-single-node-focal
106
Ghanshyam Mann0ead7532020-12-29 13:22:26 -0600107- job:
Ghanshyam Mann3ed52102022-04-25 18:07:00 -0500108 name: tempest-full-centos-9-stream
109 parent: tempest-full-py3
110 nodeset: devstack-single-node-centos-9-stream
Ghanshyam Mann9625f0d2022-04-27 17:45:52 -0500111 # centos-9-stream is supported from yoga release onwards
112 branches: ^(?!stable/(pike|queens|rocky|stein|train|ussuri|victoria|wallaby|xena)).*$
Ghanshyam Mann3ed52102022-04-25 18:07:00 -0500113 description: |
114 Base integration test on CentOS 9 stream
115 vars:
116 # Required until bug/1949606 is resolved when using libvirt and QEMU
117 # >=5.0.0 with a [libvirt]virt_type of qemu (TCG).
118 configure_swap_size: 4096
Ghanshyam Mann518e4262023-02-10 19:57:36 -0600119 tox_envlist: full
Ghanshyam Mann3ed52102022-04-25 18:07:00 -0500120
121- job:
Ghanshyam Mann61f57332020-11-25 11:46:20 -0600122 name: tempest-integrated-networking
123 parent: devstack-tempest
124 branches: ^(?!stable/ocata).*$
125 description: |
126 This job runs integration tests for networking. This is subset of
127 'tempest-full-py3' job and run only Neutron and Nova related tests.
128 This is meant to be run on neutron gate only.
129 vars:
130 tox_envlist: integrated-network
131 devstack_localrc:
132 USE_PYTHON3: true
133 FORCE_CONFIG_DRIVE: true
134 devstack_services:
135 s-account: false
136 s-container: false
137 s-object: false
138 s-proxy: false
139 c-bak: false
140
141- job:
142 name: tempest-integrated-compute
143 parent: devstack-tempest
144 branches: ^(?!stable/ocata).*$
145 description: |
146 This job runs integration tests for compute. This is
147 subset of 'tempest-full-py3' job and run Nova, Neutron, Cinder (except backup tests)
148 and Glance related tests. This is meant to be run on Nova gate only.
149 vars:
150 tox_envlist: integrated-compute
Ghanshyam Mann4fa15342021-02-11 13:28:53 -0600151 tempest_exclude_regex: ""
Ghanshyam Mann61f57332020-11-25 11:46:20 -0600152 devstack_localrc:
153 USE_PYTHON3: true
154 FORCE_CONFIG_DRIVE: true
155 ENABLE_VOLUME_MULTIATTACH: true
156 devstack_services:
157 s-account: false
158 s-container: false
159 s-object: false
160 s-proxy: false
161 c-bak: false
162
163- job:
Ghanshyam Mann3ed52102022-04-25 18:07:00 -0500164 name: tempest-integrated-compute-centos-9-stream
Lee Yarwood0dba41c2021-06-23 10:47:44 +0100165 parent: tempest-integrated-compute
Ghanshyam Mann3ed52102022-04-25 18:07:00 -0500166 nodeset: devstack-single-node-centos-9-stream
Ghanshyam Mann9625f0d2022-04-27 17:45:52 -0500167 # centos-9-stream is supported from yoga release onwards
168 branches: ^(?!stable/(pike|queens|rocky|stein|train|ussuri|victoria|wallaby|xena)).*$
Lee Yarwood0dba41c2021-06-23 10:47:44 +0100169 description: |
170 This job runs integration tests for compute. This is
171 subset of 'tempest-full-py3' job and run Nova, Neutron, Cinder (except backup tests)
172 and Glance related tests. This is meant to be run on Nova gate only.
Ghanshyam Mann3ed52102022-04-25 18:07:00 -0500173 This version of the job also uses CentOS 9 stream.
Lee Yarwood0dba41c2021-06-23 10:47:44 +0100174 vars:
175 # Required until bug/1949606 is resolved when using libvirt and QEMU
176 # >=5.0.0 with a [libvirt]virt_type of qemu (TCG).
177 configure_swap_size: 4096
178
179- job:
Ghanshyam Mann61f57332020-11-25 11:46:20 -0600180 name: tempest-integrated-placement
181 parent: devstack-tempest
182 branches: ^(?!stable/ocata).*$
183 description: |
184 This job runs integration tests for placement. This is
185 subset of 'tempest-full-py3' job and run Nova and Neutron
186 related tests. This is meant to be run on Placement gate only.
187 vars:
188 tox_envlist: integrated-placement
189 devstack_localrc:
190 USE_PYTHON3: true
191 FORCE_CONFIG_DRIVE: true
192 ENABLE_VOLUME_MULTIATTACH: true
193 devstack_services:
194 s-account: false
195 s-container: false
196 s-object: false
197 s-proxy: false
198 c-bak: false
199
200- job:
201 name: tempest-integrated-storage
202 parent: devstack-tempest
203 branches: ^(?!stable/ocata).*$
204 description: |
205 This job runs integration tests for image & block storage. This is
206 subset of 'tempest-full-py3' job and run Cinder, Glance, Swift and Nova
207 related tests. This is meant to be run on Cinder and Glance gate only.
208 vars:
209 tox_envlist: integrated-storage
210 devstack_localrc:
211 USE_PYTHON3: true
212 FORCE_CONFIG_DRIVE: true
213 ENABLE_VOLUME_MULTIATTACH: true
214 GLANCE_USE_IMPORT_WORKFLOW: True
215
216- job:
217 name: tempest-integrated-object-storage
218 parent: devstack-tempest
219 branches: ^(?!stable/ocata).*$
220 description: |
221 This job runs integration tests for object storage. This is
222 subset of 'tempest-full-py3' job and run Swift, Cinder and Glance
223 related tests. This is meant to be run on Swift gate only.
224 vars:
225 tox_envlist: integrated-object-storage
226 devstack_localrc:
227 # NOTE(gmann): swift is not ready on python3 yet and devstack
228 # install it on python2.7 only. But settting the USE_PYTHON3
229 # for future once swift is ready on py3.
230 USE_PYTHON3: true
231
232- job:
Ghanshyam Mannba28d782021-09-03 10:21:54 -0500233 name: tempest-with-latest-microversion
234 parent: tempest-full-py3
235 description: |
236 This job runs compute, placement and volume API tests with 'latest'
237 API microversion (This can be extended to other services having API
238 microversion concept).
239 vars:
240 tox_envlist: api-microversion-tests
241 devstack_localrc:
242 TEMPEST_COMPUTE_MIN_MICROVERSION: 'latest'
243 TEMPEST_VOLUME_MIN_MICROVERSION: 'latest'
244 TEMPEST_PLACEMENT_MIN_MICROVERSION: 'latest'
245
246- job:
Ghanshyam Mann61f57332020-11-25 11:46:20 -0600247 name: tempest-multinode-full-py3
Ghanshyam Mann24a3a362022-10-12 15:50:28 -0500248 parent: tempest-multinode-full-base
249 nodeset: openstack-two-node-jammy
250 # This job runs on ubuntu Jammy and after stable/zed.
251 branches: ^(?!stable/(pike|queens|rocky|stein|train|ussuri|victoria|wallaby|xena|yoga|zed)).*$
Ghanshyam Mann61f57332020-11-25 11:46:20 -0600252 vars:
253 devstack_localrc:
254 USE_PYTHON3: true
elajkat064a3402019-10-17 13:18:10 +0200255 devstack_plugins:
256 neutron: https://opendev.org/openstack/neutron
elajkat064a3402019-10-17 13:18:10 +0200257 devstack_services:
elajkat0b14db22021-02-08 16:43:59 +0100258 neutron-trunk: true
Ghanshyam Mann61f57332020-11-25 11:46:20 -0600259 group-vars:
260 subnode:
261 devstack_localrc:
262 USE_PYTHON3: true
263
264- job:
265 name: tempest-slow
266 parent: tempest-multinode-full
267 description: |
268 This multinode integration job will run all the tests tagged as slow.
269 It enables the lvm multibackend setup to cover few scenario tests.
270 This job will run only slow tests (API or Scenario) serially.
271
272 Former names for this job were:
273 * legacy-tempest-dsvm-neutron-scenario-multinode-lvm-multibackend
274 * tempest-scenario-multinode-lvm-multibackend
275 timeout: 10800
Hemanth Nakkinaf4bd5542021-02-10 09:12:14 +0530276 # This job runs on stable/stein onwards.
277 branches: ^(?!stable/(ocata|pike|queens|rocky)).*$
Luigi Toscanob9ac0572021-07-13 12:44:35 +0200278 vars: &tempest_slow_vars
Ghanshyam Mann61f57332020-11-25 11:46:20 -0600279 tox_envlist: slow-serial
280 devstack_localrc:
281 CINDER_ENABLED_BACKENDS: lvm:lvmdriver-1,lvm:lvmdriver-2
282 ENABLE_VOLUME_MULTIATTACH: true
283 devstack_plugins:
284 neutron: https://opendev.org/openstack/neutron
285 devstack_services:
286 neutron-placement: true
287 neutron-qos: true
Ghanshyam Mann61f57332020-11-25 11:46:20 -0600288 tempest_concurrency: 2
289 group-vars:
290 # NOTE(mriedem): The ENABLE_VOLUME_MULTIATTACH variable is used on both
291 # the controller and subnode prior to Rocky so we have to make sure the
292 # variable is set in both locations.
293 subnode:
294 devstack_localrc:
295 ENABLE_VOLUME_MULTIATTACH: true
296
297- job:
298 name: tempest-slow-py3
Luigi Toscanob9ac0572021-07-13 12:44:35 +0200299 parent: tempest-multinode-full-py3
Ghanshyam Mannebecf792021-06-14 17:09:35 -0500300 # This job version is with swift enabled on py3
301 # as swift is ready on py3 from stable/ussuri onwards.
Luigi Toscanob9ac0572021-07-13 12:44:35 +0200302 timeout: 10800
Ghanshyam Mannebecf792021-06-14 17:09:35 -0500303 branches: ^(?!stable/(ocata|pike|queens|rocky|stein|train)).*$
Luigi Toscanob9ac0572021-07-13 12:44:35 +0200304 vars: *tempest_slow_vars
Ghanshyam Mann61f57332020-11-25 11:46:20 -0600305
306- job:
Ghanshyam Mann6bb98c22023-02-10 18:22:02 -0600307 name: tempest-slow-parallel
308 parent: tempest-slow-py3
309 # This job run slow tests in parallel.
310 vars:
311 tox_envlist: slow
312
313- job:
Ghanshyam Mann61f57332020-11-25 11:46:20 -0600314 name: tempest-cinder-v2-api
315 parent: devstack-tempest
Ghanshyam Mann2f4539d2021-05-18 12:32:39 -0500316 # NOTE(gmann): Cinder v2 APIs are available until
317 # stable/wallaby only.
318 override-checkout: stable/wallaby
Ghanshyam Mann61f57332020-11-25 11:46:20 -0600319 description: |
320 This job runs the cinder API test against v2 endpoint.
321 vars:
322 tox_envlist: all
323 tempest_test_regex: api.*volume
324 devstack_localrc:
325 TEMPEST_VOLUME_TYPE: volumev2
326
327- job:
Ade Lee6ded0702021-09-04 15:56:34 -0400328 name: tempest-centos8-stream-fips
329 parent: devstack-tempest
330 description: |
331 Integration testing for a FIPS enabled Centos 8 system
332 nodeset: devstack-single-node-centos-8-stream
333 pre-run: playbooks/enable-fips.yaml
334 vars:
335 tox_envlist: full
336 configure_swap_size: 4096
Ade Lee0687b9c2022-03-02 16:24:50 -0500337 nslookup_target: 'opendev.org'
338
339- job:
340 name: tempest-centos9-stream-fips
341 parent: devstack-tempest
342 description: |
343 Integration testing for a FIPS enabled Centos 9 system
Sylvain Bauzab8f0c302022-11-29 17:49:33 +0100344 timeout: 10800
Ade Lee0687b9c2022-03-02 16:24:50 -0500345 nodeset: devstack-single-node-centos-9-stream
346 pre-run: playbooks/enable-fips.yaml
347 vars:
348 tox_envlist: full
349 configure_swap_size: 4096
350 nslookup_target: 'opendev.org'
Ade Lee6ded0702021-09-04 15:56:34 -0400351
352- job:
Ghanshyam Mann61f57332020-11-25 11:46:20 -0600353 name: tempest-pg-full
354 parent: tempest-full-py3
355 description: |
356 Base integration test with Neutron networking and PostgreSQL.
357 Former name for this job was legacy-tempest-dsvm-neutron-pg-full.
358 vars:
359 devstack_localrc:
Ghanshyam Mann861c78f2021-02-09 11:25:26 -0600360 # TODO(gmann): Enable File injection tests once nova bug is fixed
361 # https://bugs.launchpad.net/nova/+bug/1882421
362 # ENABLE_FILE_INJECTION: true
Ghanshyam Mann61f57332020-11-25 11:46:20 -0600363 DATABASE_TYPE: postgresql
364
Ghanshyam Mann7ab45a92022-11-21 19:14:05 -0600365- job:
366 name: tempest-full-enforce-scope-new-defaults
367 parent: tempest-full-py3
368 description: |
369 This job runs the Tempest tests with scope and new defaults enabled.
370 # TODO: remove this once https://review.opendev.org/c/openstack/neutron-lib/+/864213
371 # fix is released in neutron-lib
372 required-projects:
373 - openstack/neutron-lib
374 - openstack/neutron
375 vars:
376 devstack_localrc:
377 # Enabeling the scope and new defaults for services.
378 # NOTE: (gmann) We need to keep keystone scope check disable as
379 # services (except ironic) does not support the system scope and
380 # they need keystone to continue working with project scope. Until
381 # Keystone policies are changed to work for both system as well as
382 # for project scoped, we need to keep scope check disable for
383 # keystone.
384 NOVA_ENFORCE_SCOPE: true
385 CINDER_ENFORCE_SCOPE: true
386 GLANCE_ENFORCE_SCOPE: true
387 NEUTRON_ENFORCE_SCOPE: true
388
Ghanshyam Mann61f57332020-11-25 11:46:20 -0600389- project-template:
390 name: integrated-gate-networking
391 description: |
392 Run the python3 Tempest network integration tests (Nova and Neutron related)
393 in check and gate for the neutron integrated gate. This is meant to be
394 run on neutron gate only.
395 check:
396 jobs:
397 - grenade
Dan Smithaf19ff42022-02-23 10:42:26 -0800398 - grenade-skip-level:
399 voting: false
Ghanshyam Mann61f57332020-11-25 11:46:20 -0600400 - tempest-integrated-networking
Ghanshyam Mann2202f7b2022-06-01 16:31:51 -0500401 # Do not run it on ussuri until below issue is fixed
402 # https://storyboard.openstack.org/#!/story/2010057
Elod Illese17f1d32023-02-02 15:24:35 +0100403 # and job is broken on wallaby branch due to the issue
404 # described in https://review.opendev.org/872341
Ghanshyam Mann2202f7b2022-06-01 16:31:51 -0500405 - openstacksdk-functional-devstack:
Elod Illese17f1d32023-02-02 15:24:35 +0100406 branches: ^(?!stable/(ussuri|wallaby)).*$
Ghanshyam Mann61f57332020-11-25 11:46:20 -0600407 gate:
408 jobs:
409 - grenade
410 - tempest-integrated-networking
Ghanshyam Mann2202f7b2022-06-01 16:31:51 -0500411 # Do not run it on ussuri until below issue is fixed
412 # https://storyboard.openstack.org/#!/story/2010057
Elod Illese17f1d32023-02-02 15:24:35 +0100413 # and job is broken on wallaby branch due to the issue
414 # described in https://review.opendev.org/872341
Ghanshyam Mann2202f7b2022-06-01 16:31:51 -0500415 - openstacksdk-functional-devstack:
Elod Illese17f1d32023-02-02 15:24:35 +0100416 branches: ^(?!stable/(ussuri|wallaby)).*$
Ghanshyam Mann61f57332020-11-25 11:46:20 -0600417
418- project-template:
419 name: integrated-gate-compute
420 description: |
421 Run the python3 Tempest compute integration tests
422 (Nova, Neutron, Cinder and Glance related) in check and gate
423 for the Nova integrated gate. This is meant to be
424 run on Nova gate only.
Ghanshyam Mann9625f0d2022-04-27 17:45:52 -0500425 # NOTE(gmann): This template is used for stable branches also so when we
426 # add/remove jobs here we need to make sure we should not change the
427 # behaviour for stable branches. For example, with branch variant we need
428 # to make sure old job keep running on stable branches and the new one run
429 # only from master(or the branch it was meant to run).
Ghanshyam Mann61f57332020-11-25 11:46:20 -0600430 check:
431 jobs:
Dan Smithaf19ff42022-02-23 10:42:26 -0800432 - grenade-skip-level:
433 voting: false
Ghanshyam Mann61f57332020-11-25 11:46:20 -0600434 - tempest-integrated-compute
Ghanshyam Mann9625f0d2022-04-27 17:45:52 -0500435 # centos-8-stream is tested from wallaby -> yoga branches
436 - tempest-integrated-compute-centos-8-stream:
437 branches: ^stable/(wallaby|xena|yoga).*$
Ghanshyam Mann2202f7b2022-06-01 16:31:51 -0500438 # Do not run it on ussuri until below issue is fixed
439 # https://storyboard.openstack.org/#!/story/2010057
Elod Illese17f1d32023-02-02 15:24:35 +0100440 # and job is broken on wallaby branch due to the issue
441 # described in https://review.opendev.org/872341
Ghanshyam Mann2202f7b2022-06-01 16:31:51 -0500442 - openstacksdk-functional-devstack:
Elod Illese17f1d32023-02-02 15:24:35 +0100443 branches: ^(?!stable/(ussuri|wallaby)).*$
Ghanshyam Mann61f57332020-11-25 11:46:20 -0600444 gate:
445 jobs:
Ghanshyam Mann61f57332020-11-25 11:46:20 -0600446 - tempest-integrated-compute
Ghanshyam Mann2202f7b2022-06-01 16:31:51 -0500447 - openstacksdk-functional-devstack:
Elod Illese17f1d32023-02-02 15:24:35 +0100448 branches: ^(?!stable/(ussuri|wallaby)).*$
Sean Mooney9c263de2022-07-18 16:55:31 +0100449 periodic-weekly:
450 jobs:
451 # centos-9-stream is tested from zed release onwards
452 - tempest-integrated-compute-centos-9-stream:
453 branches: ^(?!stable/(pike|queens|rocky|stein|train|ussuri|victoria|wallaby|xena|yoga)).*$
Ghanshyam Mann61f57332020-11-25 11:46:20 -0600454
455- project-template:
456 name: integrated-gate-placement
457 description: |
458 Run the python3 Tempest placement integration tests
459 (Nova and Neutron related) in check and gate
460 for the Placement integrated gate. This is meant to be
461 run on Placement gate only.
462 check:
463 jobs:
464 - grenade
Dan Smithaf19ff42022-02-23 10:42:26 -0800465 - grenade-skip-level:
466 voting: false
Ghanshyam Mann61f57332020-11-25 11:46:20 -0600467 - tempest-integrated-placement
Ghanshyam Mann2202f7b2022-06-01 16:31:51 -0500468 # Do not run it on ussuri until below issue is fixed
469 # https://storyboard.openstack.org/#!/story/2010057
Elod Illese17f1d32023-02-02 15:24:35 +0100470 # and job is broken on wallaby branch due to the issue
471 # described in https://review.opendev.org/872341
Ghanshyam Mann2202f7b2022-06-01 16:31:51 -0500472 - openstacksdk-functional-devstack:
473 branches: ^(?!stable/ussuri).*$
Ghanshyam Mann61f57332020-11-25 11:46:20 -0600474 gate:
475 jobs:
476 - grenade
477 - tempest-integrated-placement
Ghanshyam Mann2202f7b2022-06-01 16:31:51 -0500478 # Do not run it on ussuri until below issue is fixed
479 # https://storyboard.openstack.org/#!/story/2010057
Elod Illese17f1d32023-02-02 15:24:35 +0100480 # and job is broken on wallaby branch due to the issue
481 # described in https://review.opendev.org/872341
Ghanshyam Mann2202f7b2022-06-01 16:31:51 -0500482 - openstacksdk-functional-devstack:
Elod Illese17f1d32023-02-02 15:24:35 +0100483 branches: ^(?!stable/(ussuri|wallaby)).*$
Ghanshyam Mann61f57332020-11-25 11:46:20 -0600484
485- project-template:
486 name: integrated-gate-storage
487 description: |
488 Run the python3 Tempest image & block storage integration tests
489 (Cinder, Glance, Swift and Nova related) in check and gate
490 for the neutron integrated gate. This is meant to be
491 run on Cinder and Glance gate only.
492 check:
493 jobs:
494 - grenade
Dan Smithaf19ff42022-02-23 10:42:26 -0800495 - grenade-skip-level:
496 voting: false
Ghanshyam Mann61f57332020-11-25 11:46:20 -0600497 - tempest-integrated-storage
Ghanshyam Mann2202f7b2022-06-01 16:31:51 -0500498 # Do not run it on ussuri until below issue is fixed
499 # https://storyboard.openstack.org/#!/story/2010057
Elod Illese17f1d32023-02-02 15:24:35 +0100500 # and job is broken on wallaby branch due to the issue
501 # described in https://review.opendev.org/872341
Ghanshyam Mann2202f7b2022-06-01 16:31:51 -0500502 - openstacksdk-functional-devstack:
Elod Illese17f1d32023-02-02 15:24:35 +0100503 branches: ^(?!stable/(ussuri|wallaby)).*$
Ghanshyam Mann61f57332020-11-25 11:46:20 -0600504 gate:
505 jobs:
506 - grenade
507 - tempest-integrated-storage
Ghanshyam Mann2202f7b2022-06-01 16:31:51 -0500508 # Do not run it on ussuri until below issue is fixed
509 # https://storyboard.openstack.org/#!/story/2010057
Elod Illese17f1d32023-02-02 15:24:35 +0100510 # and job is broken on wallaby branch due to the issue
511 # described in https://review.opendev.org/872341
Ghanshyam Mann2202f7b2022-06-01 16:31:51 -0500512 - openstacksdk-functional-devstack:
Elod Illese17f1d32023-02-02 15:24:35 +0100513 branches: ^(?!stable/(ussuri|wallaby)).*$
Ghanshyam Mann61f57332020-11-25 11:46:20 -0600514
515- project-template:
516 name: integrated-gate-object-storage
517 description: |
518 Run the python3 Tempest object storage integration tests
519 (Swift, Cinder and Glance related) in check and gate
520 for the swift integrated gate. This is meant to be
521 run on swift gate only.
522 check:
523 jobs:
524 - grenade
525 - tempest-integrated-object-storage
Ghanshyam Mann2202f7b2022-06-01 16:31:51 -0500526 # Do not run it on ussuri until below issue is fixed
527 # https://storyboard.openstack.org/#!/story/2010057
Elod Illese17f1d32023-02-02 15:24:35 +0100528 # and job is broken on wallaby branch due to the issue
529 # described in https://review.opendev.org/872341
Ghanshyam Mann2202f7b2022-06-01 16:31:51 -0500530 - openstacksdk-functional-devstack:
Elod Illese17f1d32023-02-02 15:24:35 +0100531 branches: ^(?!stable/(ussuri|wallaby)).*$
Ghanshyam Mann61f57332020-11-25 11:46:20 -0600532 gate:
533 jobs:
534 - grenade
535 - tempest-integrated-object-storage
Ghanshyam Mann2202f7b2022-06-01 16:31:51 -0500536 # Do not run it on ussuri until below issue is fixed
537 # https://storyboard.openstack.org/#!/story/2010057
Elod Illese17f1d32023-02-02 15:24:35 +0100538 # and job is broken on wallaby branch due to the issue
539 # described in https://review.opendev.org/872341
Ghanshyam Mann2202f7b2022-06-01 16:31:51 -0500540 - openstacksdk-functional-devstack:
Elod Illese17f1d32023-02-02 15:24:35 +0100541 branches: ^(?!stable/(ussuri|wallaby)).*$