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