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