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