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