Ghanshyam Mann | 61f5733 | 2020-11-25 11:46:20 -0600 | [diff] [blame] | 1 | # 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 |
Dan Smith | d869e3a | 2023-02-13 14:14:52 -0800 | [diff] [blame] | 14 | devstack_localrc: |
| 15 | MYSQL_REDUCE_MEMORY: true |
| 16 | # TODO(gmann): Enable File injection tests once nova bug is fixed |
| 17 | # https://bugs.launchpad.net/nova/+bug/1882421 |
| 18 | # ENABLE_FILE_INJECTION: true |
Ghanshyam Mann | 61f5733 | 2020-11-25 11:46:20 -0600 | [diff] [blame] | 19 | |
| 20 | - job: |
| 21 | name: tempest-ipv6-only |
| 22 | parent: devstack-tempest-ipv6 |
Ghanshyam Mann | 61f5733 | 2020-11-25 11:46:20 -0600 | [diff] [blame] | 23 | description: | |
| 24 | Integration test of IPv6-only deployments. This job runs |
| 25 | smoke and IPv6 relates tests only. Basic idea is to test |
| 26 | whether OpenStack Services listen on IPv6 addrress or not. |
| 27 | timeout: 10800 |
| 28 | vars: |
| 29 | tox_envlist: ipv6-only |
| 30 | |
| 31 | - job: |
| 32 | name: tempest-full |
| 33 | parent: devstack-tempest |
Ghanshyam Mann | 61f5733 | 2020-11-25 11:46:20 -0600 | [diff] [blame] | 34 | description: | |
| 35 | Base integration test with Neutron networking and py27. |
| 36 | This job is supposed to run until stable/train setup only. |
| 37 | If you are running it on stable/ussuri gate onwards for python2.7 |
| 38 | coverage then you need to do override-checkout with any stable |
| 39 | branch less than or equal to stable/train. |
| 40 | Former names for this job where: |
| 41 | * legacy-tempest-dsvm-neutron-full |
| 42 | * gate-tempest-dsvm-neutron-full-ubuntu-xenial |
| 43 | vars: |
| 44 | tox_envlist: full |
| 45 | devstack_localrc: |
| 46 | ENABLE_FILE_INJECTION: true |
| 47 | ENABLE_VOLUME_MULTIATTACH: true |
| 48 | USE_PYTHON3: False |
| 49 | devstack_services: |
| 50 | # NOTE(mriedem): Disable the cinder-backup service from tempest-full |
| 51 | # since tempest-full is in the integrated-gate project template but |
| 52 | # the backup tests do not really involve other services so they should |
| 53 | # be run in some more cinder-specific job, especially because the |
| 54 | # tests fail at a high rate (see bugs 1483434, 1813217, 1745168) |
| 55 | c-bak: false |
| 56 | |
| 57 | - job: |
Ghanshyam Mann | 518e426 | 2023-02-10 19:57:36 -0600 | [diff] [blame] | 58 | name: tempest-extra-tests |
Ghanshyam Mann | eb85cec | 2023-03-15 14:19:03 -0500 | [diff] [blame] | 59 | parent: tempest-full-py3 |
Ghanshyam Mann | 518e426 | 2023-02-10 19:57:36 -0600 | [diff] [blame] | 60 | description: | |
| 61 | This job runs the extra tests mentioned in |
| 62 | tools/tempest-extra-tests-list.txt. |
| 63 | vars: |
| 64 | tox_envlist: extra-tests |
| 65 | |
| 66 | - job: |
Ghanshyam Mann | 61f5733 | 2020-11-25 11:46:20 -0600 | [diff] [blame] | 67 | name: tempest-full-py3 |
| 68 | parent: devstack-tempest |
Ghanshyam Mann | 0ead753 | 2020-12-29 13:22:26 -0600 | [diff] [blame] | 69 | # This job version is with swift enabled on py3 |
| 70 | # as swift is ready on py3 from stable/ussuri onwards. |
Ghanshyam Mann | 11d4fc9 | 2023-02-21 13:29:44 -0800 | [diff] [blame] | 71 | # As this use 'integrated-full' tox env which is not |
| 72 | # available in old tempest used till stable/wallaby, |
| 73 | # this job definition is only for stable/xena onwards |
| 74 | # and separate job definition until stable/wallaby |
Martin Kopec | c52304f | 2023-09-20 09:13:08 +0200 | [diff] [blame] | 75 | branches: |
| 76 | regex: ^stable/(stein|train|ussuri|victoria|wallaby)$ |
| 77 | negate: true |
Ghanshyam Mann | 0ead753 | 2020-12-29 13:22:26 -0600 | [diff] [blame] | 78 | description: | |
Ghanshyam Mann | 4e2a6ff | 2021-06-02 12:14:26 -0500 | [diff] [blame] | 79 | Base integration test with Neutron networking, horizon, swift enable, |
| 80 | and py3. |
Ghanshyam Mann | 0ead753 | 2020-12-29 13:22:26 -0600 | [diff] [blame] | 81 | Former names for this job where: |
| 82 | * legacy-tempest-dsvm-py35 |
| 83 | * gate-tempest-dsvm-py35 |
Ghanshyam Mann | 4e2a6ff | 2021-06-02 12:14:26 -0500 | [diff] [blame] | 84 | required-projects: |
| 85 | - openstack/horizon |
Ghanshyam Mann | 0ead753 | 2020-12-29 13:22:26 -0600 | [diff] [blame] | 86 | vars: |
Ghanshyam Mann | 68a25ef | 2023-08-07 10:07:12 -0700 | [diff] [blame] | 87 | # NOTE(gmann): Default concurrency is higher (number of cpu -2) which |
| 88 | # end up 6 in upstream CI. Higher concurrency means high parallel |
| 89 | # requests to services and can cause more oom issues. To avoid the |
| 90 | # oom issue, setting the concurrency to 4 in this job. |
| 91 | tempest_concurrency: 4 |
Ghanshyam Mann | 518e426 | 2023-02-10 19:57:36 -0600 | [diff] [blame] | 92 | tox_envlist: integrated-full |
Ghanshyam Mann | 0ead753 | 2020-12-29 13:22:26 -0600 | [diff] [blame] | 93 | devstack_localrc: |
| 94 | USE_PYTHON3: true |
| 95 | FORCE_CONFIG_DRIVE: true |
| 96 | ENABLE_VOLUME_MULTIATTACH: true |
| 97 | GLANCE_USE_IMPORT_WORKFLOW: True |
Ghanshyam Mann | 4e2a6ff | 2021-06-02 12:14:26 -0500 | [diff] [blame] | 98 | devstack_plugins: |
| 99 | neutron: https://opendev.org/openstack/neutron |
Ghanshyam Mann | 4e2a6ff | 2021-06-02 12:14:26 -0500 | [diff] [blame] | 100 | devstack_services: |
| 101 | # Enbale horizon so that we can run horizon test. |
| 102 | horizon: true |
Ghanshyam Mann | 0ead753 | 2020-12-29 13:22:26 -0600 | [diff] [blame] | 103 | |
| 104 | - job: |
Ghanshyam Mann | 3ed5210 | 2022-04-25 18:07:00 -0500 | [diff] [blame] | 105 | name: tempest-full-centos-9-stream |
| 106 | parent: tempest-full-py3 |
| 107 | nodeset: devstack-single-node-centos-9-stream |
Ghanshyam Mann | 9625f0d | 2022-04-27 17:45:52 -0500 | [diff] [blame] | 108 | # centos-9-stream is supported from yoga release onwards |
Martin Kopec | c52304f | 2023-09-20 09:13:08 +0200 | [diff] [blame] | 109 | branches: |
| 110 | regex: ^stable/(stein|train|ussuri|victoria|wallaby|xena)$ |
| 111 | negate: true |
Ghanshyam Mann | 3ed5210 | 2022-04-25 18:07:00 -0500 | [diff] [blame] | 112 | description: | |
| 113 | Base integration test on CentOS 9 stream |
| 114 | vars: |
| 115 | # Required until bug/1949606 is resolved when using libvirt and QEMU |
| 116 | # >=5.0.0 with a [libvirt]virt_type of qemu (TCG). |
| 117 | configure_swap_size: 4096 |
Ghanshyam Mann | 518e426 | 2023-02-10 19:57:36 -0600 | [diff] [blame] | 118 | tox_envlist: full |
Ghanshyam Mann | 3ed5210 | 2022-04-25 18:07:00 -0500 | [diff] [blame] | 119 | |
| 120 | - job: |
Ghanshyam Mann | 61f5733 | 2020-11-25 11:46:20 -0600 | [diff] [blame] | 121 | name: tempest-integrated-networking |
| 122 | parent: devstack-tempest |
Ghanshyam Mann | 61f5733 | 2020-11-25 11:46:20 -0600 | [diff] [blame] | 123 | description: | |
| 124 | This job runs integration tests for networking. This is subset of |
| 125 | 'tempest-full-py3' job and run only Neutron and Nova related tests. |
| 126 | This is meant to be run on neutron gate only. |
| 127 | vars: |
| 128 | tox_envlist: integrated-network |
| 129 | devstack_localrc: |
| 130 | USE_PYTHON3: true |
| 131 | FORCE_CONFIG_DRIVE: true |
| 132 | devstack_services: |
| 133 | s-account: false |
| 134 | s-container: false |
| 135 | s-object: false |
| 136 | s-proxy: false |
| 137 | c-bak: false |
| 138 | |
| 139 | - job: |
| 140 | name: tempest-integrated-compute |
| 141 | parent: devstack-tempest |
Ghanshyam Mann | 61f5733 | 2020-11-25 11:46:20 -0600 | [diff] [blame] | 142 | description: | |
| 143 | This job runs integration tests for compute. This is |
| 144 | subset of 'tempest-full-py3' job and run Nova, Neutron, Cinder (except backup tests) |
| 145 | and Glance related tests. This is meant to be run on Nova gate only. |
| 146 | vars: |
Ghanshyam Mann | 68a25ef | 2023-08-07 10:07:12 -0700 | [diff] [blame] | 147 | # NOTE(gmann): Default concurrency is higher (number of cpu -2) which |
| 148 | # end up 6 in upstream CI. Higher concurrency means high parallel |
| 149 | # requests to services and can cause more oom issues. To avoid the |
| 150 | # oom issue, setting the concurrency to 4 in this job. |
| 151 | tempest_concurrency: 4 |
Ghanshyam Mann | 61f5733 | 2020-11-25 11:46:20 -0600 | [diff] [blame] | 152 | tox_envlist: integrated-compute |
Ghanshyam Mann | 4fa1534 | 2021-02-11 13:28:53 -0600 | [diff] [blame] | 153 | tempest_exclude_regex: "" |
Ghanshyam Mann | 61f5733 | 2020-11-25 11:46:20 -0600 | [diff] [blame] | 154 | devstack_localrc: |
| 155 | USE_PYTHON3: true |
| 156 | FORCE_CONFIG_DRIVE: true |
| 157 | ENABLE_VOLUME_MULTIATTACH: true |
| 158 | devstack_services: |
| 159 | s-account: false |
| 160 | s-container: false |
| 161 | s-object: false |
| 162 | s-proxy: false |
| 163 | c-bak: false |
| 164 | |
| 165 | - job: |
Ghanshyam Mann | 3ed5210 | 2022-04-25 18:07:00 -0500 | [diff] [blame] | 166 | name: tempest-integrated-compute-centos-9-stream |
Lee Yarwood | 0dba41c | 2021-06-23 10:47:44 +0100 | [diff] [blame] | 167 | parent: tempest-integrated-compute |
Ghanshyam Mann | 3ed5210 | 2022-04-25 18:07:00 -0500 | [diff] [blame] | 168 | nodeset: devstack-single-node-centos-9-stream |
Ghanshyam Mann | 9625f0d | 2022-04-27 17:45:52 -0500 | [diff] [blame] | 169 | # centos-9-stream is supported from yoga release onwards |
Martin Kopec | c52304f | 2023-09-20 09:13:08 +0200 | [diff] [blame] | 170 | branches: |
| 171 | regex: ^stable/(stein|train|ussuri|victoria|wallaby|xena)$ |
| 172 | negate: true |
Lee Yarwood | 0dba41c | 2021-06-23 10:47:44 +0100 | [diff] [blame] | 173 | description: | |
| 174 | This job runs integration tests for compute. This is |
| 175 | subset of 'tempest-full-py3' job and run Nova, Neutron, Cinder (except backup tests) |
| 176 | and Glance related tests. This is meant to be run on Nova gate only. |
Ghanshyam Mann | 3ed5210 | 2022-04-25 18:07:00 -0500 | [diff] [blame] | 177 | This version of the job also uses CentOS 9 stream. |
Lee Yarwood | 0dba41c | 2021-06-23 10:47:44 +0100 | [diff] [blame] | 178 | vars: |
| 179 | # Required until bug/1949606 is resolved when using libvirt and QEMU |
| 180 | # >=5.0.0 with a [libvirt]virt_type of qemu (TCG). |
| 181 | configure_swap_size: 4096 |
| 182 | |
| 183 | - job: |
Ghanshyam Mann | 61f5733 | 2020-11-25 11:46:20 -0600 | [diff] [blame] | 184 | name: tempest-integrated-placement |
| 185 | parent: devstack-tempest |
Ghanshyam Mann | 61f5733 | 2020-11-25 11:46:20 -0600 | [diff] [blame] | 186 | description: | |
| 187 | This job runs integration tests for placement. This is |
| 188 | subset of 'tempest-full-py3' job and run Nova and Neutron |
| 189 | related tests. This is meant to be run on Placement gate only. |
| 190 | vars: |
Ghanshyam Mann | 68a25ef | 2023-08-07 10:07:12 -0700 | [diff] [blame] | 191 | # NOTE(gmann): Default concurrency is higher (number of cpu -2) which |
| 192 | # end up 6 in upstream CI. Higher concurrency means high parallel |
| 193 | # requests to services and can cause more oom issues. To avoid the |
| 194 | # oom issue, setting the concurrency to 4 in this job. |
| 195 | tempest_concurrency: 4 |
Ghanshyam Mann | 61f5733 | 2020-11-25 11:46:20 -0600 | [diff] [blame] | 196 | tox_envlist: integrated-placement |
| 197 | devstack_localrc: |
| 198 | USE_PYTHON3: true |
| 199 | FORCE_CONFIG_DRIVE: true |
| 200 | ENABLE_VOLUME_MULTIATTACH: true |
| 201 | devstack_services: |
| 202 | s-account: false |
| 203 | s-container: false |
| 204 | s-object: false |
| 205 | s-proxy: false |
| 206 | c-bak: false |
| 207 | |
| 208 | - job: |
| 209 | name: tempest-integrated-storage |
| 210 | parent: devstack-tempest |
Ghanshyam Mann | 61f5733 | 2020-11-25 11:46:20 -0600 | [diff] [blame] | 211 | description: | |
| 212 | This job runs integration tests for image & block storage. This is |
| 213 | subset of 'tempest-full-py3' job and run Cinder, Glance, Swift and Nova |
| 214 | related tests. This is meant to be run on Cinder and Glance gate only. |
| 215 | vars: |
| 216 | tox_envlist: integrated-storage |
| 217 | devstack_localrc: |
| 218 | USE_PYTHON3: true |
| 219 | FORCE_CONFIG_DRIVE: true |
| 220 | ENABLE_VOLUME_MULTIATTACH: true |
| 221 | GLANCE_USE_IMPORT_WORKFLOW: True |
| 222 | |
| 223 | - job: |
| 224 | name: tempest-integrated-object-storage |
| 225 | parent: devstack-tempest |
Ghanshyam Mann | 61f5733 | 2020-11-25 11:46:20 -0600 | [diff] [blame] | 226 | description: | |
| 227 | This job runs integration tests for object storage. This is |
| 228 | subset of 'tempest-full-py3' job and run Swift, Cinder and Glance |
| 229 | related tests. This is meant to be run on Swift gate only. |
| 230 | vars: |
| 231 | tox_envlist: integrated-object-storage |
| 232 | devstack_localrc: |
| 233 | # NOTE(gmann): swift is not ready on python3 yet and devstack |
| 234 | # install it on python2.7 only. But settting the USE_PYTHON3 |
| 235 | # for future once swift is ready on py3. |
| 236 | USE_PYTHON3: true |
| 237 | |
| 238 | - job: |
Ghanshyam Mann | ba28d78 | 2021-09-03 10:21:54 -0500 | [diff] [blame] | 239 | name: tempest-with-latest-microversion |
| 240 | parent: tempest-full-py3 |
| 241 | description: | |
| 242 | This job runs compute, placement and volume API tests with 'latest' |
| 243 | API microversion (This can be extended to other services having API |
| 244 | microversion concept). |
| 245 | vars: |
| 246 | tox_envlist: api-microversion-tests |
| 247 | devstack_localrc: |
| 248 | TEMPEST_COMPUTE_MIN_MICROVERSION: 'latest' |
| 249 | TEMPEST_VOLUME_MIN_MICROVERSION: 'latest' |
| 250 | TEMPEST_PLACEMENT_MIN_MICROVERSION: 'latest' |
| 251 | |
| 252 | - job: |
Ghanshyam Mann | 61f5733 | 2020-11-25 11:46:20 -0600 | [diff] [blame] | 253 | name: tempest-multinode-full-py3 |
Ghanshyam Mann | 24a3a36 | 2022-10-12 15:50:28 -0500 | [diff] [blame] | 254 | parent: tempest-multinode-full-base |
| 255 | nodeset: openstack-two-node-jammy |
| 256 | # This job runs on ubuntu Jammy and after stable/zed. |
Martin Kopec | c52304f | 2023-09-20 09:13:08 +0200 | [diff] [blame] | 257 | branches: |
| 258 | regex: ^stable/(stein|train|ussuri|victoria|wallaby|xena|yoga|zed)$ |
| 259 | negate: true |
Ghanshyam Mann | 61f5733 | 2020-11-25 11:46:20 -0600 | [diff] [blame] | 260 | vars: |
Ghanshyam Mann | 68a25ef | 2023-08-07 10:07:12 -0700 | [diff] [blame] | 261 | # NOTE(gmann): Default concurrency is higher (number of cpu -2) which |
| 262 | # end up 6 in upstream CI. Higher concurrency means high parallel |
| 263 | # requests to services and can cause more oom issues. To avoid the |
| 264 | # oom issue, setting the concurrency to 4 in this job. |
| 265 | tempest_concurrency: 4 |
Martin Kopec | 450096d | 2024-02-12 22:40:45 +0100 | [diff] [blame^] | 266 | tempest_set_src_dest_host: true |
Ghanshyam Mann | 61f5733 | 2020-11-25 11:46:20 -0600 | [diff] [blame] | 267 | devstack_localrc: |
| 268 | USE_PYTHON3: true |
elajkat | 064a340 | 2019-10-17 13:18:10 +0200 | [diff] [blame] | 269 | devstack_plugins: |
| 270 | neutron: https://opendev.org/openstack/neutron |
elajkat | 064a340 | 2019-10-17 13:18:10 +0200 | [diff] [blame] | 271 | devstack_services: |
elajkat | 0b14db2 | 2021-02-08 16:43:59 +0100 | [diff] [blame] | 272 | neutron-trunk: true |
yatinkarel | 2d2cfac | 2023-02-14 16:29:42 +0530 | [diff] [blame] | 273 | br-ex-tcpdump: true |
| 274 | br-int-flows: true |
Ghanshyam Mann | 61f5733 | 2020-11-25 11:46:20 -0600 | [diff] [blame] | 275 | group-vars: |
| 276 | subnode: |
| 277 | devstack_localrc: |
| 278 | USE_PYTHON3: true |
yatinkarel | 2d2cfac | 2023-02-14 16:29:42 +0530 | [diff] [blame] | 279 | devstack_services: |
| 280 | br-ex-tcpdump: true |
| 281 | br-int-flows: true |
Ghanshyam Mann | 61f5733 | 2020-11-25 11:46:20 -0600 | [diff] [blame] | 282 | |
| 283 | - job: |
| 284 | name: tempest-slow |
| 285 | parent: tempest-multinode-full |
| 286 | description: | |
| 287 | This multinode integration job will run all the tests tagged as slow. |
| 288 | It enables the lvm multibackend setup to cover few scenario tests. |
| 289 | This job will run only slow tests (API or Scenario) serially. |
| 290 | |
| 291 | Former names for this job were: |
| 292 | * legacy-tempest-dsvm-neutron-scenario-multinode-lvm-multibackend |
| 293 | * tempest-scenario-multinode-lvm-multibackend |
| 294 | timeout: 10800 |
Ghanshyam Mann | 8de4127 | 2023-06-28 18:48:33 -0500 | [diff] [blame] | 295 | vars: |
Ghanshyam Mann | 61f5733 | 2020-11-25 11:46:20 -0600 | [diff] [blame] | 296 | tox_envlist: slow-serial |
| 297 | devstack_localrc: |
| 298 | CINDER_ENABLED_BACKENDS: lvm:lvmdriver-1,lvm:lvmdriver-2 |
| 299 | ENABLE_VOLUME_MULTIATTACH: true |
| 300 | devstack_plugins: |
| 301 | neutron: https://opendev.org/openstack/neutron |
| 302 | devstack_services: |
| 303 | neutron-placement: true |
| 304 | neutron-qos: true |
Ghanshyam Mann | 61f5733 | 2020-11-25 11:46:20 -0600 | [diff] [blame] | 305 | group-vars: |
| 306 | # NOTE(mriedem): The ENABLE_VOLUME_MULTIATTACH variable is used on both |
| 307 | # the controller and subnode prior to Rocky so we have to make sure the |
| 308 | # variable is set in both locations. |
| 309 | subnode: |
| 310 | devstack_localrc: |
| 311 | ENABLE_VOLUME_MULTIATTACH: true |
| 312 | |
| 313 | - job: |
| 314 | name: tempest-slow-py3 |
Luigi Toscano | b9ac057 | 2021-07-13 12:44:35 +0200 | [diff] [blame] | 315 | parent: tempest-multinode-full-py3 |
Ghanshyam Mann | ebecf79 | 2021-06-14 17:09:35 -0500 | [diff] [blame] | 316 | # This job version is with swift enabled on py3 |
| 317 | # as swift is ready on py3 from stable/ussuri onwards. |
Luigi Toscano | b9ac057 | 2021-07-13 12:44:35 +0200 | [diff] [blame] | 318 | timeout: 10800 |
Ghanshyam Mann | 180717d | 2023-07-14 10:50:02 -0500 | [diff] [blame] | 319 | # As the 'slow' tox env which is not available in old tempest used |
| 320 | # till stable/wallaby, this job definition is only for stable/xena |
| 321 | # onwards and separate job definition until stable/wallaby |
Martin Kopec | c52304f | 2023-09-20 09:13:08 +0200 | [diff] [blame] | 322 | branches: |
| 323 | regex: ^stable/(stein|train|ussuri|victoria|wallaby)$ |
| 324 | negate: true |
Ghanshyam Mann | 6bb98c2 | 2023-02-10 18:22:02 -0600 | [diff] [blame] | 325 | vars: |
| 326 | tox_envlist: slow |
Dan Smith | d869e3a | 2023-02-13 14:14:52 -0800 | [diff] [blame] | 327 | devstack_localrc: |
Ghanshyam Mann | 8de4127 | 2023-06-28 18:48:33 -0500 | [diff] [blame] | 328 | CINDER_ENABLED_BACKENDS: lvm:lvmdriver-1,lvm:lvmdriver-2 |
| 329 | ENABLE_VOLUME_MULTIATTACH: true |
| 330 | devstack_plugins: |
| 331 | neutron: https://opendev.org/openstack/neutron |
| 332 | devstack_services: |
| 333 | neutron-placement: true |
| 334 | neutron-qos: true |
| 335 | group-vars: |
| 336 | # NOTE(mriedem): The ENABLE_VOLUME_MULTIATTACH variable is used on both |
| 337 | # the controller and subnode prior to Rocky so we have to make sure the |
| 338 | # variable is set in both locations. |
| 339 | subnode: |
| 340 | devstack_localrc: |
| 341 | ENABLE_VOLUME_MULTIATTACH: true |
Ghanshyam Mann | 6bb98c2 | 2023-02-10 18:22:02 -0600 | [diff] [blame] | 342 | |
| 343 | - job: |
Ghanshyam Mann | 61f5733 | 2020-11-25 11:46:20 -0600 | [diff] [blame] | 344 | name: tempest-cinder-v2-api |
| 345 | parent: devstack-tempest |
Ghanshyam Mann | 2f4539d | 2021-05-18 12:32:39 -0500 | [diff] [blame] | 346 | # NOTE(gmann): Cinder v2 APIs are available until |
| 347 | # stable/wallaby only. |
| 348 | override-checkout: stable/wallaby |
Ghanshyam Mann | 61f5733 | 2020-11-25 11:46:20 -0600 | [diff] [blame] | 349 | description: | |
| 350 | This job runs the cinder API test against v2 endpoint. |
| 351 | vars: |
| 352 | tox_envlist: all |
| 353 | tempest_test_regex: api.*volume |
| 354 | devstack_localrc: |
| 355 | TEMPEST_VOLUME_TYPE: volumev2 |
| 356 | |
| 357 | - job: |
Ade Lee | 6ded070 | 2021-09-04 15:56:34 -0400 | [diff] [blame] | 358 | name: tempest-centos8-stream-fips |
| 359 | parent: devstack-tempest |
| 360 | description: | |
| 361 | Integration testing for a FIPS enabled Centos 8 system |
| 362 | nodeset: devstack-single-node-centos-8-stream |
Ade Lee | 6ded070 | 2021-09-04 15:56:34 -0400 | [diff] [blame] | 363 | vars: |
| 364 | tox_envlist: full |
| 365 | configure_swap_size: 4096 |
Ade Lee | 0687b9c | 2022-03-02 16:24:50 -0500 | [diff] [blame] | 366 | nslookup_target: 'opendev.org' |
Ade Lee | e64f4c2 | 2023-03-26 15:52:30 +0200 | [diff] [blame] | 367 | enable_fips: True |
Ade Lee | 0687b9c | 2022-03-02 16:24:50 -0500 | [diff] [blame] | 368 | |
| 369 | - job: |
| 370 | name: tempest-centos9-stream-fips |
| 371 | parent: devstack-tempest |
| 372 | description: | |
| 373 | Integration testing for a FIPS enabled Centos 9 system |
Sylvain Bauza | b8f0c30 | 2022-11-29 17:49:33 +0100 | [diff] [blame] | 374 | timeout: 10800 |
Ade Lee | 0687b9c | 2022-03-02 16:24:50 -0500 | [diff] [blame] | 375 | nodeset: devstack-single-node-centos-9-stream |
Ade Lee | 0687b9c | 2022-03-02 16:24:50 -0500 | [diff] [blame] | 376 | vars: |
| 377 | tox_envlist: full |
| 378 | configure_swap_size: 4096 |
| 379 | nslookup_target: 'opendev.org' |
Ade Lee | e64f4c2 | 2023-03-26 15:52:30 +0200 | [diff] [blame] | 380 | enable_fips: True |
Ade Lee | 6ded070 | 2021-09-04 15:56:34 -0400 | [diff] [blame] | 381 | |
| 382 | - job: |
Ghanshyam Mann | 61f5733 | 2020-11-25 11:46:20 -0600 | [diff] [blame] | 383 | name: tempest-pg-full |
| 384 | parent: tempest-full-py3 |
| 385 | description: | |
| 386 | Base integration test with Neutron networking and PostgreSQL. |
| 387 | Former name for this job was legacy-tempest-dsvm-neutron-pg-full. |
| 388 | vars: |
| 389 | devstack_localrc: |
Ghanshyam Mann | 861c78f | 2021-02-09 11:25:26 -0600 | [diff] [blame] | 390 | # TODO(gmann): Enable File injection tests once nova bug is fixed |
| 391 | # https://bugs.launchpad.net/nova/+bug/1882421 |
| 392 | # ENABLE_FILE_INJECTION: true |
Ghanshyam Mann | 61f5733 | 2020-11-25 11:46:20 -0600 | [diff] [blame] | 393 | DATABASE_TYPE: postgresql |
| 394 | |
Ghanshyam Mann | 7ab45a9 | 2022-11-21 19:14:05 -0600 | [diff] [blame] | 395 | - job: |
| 396 | name: tempest-full-enforce-scope-new-defaults |
| 397 | parent: tempest-full-py3 |
| 398 | description: | |
| 399 | This job runs the Tempest tests with scope and new defaults enabled. |
Ghanshyam Mann | 7ab45a9 | 2022-11-21 19:14:05 -0600 | [diff] [blame] | 400 | vars: |
| 401 | devstack_localrc: |
| 402 | # Enabeling the scope and new defaults for services. |
| 403 | # NOTE: (gmann) We need to keep keystone scope check disable as |
| 404 | # services (except ironic) does not support the system scope and |
| 405 | # they need keystone to continue working with project scope. Until |
| 406 | # Keystone policies are changed to work for both system as well as |
| 407 | # for project scoped, we need to keep scope check disable for |
| 408 | # keystone. |
Ghanshyam Mann | cc0e9b1 | 2023-10-25 13:13:26 -0700 | [diff] [blame] | 409 | # Nova, Glance, and Neutron have enabled the new defaults and scope |
| 410 | # by default in devstack. |
Ghanshyam Mann | 7ab45a9 | 2022-11-21 19:14:05 -0600 | [diff] [blame] | 411 | CINDER_ENFORCE_SCOPE: true |
Ghanshyam Mann | c5ff86b | 2022-11-30 14:37:26 -0600 | [diff] [blame] | 412 | PLACEMENT_ENFORCE_SCOPE: true |
Ghanshyam Mann | 7ab45a9 | 2022-11-21 19:14:05 -0600 | [diff] [blame] | 413 | |
Ghanshyam Mann | 2c91241 | 2023-07-27 17:17:52 -0700 | [diff] [blame] | 414 | - job: |
| 415 | name: tempest-all-rbac-old-defaults |
| 416 | parent: tempest-all |
| 417 | description: | |
| 418 | Integration test that runs all tests on RBAC old defaults. |
Ghanshyam Mann | cc0e9b1 | 2023-10-25 13:13:26 -0700 | [diff] [blame] | 419 | vars: |
Ghanshyam Mann | 2c91241 | 2023-07-27 17:17:52 -0700 | [diff] [blame] | 420 | devstack_localrc: |
Ghanshyam Mann | cc0e9b1 | 2023-10-25 13:13:26 -0700 | [diff] [blame] | 421 | # NOTE(gmann): Nova, Glance, and Neutron have enabled the new defaults |
| 422 | # and scope by default in devstack so we need some jobs keep testing |
| 423 | # the old defaults until they are removed from service side. |
Ghanshyam Mann | 2c91241 | 2023-07-27 17:17:52 -0700 | [diff] [blame] | 424 | NOVA_ENFORCE_SCOPE: false |
| 425 | GLANCE_ENFORCE_SCOPE: false |
Ghanshyam Mann | cc0e9b1 | 2023-10-25 13:13:26 -0700 | [diff] [blame] | 426 | NEUTRON_ENFORCE_SCOPE: false |
Ghanshyam Mann | 2c91241 | 2023-07-27 17:17:52 -0700 | [diff] [blame] | 427 | |
Ghanshyam Mann | 61f5733 | 2020-11-25 11:46:20 -0600 | [diff] [blame] | 428 | - project-template: |
| 429 | name: integrated-gate-networking |
| 430 | description: | |
| 431 | Run the python3 Tempest network integration tests (Nova and Neutron related) |
| 432 | in check and gate for the neutron integrated gate. This is meant to be |
| 433 | run on neutron gate only. |
| 434 | check: |
| 435 | jobs: |
| 436 | - grenade |
Ghanshyam Mann | 270e4fe | 2023-09-28 13:29:52 -0700 | [diff] [blame] | 437 | # NOTE(gmann): These template are generic and used on stable branch |
| 438 | # as well as master testing. So grenade-skip-level on stable/2023.1 |
| 439 | # which test stable/yoga to stable/2023.1 upgrade is non-voting. |
Dan Smith | af19ff4 | 2022-02-23 10:42:26 -0800 | [diff] [blame] | 440 | - grenade-skip-level: |
| 441 | voting: false |
Ghanshyam Mann | bbb2e04 | 2023-03-20 13:51:51 -0500 | [diff] [blame] | 442 | branches: |
| 443 | - stable/2023.1 |
Ghanshyam Mann | 270e4fe | 2023-09-28 13:29:52 -0700 | [diff] [blame] | 444 | # on master (SLURP 2024.1) grenade-skip-level which test stable/2023.1 |
| 445 | # to stable/2024.1 upgrade is voting. |
| 446 | - grenade-skip-level: |
| 447 | branches: |
| 448 | - master |
Ghanshyam Mann | 61f5733 | 2020-11-25 11:46:20 -0600 | [diff] [blame] | 449 | - tempest-integrated-networking |
Ghanshyam Mann | 2202f7b | 2022-06-01 16:31:51 -0500 | [diff] [blame] | 450 | # Do not run it on ussuri until below issue is fixed |
| 451 | # https://storyboard.openstack.org/#!/story/2010057 |
Elod Illes | 31afd4e | 2023-02-07 15:17:32 +0100 | [diff] [blame] | 452 | # and job is broken up to wallaby branch due to the issue |
Elod Illes | e17f1d3 | 2023-02-02 15:24:35 +0100 | [diff] [blame] | 453 | # described in https://review.opendev.org/872341 |
Ghanshyam Mann | 2202f7b | 2022-06-01 16:31:51 -0500 | [diff] [blame] | 454 | - openstacksdk-functional-devstack: |
Martin Kopec | c52304f | 2023-09-20 09:13:08 +0200 | [diff] [blame] | 455 | branches: |
| 456 | regex: ^stable/(ussuri|victoria|wallaby)$ |
| 457 | negate: true |
Ghanshyam Mann | 61f5733 | 2020-11-25 11:46:20 -0600 | [diff] [blame] | 458 | gate: |
| 459 | jobs: |
| 460 | - grenade |
| 461 | - tempest-integrated-networking |
Ghanshyam Mann | 270e4fe | 2023-09-28 13:29:52 -0700 | [diff] [blame] | 462 | # on master (SLURP 2024.1) grenade-skip-level which test stable/2023.1 |
| 463 | # to stable/2024.1 upgrade is voting. |
| 464 | - grenade-skip-level: |
| 465 | branches: |
| 466 | - master |
Ghanshyam Mann | 2202f7b | 2022-06-01 16:31:51 -0500 | [diff] [blame] | 467 | # Do not run it on ussuri until below issue is fixed |
| 468 | # https://storyboard.openstack.org/#!/story/2010057 |
Elod Illes | 31afd4e | 2023-02-07 15:17:32 +0100 | [diff] [blame] | 469 | # and job is broken up to wallaby branch due to the issue |
Elod Illes | e17f1d3 | 2023-02-02 15:24:35 +0100 | [diff] [blame] | 470 | # described in https://review.opendev.org/872341 |
Ghanshyam Mann | 2202f7b | 2022-06-01 16:31:51 -0500 | [diff] [blame] | 471 | - openstacksdk-functional-devstack: |
Martin Kopec | c52304f | 2023-09-20 09:13:08 +0200 | [diff] [blame] | 472 | branches: |
| 473 | regex: ^stable/(ussuri|victoria|wallaby)$ |
| 474 | negate: true |
Ghanshyam Mann | 61f5733 | 2020-11-25 11:46:20 -0600 | [diff] [blame] | 475 | |
| 476 | - project-template: |
| 477 | name: integrated-gate-compute |
| 478 | description: | |
| 479 | Run the python3 Tempest compute integration tests |
| 480 | (Nova, Neutron, Cinder and Glance related) in check and gate |
| 481 | for the Nova integrated gate. This is meant to be |
| 482 | run on Nova gate only. |
Ghanshyam Mann | 9625f0d | 2022-04-27 17:45:52 -0500 | [diff] [blame] | 483 | # NOTE(gmann): This template is used for stable branches also so when we |
| 484 | # add/remove jobs here we need to make sure we should not change the |
| 485 | # behaviour for stable branches. For example, with branch variant we need |
| 486 | # to make sure old job keep running on stable branches and the new one run |
| 487 | # only from master(or the branch it was meant to run). |
Ghanshyam Mann | 61f5733 | 2020-11-25 11:46:20 -0600 | [diff] [blame] | 488 | check: |
| 489 | jobs: |
Ghanshyam Mann | 270e4fe | 2023-09-28 13:29:52 -0700 | [diff] [blame] | 490 | # NOTE(gmann): These template are generic and used on stable branch |
| 491 | # as well as master testing. So grenade-skip-level on stable/2023.1 |
| 492 | # which test stable/yoga to stable/2023.1 upgrade is non-voting. |
Dan Smith | af19ff4 | 2022-02-23 10:42:26 -0800 | [diff] [blame] | 493 | - grenade-skip-level: |
| 494 | voting: false |
Ghanshyam Mann | bbb2e04 | 2023-03-20 13:51:51 -0500 | [diff] [blame] | 495 | branches: |
| 496 | - stable/2023.1 |
| 497 | # NOTE(gmann): Nova decided to run grenade skip level testing always |
| 498 | # (on SLURP as well as non SLURP release) so we are adding grenade-skip-level-always |
| 499 | # job in integrated gate and we do not need to update skip level job |
| 500 | # here until Nova change the decision. |
| 501 | # This is added from 2023.2 relese cycle onwards so we need to use branch variant |
| 502 | # to make sure we do not run this job on older than 2023.2 gate. |
| 503 | - grenade-skip-level-always: |
| 504 | branches: |
| 505 | - master |
Ghanshyam Mann | 61f5733 | 2020-11-25 11:46:20 -0600 | [diff] [blame] | 506 | - tempest-integrated-compute |
Ghanshyam Mann | 9625f0d | 2022-04-27 17:45:52 -0500 | [diff] [blame] | 507 | # centos-8-stream is tested from wallaby -> yoga branches |
| 508 | - tempest-integrated-compute-centos-8-stream: |
| 509 | branches: ^stable/(wallaby|xena|yoga).*$ |
Ghanshyam Mann | 2202f7b | 2022-06-01 16:31:51 -0500 | [diff] [blame] | 510 | # Do not run it on ussuri until below issue is fixed |
| 511 | # https://storyboard.openstack.org/#!/story/2010057 |
Elod Illes | 31afd4e | 2023-02-07 15:17:32 +0100 | [diff] [blame] | 512 | # and job is broken up to wallaby branch due to the issue |
Elod Illes | e17f1d3 | 2023-02-02 15:24:35 +0100 | [diff] [blame] | 513 | # described in https://review.opendev.org/872341 |
Ghanshyam Mann | 2202f7b | 2022-06-01 16:31:51 -0500 | [diff] [blame] | 514 | - openstacksdk-functional-devstack: |
Martin Kopec | c52304f | 2023-09-20 09:13:08 +0200 | [diff] [blame] | 515 | branches: |
| 516 | regex: ^stable/(ussuri|victoria|wallaby)$ |
| 517 | negate: true |
Ghanshyam Mann | 61f5733 | 2020-11-25 11:46:20 -0600 | [diff] [blame] | 518 | gate: |
| 519 | jobs: |
Ghanshyam Mann | bbb2e04 | 2023-03-20 13:51:51 -0500 | [diff] [blame] | 520 | - grenade-skip-level-always: |
| 521 | branches: |
| 522 | - master |
Ghanshyam Mann | 61f5733 | 2020-11-25 11:46:20 -0600 | [diff] [blame] | 523 | - tempest-integrated-compute |
Ghanshyam Mann | 2202f7b | 2022-06-01 16:31:51 -0500 | [diff] [blame] | 524 | - openstacksdk-functional-devstack: |
Martin Kopec | c52304f | 2023-09-20 09:13:08 +0200 | [diff] [blame] | 525 | branches: |
| 526 | regex: ^stable/(ussuri|victoria|wallaby)$ |
| 527 | negate: true |
Sean Mooney | 9c263de | 2022-07-18 16:55:31 +0100 | [diff] [blame] | 528 | periodic-weekly: |
| 529 | jobs: |
| 530 | # centos-9-stream is tested from zed release onwards |
| 531 | - tempest-integrated-compute-centos-9-stream: |
Martin Kopec | c52304f | 2023-09-20 09:13:08 +0200 | [diff] [blame] | 532 | branches: |
| 533 | regex: ^stable/(stein|train|ussuri|victoria|wallaby|xena|yoga)$ |
| 534 | negate: true |
Ghanshyam Mann | 61f5733 | 2020-11-25 11:46:20 -0600 | [diff] [blame] | 535 | |
| 536 | - project-template: |
| 537 | name: integrated-gate-placement |
| 538 | description: | |
| 539 | Run the python3 Tempest placement integration tests |
| 540 | (Nova and Neutron related) in check and gate |
| 541 | for the Placement integrated gate. This is meant to be |
| 542 | run on Placement gate only. |
| 543 | check: |
| 544 | jobs: |
| 545 | - grenade |
Ghanshyam Mann | 270e4fe | 2023-09-28 13:29:52 -0700 | [diff] [blame] | 546 | # NOTE(gmann): These template are generic and used on stable branch |
| 547 | # as well as master testing. So grenade-skip-level on stable/2023.1 |
| 548 | # which test stable/yoga to stable/2023.1 upgrade is non-voting. |
Dan Smith | af19ff4 | 2022-02-23 10:42:26 -0800 | [diff] [blame] | 549 | - grenade-skip-level: |
| 550 | voting: false |
Ghanshyam Mann | bbb2e04 | 2023-03-20 13:51:51 -0500 | [diff] [blame] | 551 | branches: |
| 552 | - stable/2023.1 |
Ghanshyam Mann | 270e4fe | 2023-09-28 13:29:52 -0700 | [diff] [blame] | 553 | # on master (SLURP 2024.1) grenade-skip-level which test stable/2023.1 |
| 554 | # to stable/2024.1 upgrade is voting. |
| 555 | - grenade-skip-level: |
| 556 | branches: |
| 557 | - master |
Ghanshyam Mann | 61f5733 | 2020-11-25 11:46:20 -0600 | [diff] [blame] | 558 | - tempest-integrated-placement |
Ghanshyam Mann | 2202f7b | 2022-06-01 16:31:51 -0500 | [diff] [blame] | 559 | # Do not run it on ussuri until below issue is fixed |
| 560 | # https://storyboard.openstack.org/#!/story/2010057 |
Elod Illes | 31afd4e | 2023-02-07 15:17:32 +0100 | [diff] [blame] | 561 | # and job is broken up to wallaby branch due to the issue |
Elod Illes | e17f1d3 | 2023-02-02 15:24:35 +0100 | [diff] [blame] | 562 | # described in https://review.opendev.org/872341 |
Ghanshyam Mann | 2202f7b | 2022-06-01 16:31:51 -0500 | [diff] [blame] | 563 | - openstacksdk-functional-devstack: |
Martin Kopec | c52304f | 2023-09-20 09:13:08 +0200 | [diff] [blame] | 564 | branches: |
| 565 | regex: ^stable/(ussuri|victoria|wallaby)$ |
| 566 | negate: true |
Ghanshyam Mann | 61f5733 | 2020-11-25 11:46:20 -0600 | [diff] [blame] | 567 | gate: |
| 568 | jobs: |
| 569 | - grenade |
| 570 | - tempest-integrated-placement |
Ghanshyam Mann | 270e4fe | 2023-09-28 13:29:52 -0700 | [diff] [blame] | 571 | # on master (SLURP 2024.1) grenade-skip-level which test stable/2023.1 |
| 572 | # to stable/2024.1 upgrade is voting. |
| 573 | - grenade-skip-level: |
| 574 | branches: |
| 575 | - master |
Ghanshyam Mann | 2202f7b | 2022-06-01 16:31:51 -0500 | [diff] [blame] | 576 | # Do not run it on ussuri until below issue is fixed |
| 577 | # https://storyboard.openstack.org/#!/story/2010057 |
Elod Illes | 31afd4e | 2023-02-07 15:17:32 +0100 | [diff] [blame] | 578 | # and job is broken up to wallaby branch due to the issue |
Elod Illes | e17f1d3 | 2023-02-02 15:24:35 +0100 | [diff] [blame] | 579 | # described in https://review.opendev.org/872341 |
Ghanshyam Mann | 2202f7b | 2022-06-01 16:31:51 -0500 | [diff] [blame] | 580 | - openstacksdk-functional-devstack: |
Martin Kopec | c52304f | 2023-09-20 09:13:08 +0200 | [diff] [blame] | 581 | branches: |
| 582 | regex: ^stable/(ussuri|victoria|wallaby)$ |
| 583 | negate: true |
Ghanshyam Mann | 61f5733 | 2020-11-25 11:46:20 -0600 | [diff] [blame] | 584 | |
| 585 | - project-template: |
| 586 | name: integrated-gate-storage |
| 587 | description: | |
| 588 | Run the python3 Tempest image & block storage integration tests |
| 589 | (Cinder, Glance, Swift and Nova related) in check and gate |
| 590 | for the neutron integrated gate. This is meant to be |
| 591 | run on Cinder and Glance gate only. |
| 592 | check: |
| 593 | jobs: |
| 594 | - grenade |
Ghanshyam Mann | 270e4fe | 2023-09-28 13:29:52 -0700 | [diff] [blame] | 595 | # NOTE(gmann): These template are generic and used on stable branch |
| 596 | # as well as master testing. So grenade-skip-level on stable/2023.1 |
| 597 | # which test stable/yoga to stable/2023.1 upgrade is non-voting. |
Dan Smith | af19ff4 | 2022-02-23 10:42:26 -0800 | [diff] [blame] | 598 | - grenade-skip-level: |
| 599 | voting: false |
Ghanshyam Mann | bbb2e04 | 2023-03-20 13:51:51 -0500 | [diff] [blame] | 600 | branches: |
| 601 | - stable/2023.1 |
Ghanshyam Mann | 270e4fe | 2023-09-28 13:29:52 -0700 | [diff] [blame] | 602 | # on master (SLURP 2024.1) grenade-skip-level which test stable/2023.1 |
| 603 | # to stable/2024.1 upgrade is voting. |
| 604 | - grenade-skip-level: |
| 605 | branches: |
| 606 | - master |
Ghanshyam Mann | 61f5733 | 2020-11-25 11:46:20 -0600 | [diff] [blame] | 607 | - tempest-integrated-storage |
Ghanshyam Mann | 2202f7b | 2022-06-01 16:31:51 -0500 | [diff] [blame] | 608 | # Do not run it on ussuri until below issue is fixed |
| 609 | # https://storyboard.openstack.org/#!/story/2010057 |
Elod Illes | 31afd4e | 2023-02-07 15:17:32 +0100 | [diff] [blame] | 610 | # and job is broken up to wallaby branch due to the issue |
Elod Illes | e17f1d3 | 2023-02-02 15:24:35 +0100 | [diff] [blame] | 611 | # described in https://review.opendev.org/872341 |
Ghanshyam Mann | 2202f7b | 2022-06-01 16:31:51 -0500 | [diff] [blame] | 612 | - openstacksdk-functional-devstack: |
Martin Kopec | c52304f | 2023-09-20 09:13:08 +0200 | [diff] [blame] | 613 | branches: |
| 614 | regex: ^stable/(ussuri|victoria|wallaby)$ |
| 615 | negate: true |
Ghanshyam Mann | 61f5733 | 2020-11-25 11:46:20 -0600 | [diff] [blame] | 616 | gate: |
| 617 | jobs: |
| 618 | - grenade |
Ghanshyam Mann | 270e4fe | 2023-09-28 13:29:52 -0700 | [diff] [blame] | 619 | # on master (SLURP 2024.1) grenade-skip-level which test stable/2023.1 |
| 620 | # to stable/2024.1 upgrade is voting. |
| 621 | - grenade-skip-level: |
| 622 | branches: |
| 623 | - master |
Ghanshyam Mann | 61f5733 | 2020-11-25 11:46:20 -0600 | [diff] [blame] | 624 | - tempest-integrated-storage |
Ghanshyam Mann | 2202f7b | 2022-06-01 16:31:51 -0500 | [diff] [blame] | 625 | # Do not run it on ussuri until below issue is fixed |
| 626 | # https://storyboard.openstack.org/#!/story/2010057 |
Elod Illes | 31afd4e | 2023-02-07 15:17:32 +0100 | [diff] [blame] | 627 | # and job is broken up to wallaby branch due to the issue |
Elod Illes | e17f1d3 | 2023-02-02 15:24:35 +0100 | [diff] [blame] | 628 | # described in https://review.opendev.org/872341 |
Ghanshyam Mann | 2202f7b | 2022-06-01 16:31:51 -0500 | [diff] [blame] | 629 | - openstacksdk-functional-devstack: |
Martin Kopec | c52304f | 2023-09-20 09:13:08 +0200 | [diff] [blame] | 630 | branches: |
| 631 | regex: ^stable/(ussuri|victoria|wallaby)$ |
| 632 | negate: true |
Ghanshyam Mann | 61f5733 | 2020-11-25 11:46:20 -0600 | [diff] [blame] | 633 | |
| 634 | - project-template: |
| 635 | name: integrated-gate-object-storage |
| 636 | description: | |
| 637 | Run the python3 Tempest object storage integration tests |
| 638 | (Swift, Cinder and Glance related) in check and gate |
| 639 | for the swift integrated gate. This is meant to be |
| 640 | run on swift gate only. |
| 641 | check: |
| 642 | jobs: |
| 643 | - grenade |
Ghanshyam Mann | 270e4fe | 2023-09-28 13:29:52 -0700 | [diff] [blame] | 644 | # on master (SLURP 2024.1) grenade-skip-level which test stable/2023.1 |
| 645 | # to stable/2024.1 upgrade is voting. |
| 646 | - grenade-skip-level: |
| 647 | branches: |
| 648 | - master |
Ghanshyam Mann | 61f5733 | 2020-11-25 11:46:20 -0600 | [diff] [blame] | 649 | - tempest-integrated-object-storage |
Ghanshyam Mann | 2202f7b | 2022-06-01 16:31:51 -0500 | [diff] [blame] | 650 | # Do not run it on ussuri until below issue is fixed |
| 651 | # https://storyboard.openstack.org/#!/story/2010057 |
Elod Illes | 31afd4e | 2023-02-07 15:17:32 +0100 | [diff] [blame] | 652 | # and job is broken up to wallaby branch due to the issue |
Elod Illes | e17f1d3 | 2023-02-02 15:24:35 +0100 | [diff] [blame] | 653 | # described in https://review.opendev.org/872341 |
Ghanshyam Mann | 2202f7b | 2022-06-01 16:31:51 -0500 | [diff] [blame] | 654 | - openstacksdk-functional-devstack: |
Martin Kopec | c52304f | 2023-09-20 09:13:08 +0200 | [diff] [blame] | 655 | branches: |
| 656 | regex: ^stable/(ussuri|victoria|wallaby)$ |
| 657 | negate: true |
Ghanshyam Mann | 61f5733 | 2020-11-25 11:46:20 -0600 | [diff] [blame] | 658 | gate: |
| 659 | jobs: |
| 660 | - grenade |
Ghanshyam Mann | 270e4fe | 2023-09-28 13:29:52 -0700 | [diff] [blame] | 661 | # on master (SLURP 2024.1) grenade-skip-level which test stable/2023.1 |
| 662 | # to stable/2024.1 upgrade is voting. |
| 663 | - grenade-skip-level: |
| 664 | branches: |
| 665 | - master |
Ghanshyam Mann | 61f5733 | 2020-11-25 11:46:20 -0600 | [diff] [blame] | 666 | - tempest-integrated-object-storage |
Ghanshyam Mann | 2202f7b | 2022-06-01 16:31:51 -0500 | [diff] [blame] | 667 | # Do not run it on ussuri until below issue is fixed |
| 668 | # https://storyboard.openstack.org/#!/story/2010057 |
Elod Illes | 31afd4e | 2023-02-07 15:17:32 +0100 | [diff] [blame] | 669 | # and job is broken up to wallaby branch due to the issue |
Elod Illes | e17f1d3 | 2023-02-02 15:24:35 +0100 | [diff] [blame] | 670 | # described in https://review.opendev.org/872341 |
Ghanshyam Mann | 2202f7b | 2022-06-01 16:31:51 -0500 | [diff] [blame] | 671 | - openstacksdk-functional-devstack: |
Martin Kopec | c52304f | 2023-09-20 09:13:08 +0200 | [diff] [blame] | 672 | branches: |
| 673 | regex: ^stable/(ussuri|victoria|wallaby)$ |
| 674 | negate: true |