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 |
| 65 | parent: devstack-tempest |
| 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. |
| 77 | branches: ^(?!stable/(ocata|pike|queens|rocky|stein|train)).*$ |
| 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 | 518e426 | 2023-02-10 19:57:36 -0600 | [diff] [blame] | 87 | tox_envlist: integrated-full |
Ghanshyam Mann | 0ead753 | 2020-12-29 13:22:26 -0600 | [diff] [blame] | 88 | devstack_localrc: |
| 89 | USE_PYTHON3: true |
| 90 | FORCE_CONFIG_DRIVE: true |
| 91 | ENABLE_VOLUME_MULTIATTACH: true |
| 92 | GLANCE_USE_IMPORT_WORKFLOW: True |
Ghanshyam Mann | 4e2a6ff | 2021-06-02 12:14:26 -0500 | [diff] [blame] | 93 | devstack_plugins: |
| 94 | neutron: https://opendev.org/openstack/neutron |
Ghanshyam Mann | 4e2a6ff | 2021-06-02 12:14:26 -0500 | [diff] [blame] | 95 | devstack_services: |
| 96 | # Enbale horizon so that we can run horizon test. |
| 97 | horizon: true |
Ghanshyam Mann | 0ead753 | 2020-12-29 13:22:26 -0600 | [diff] [blame] | 98 | |
Ghanshyam Mann | 24a3a36 | 2022-10-12 15:50:28 -0500 | [diff] [blame] | 99 | # TODO(gmann): As per the 2023.1 testing runtime, we need to run at least |
| 100 | # one job on Focal. This job can be removed as per the future testing |
| 101 | # runtime (whenever we drop the Ubuntu Focal testing). |
| 102 | - job: |
| 103 | name: tempest-full-ubuntu-focal |
| 104 | description: This is tempest-full python3 job on Ubuntu Focal(20.04) |
| 105 | parent: tempest-full-py3 |
| 106 | nodeset: openstack-single-node-focal |
| 107 | |
Ghanshyam Mann | 0ead753 | 2020-12-29 13:22:26 -0600 | [diff] [blame] | 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: |
| 151 | tox_envlist: integrated-compute |
Ghanshyam Mann | 4fa1534 | 2021-02-11 13:28:53 -0600 | [diff] [blame] | 152 | tempest_exclude_regex: "" |
Ghanshyam Mann | 61f5733 | 2020-11-25 11:46:20 -0600 | [diff] [blame] | 153 | devstack_localrc: |
| 154 | USE_PYTHON3: true |
| 155 | FORCE_CONFIG_DRIVE: true |
| 156 | ENABLE_VOLUME_MULTIATTACH: true |
| 157 | devstack_services: |
| 158 | s-account: false |
| 159 | s-container: false |
| 160 | s-object: false |
| 161 | s-proxy: false |
| 162 | c-bak: false |
| 163 | |
| 164 | - job: |
Ghanshyam Mann | 3ed5210 | 2022-04-25 18:07:00 -0500 | [diff] [blame] | 165 | name: tempest-integrated-compute-centos-9-stream |
Lee Yarwood | 0dba41c | 2021-06-23 10:47:44 +0100 | [diff] [blame] | 166 | parent: tempest-integrated-compute |
Ghanshyam Mann | 3ed5210 | 2022-04-25 18:07:00 -0500 | [diff] [blame] | 167 | nodeset: devstack-single-node-centos-9-stream |
Ghanshyam Mann | 9625f0d | 2022-04-27 17:45:52 -0500 | [diff] [blame] | 168 | # centos-9-stream is supported from yoga release onwards |
| 169 | branches: ^(?!stable/(pike|queens|rocky|stein|train|ussuri|victoria|wallaby|xena)).*$ |
Lee Yarwood | 0dba41c | 2021-06-23 10:47:44 +0100 | [diff] [blame] | 170 | description: | |
| 171 | This job runs integration tests for compute. This is |
| 172 | subset of 'tempest-full-py3' job and run Nova, Neutron, Cinder (except backup tests) |
| 173 | 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] | 174 | This version of the job also uses CentOS 9 stream. |
Lee Yarwood | 0dba41c | 2021-06-23 10:47:44 +0100 | [diff] [blame] | 175 | vars: |
| 176 | # Required until bug/1949606 is resolved when using libvirt and QEMU |
| 177 | # >=5.0.0 with a [libvirt]virt_type of qemu (TCG). |
| 178 | configure_swap_size: 4096 |
| 179 | |
| 180 | - job: |
Ghanshyam Mann | 61f5733 | 2020-11-25 11:46:20 -0600 | [diff] [blame] | 181 | name: tempest-integrated-placement |
| 182 | parent: devstack-tempest |
| 183 | branches: ^(?!stable/ocata).*$ |
| 184 | description: | |
| 185 | This job runs integration tests for placement. This is |
| 186 | subset of 'tempest-full-py3' job and run Nova and Neutron |
| 187 | related tests. This is meant to be run on Placement gate only. |
| 188 | vars: |
| 189 | tox_envlist: integrated-placement |
| 190 | devstack_localrc: |
| 191 | USE_PYTHON3: true |
| 192 | FORCE_CONFIG_DRIVE: true |
| 193 | ENABLE_VOLUME_MULTIATTACH: true |
| 194 | devstack_services: |
| 195 | s-account: false |
| 196 | s-container: false |
| 197 | s-object: false |
| 198 | s-proxy: false |
| 199 | c-bak: false |
| 200 | |
| 201 | - job: |
| 202 | name: tempest-integrated-storage |
| 203 | parent: devstack-tempest |
| 204 | branches: ^(?!stable/ocata).*$ |
| 205 | description: | |
| 206 | This job runs integration tests for image & block storage. This is |
| 207 | subset of 'tempest-full-py3' job and run Cinder, Glance, Swift and Nova |
| 208 | related tests. This is meant to be run on Cinder and Glance gate only. |
| 209 | vars: |
| 210 | tox_envlist: integrated-storage |
| 211 | devstack_localrc: |
| 212 | USE_PYTHON3: true |
| 213 | FORCE_CONFIG_DRIVE: true |
| 214 | ENABLE_VOLUME_MULTIATTACH: true |
| 215 | GLANCE_USE_IMPORT_WORKFLOW: True |
| 216 | |
| 217 | - job: |
| 218 | name: tempest-integrated-object-storage |
| 219 | parent: devstack-tempest |
| 220 | branches: ^(?!stable/ocata).*$ |
| 221 | description: | |
| 222 | This job runs integration tests for object storage. This is |
| 223 | subset of 'tempest-full-py3' job and run Swift, Cinder and Glance |
| 224 | related tests. This is meant to be run on Swift gate only. |
| 225 | vars: |
| 226 | tox_envlist: integrated-object-storage |
| 227 | devstack_localrc: |
| 228 | # NOTE(gmann): swift is not ready on python3 yet and devstack |
| 229 | # install it on python2.7 only. But settting the USE_PYTHON3 |
| 230 | # for future once swift is ready on py3. |
| 231 | USE_PYTHON3: true |
| 232 | |
| 233 | - job: |
Ghanshyam Mann | ba28d78 | 2021-09-03 10:21:54 -0500 | [diff] [blame] | 234 | name: tempest-with-latest-microversion |
| 235 | parent: tempest-full-py3 |
| 236 | description: | |
| 237 | This job runs compute, placement and volume API tests with 'latest' |
| 238 | API microversion (This can be extended to other services having API |
| 239 | microversion concept). |
| 240 | vars: |
| 241 | tox_envlist: api-microversion-tests |
| 242 | devstack_localrc: |
| 243 | TEMPEST_COMPUTE_MIN_MICROVERSION: 'latest' |
| 244 | TEMPEST_VOLUME_MIN_MICROVERSION: 'latest' |
| 245 | TEMPEST_PLACEMENT_MIN_MICROVERSION: 'latest' |
| 246 | |
| 247 | - job: |
Ghanshyam Mann | 61f5733 | 2020-11-25 11:46:20 -0600 | [diff] [blame] | 248 | name: tempest-multinode-full-py3 |
Ghanshyam Mann | 24a3a36 | 2022-10-12 15:50:28 -0500 | [diff] [blame] | 249 | parent: tempest-multinode-full-base |
| 250 | nodeset: openstack-two-node-jammy |
| 251 | # This job runs on ubuntu Jammy and after stable/zed. |
| 252 | 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] | 253 | vars: |
| 254 | devstack_localrc: |
| 255 | USE_PYTHON3: true |
elajkat | 064a340 | 2019-10-17 13:18:10 +0200 | [diff] [blame] | 256 | devstack_plugins: |
| 257 | neutron: https://opendev.org/openstack/neutron |
elajkat | 064a340 | 2019-10-17 13:18:10 +0200 | [diff] [blame] | 258 | devstack_services: |
elajkat | 0b14db2 | 2021-02-08 16:43:59 +0100 | [diff] [blame] | 259 | neutron-trunk: true |
yatinkarel | 2d2cfac | 2023-02-14 16:29:42 +0530 | [diff] [blame] | 260 | br-ex-tcpdump: true |
| 261 | br-int-flows: true |
Ghanshyam Mann | 61f5733 | 2020-11-25 11:46:20 -0600 | [diff] [blame] | 262 | group-vars: |
| 263 | subnode: |
| 264 | devstack_localrc: |
| 265 | USE_PYTHON3: true |
yatinkarel | 2d2cfac | 2023-02-14 16:29:42 +0530 | [diff] [blame] | 266 | devstack_services: |
| 267 | br-ex-tcpdump: true |
| 268 | br-int-flows: true |
Ghanshyam Mann | 61f5733 | 2020-11-25 11:46:20 -0600 | [diff] [blame] | 269 | |
| 270 | - job: |
| 271 | name: tempest-slow |
| 272 | parent: tempest-multinode-full |
| 273 | description: | |
| 274 | This multinode integration job will run all the tests tagged as slow. |
| 275 | It enables the lvm multibackend setup to cover few scenario tests. |
| 276 | This job will run only slow tests (API or Scenario) serially. |
| 277 | |
| 278 | Former names for this job were: |
| 279 | * legacy-tempest-dsvm-neutron-scenario-multinode-lvm-multibackend |
| 280 | * tempest-scenario-multinode-lvm-multibackend |
| 281 | timeout: 10800 |
Hemanth Nakkina | f4bd554 | 2021-02-10 09:12:14 +0530 | [diff] [blame] | 282 | # This job runs on stable/stein onwards. |
| 283 | branches: ^(?!stable/(ocata|pike|queens|rocky)).*$ |
Luigi Toscano | b9ac057 | 2021-07-13 12:44:35 +0200 | [diff] [blame] | 284 | vars: &tempest_slow_vars |
Ghanshyam Mann | 61f5733 | 2020-11-25 11:46:20 -0600 | [diff] [blame] | 285 | tox_envlist: slow-serial |
| 286 | devstack_localrc: |
| 287 | CINDER_ENABLED_BACKENDS: lvm:lvmdriver-1,lvm:lvmdriver-2 |
| 288 | ENABLE_VOLUME_MULTIATTACH: true |
| 289 | devstack_plugins: |
| 290 | neutron: https://opendev.org/openstack/neutron |
| 291 | devstack_services: |
| 292 | neutron-placement: true |
| 293 | neutron-qos: true |
Ghanshyam Mann | 61f5733 | 2020-11-25 11:46:20 -0600 | [diff] [blame] | 294 | tempest_concurrency: 2 |
| 295 | group-vars: |
| 296 | # NOTE(mriedem): The ENABLE_VOLUME_MULTIATTACH variable is used on both |
| 297 | # the controller and subnode prior to Rocky so we have to make sure the |
| 298 | # variable is set in both locations. |
| 299 | subnode: |
| 300 | devstack_localrc: |
| 301 | ENABLE_VOLUME_MULTIATTACH: true |
| 302 | |
| 303 | - job: |
| 304 | name: tempest-slow-py3 |
Luigi Toscano | b9ac057 | 2021-07-13 12:44:35 +0200 | [diff] [blame] | 305 | parent: tempest-multinode-full-py3 |
Ghanshyam Mann | ebecf79 | 2021-06-14 17:09:35 -0500 | [diff] [blame] | 306 | # This job version is with swift enabled on py3 |
| 307 | # as swift is ready on py3 from stable/ussuri onwards. |
Luigi Toscano | b9ac057 | 2021-07-13 12:44:35 +0200 | [diff] [blame] | 308 | timeout: 10800 |
Ghanshyam Mann | ebecf79 | 2021-06-14 17:09:35 -0500 | [diff] [blame] | 309 | branches: ^(?!stable/(ocata|pike|queens|rocky|stein|train)).*$ |
Luigi Toscano | b9ac057 | 2021-07-13 12:44:35 +0200 | [diff] [blame] | 310 | vars: *tempest_slow_vars |
Ghanshyam Mann | 61f5733 | 2020-11-25 11:46:20 -0600 | [diff] [blame] | 311 | |
| 312 | - job: |
Ghanshyam Mann | 6bb98c2 | 2023-02-10 18:22:02 -0600 | [diff] [blame] | 313 | name: tempest-slow-parallel |
| 314 | parent: tempest-slow-py3 |
| 315 | # This job run slow tests in parallel. |
| 316 | vars: |
| 317 | tox_envlist: slow |
Dan Smith | d869e3a | 2023-02-13 14:14:52 -0800 | [diff] [blame^] | 318 | devstack_localrc: |
| 319 | MYSQL_REDUCE_MEMORY: true |
Ghanshyam Mann | 6bb98c2 | 2023-02-10 18:22:02 -0600 | [diff] [blame] | 320 | |
| 321 | - job: |
Ghanshyam Mann | 61f5733 | 2020-11-25 11:46:20 -0600 | [diff] [blame] | 322 | name: tempest-cinder-v2-api |
| 323 | parent: devstack-tempest |
Ghanshyam Mann | 2f4539d | 2021-05-18 12:32:39 -0500 | [diff] [blame] | 324 | # NOTE(gmann): Cinder v2 APIs are available until |
| 325 | # stable/wallaby only. |
| 326 | override-checkout: stable/wallaby |
Ghanshyam Mann | 61f5733 | 2020-11-25 11:46:20 -0600 | [diff] [blame] | 327 | description: | |
| 328 | This job runs the cinder API test against v2 endpoint. |
| 329 | vars: |
| 330 | tox_envlist: all |
| 331 | tempest_test_regex: api.*volume |
| 332 | devstack_localrc: |
| 333 | TEMPEST_VOLUME_TYPE: volumev2 |
| 334 | |
| 335 | - job: |
Ade Lee | 6ded070 | 2021-09-04 15:56:34 -0400 | [diff] [blame] | 336 | name: tempest-centos8-stream-fips |
| 337 | parent: devstack-tempest |
| 338 | description: | |
| 339 | Integration testing for a FIPS enabled Centos 8 system |
| 340 | nodeset: devstack-single-node-centos-8-stream |
| 341 | pre-run: playbooks/enable-fips.yaml |
| 342 | vars: |
| 343 | tox_envlist: full |
| 344 | configure_swap_size: 4096 |
Ade Lee | 0687b9c | 2022-03-02 16:24:50 -0500 | [diff] [blame] | 345 | nslookup_target: 'opendev.org' |
| 346 | |
| 347 | - job: |
| 348 | name: tempest-centos9-stream-fips |
| 349 | parent: devstack-tempest |
| 350 | description: | |
| 351 | Integration testing for a FIPS enabled Centos 9 system |
Sylvain Bauza | b8f0c30 | 2022-11-29 17:49:33 +0100 | [diff] [blame] | 352 | timeout: 10800 |
Ade Lee | 0687b9c | 2022-03-02 16:24:50 -0500 | [diff] [blame] | 353 | nodeset: devstack-single-node-centos-9-stream |
| 354 | pre-run: playbooks/enable-fips.yaml |
| 355 | vars: |
| 356 | tox_envlist: full |
| 357 | configure_swap_size: 4096 |
| 358 | nslookup_target: 'opendev.org' |
Ade Lee | 6ded070 | 2021-09-04 15:56:34 -0400 | [diff] [blame] | 359 | |
| 360 | - job: |
Ghanshyam Mann | 61f5733 | 2020-11-25 11:46:20 -0600 | [diff] [blame] | 361 | name: tempest-pg-full |
| 362 | parent: tempest-full-py3 |
| 363 | description: | |
| 364 | Base integration test with Neutron networking and PostgreSQL. |
| 365 | Former name for this job was legacy-tempest-dsvm-neutron-pg-full. |
| 366 | vars: |
| 367 | devstack_localrc: |
Ghanshyam Mann | 861c78f | 2021-02-09 11:25:26 -0600 | [diff] [blame] | 368 | # TODO(gmann): Enable File injection tests once nova bug is fixed |
| 369 | # https://bugs.launchpad.net/nova/+bug/1882421 |
| 370 | # ENABLE_FILE_INJECTION: true |
Ghanshyam Mann | 61f5733 | 2020-11-25 11:46:20 -0600 | [diff] [blame] | 371 | DATABASE_TYPE: postgresql |
| 372 | |
Ghanshyam Mann | 7ab45a9 | 2022-11-21 19:14:05 -0600 | [diff] [blame] | 373 | - job: |
| 374 | name: tempest-full-enforce-scope-new-defaults |
| 375 | parent: tempest-full-py3 |
| 376 | description: | |
| 377 | This job runs the Tempest tests with scope and new defaults enabled. |
| 378 | # TODO: remove this once https://review.opendev.org/c/openstack/neutron-lib/+/864213 |
| 379 | # fix is released in neutron-lib |
| 380 | required-projects: |
| 381 | - openstack/neutron-lib |
| 382 | - openstack/neutron |
| 383 | vars: |
| 384 | devstack_localrc: |
| 385 | # Enabeling the scope and new defaults for services. |
| 386 | # NOTE: (gmann) We need to keep keystone scope check disable as |
| 387 | # services (except ironic) does not support the system scope and |
| 388 | # they need keystone to continue working with project scope. Until |
| 389 | # Keystone policies are changed to work for both system as well as |
| 390 | # for project scoped, we need to keep scope check disable for |
| 391 | # keystone. |
| 392 | NOVA_ENFORCE_SCOPE: true |
| 393 | CINDER_ENFORCE_SCOPE: true |
| 394 | GLANCE_ENFORCE_SCOPE: true |
| 395 | NEUTRON_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 | 61f5733 | 2020-11-25 11:46:20 -0600 | [diff] [blame] | 398 | - project-template: |
| 399 | name: integrated-gate-networking |
| 400 | description: | |
| 401 | Run the python3 Tempest network integration tests (Nova and Neutron related) |
| 402 | in check and gate for the neutron integrated gate. This is meant to be |
| 403 | run on neutron gate only. |
| 404 | check: |
| 405 | jobs: |
| 406 | - grenade |
Dan Smith | af19ff4 | 2022-02-23 10:42:26 -0800 | [diff] [blame] | 407 | - grenade-skip-level: |
| 408 | voting: false |
Ghanshyam Mann | 61f5733 | 2020-11-25 11:46:20 -0600 | [diff] [blame] | 409 | - tempest-integrated-networking |
Ghanshyam Mann | 2202f7b | 2022-06-01 16:31:51 -0500 | [diff] [blame] | 410 | # Do not run it on ussuri until below issue is fixed |
| 411 | # https://storyboard.openstack.org/#!/story/2010057 |
Elod Illes | e17f1d3 | 2023-02-02 15:24:35 +0100 | [diff] [blame] | 412 | # and job is broken on wallaby branch due to the issue |
| 413 | # described in https://review.opendev.org/872341 |
Ghanshyam Mann | 2202f7b | 2022-06-01 16:31:51 -0500 | [diff] [blame] | 414 | - openstacksdk-functional-devstack: |
Elod Illes | e17f1d3 | 2023-02-02 15:24:35 +0100 | [diff] [blame] | 415 | branches: ^(?!stable/(ussuri|wallaby)).*$ |
Ghanshyam Mann | 61f5733 | 2020-11-25 11:46:20 -0600 | [diff] [blame] | 416 | gate: |
| 417 | jobs: |
| 418 | - grenade |
| 419 | - tempest-integrated-networking |
Ghanshyam Mann | 2202f7b | 2022-06-01 16:31:51 -0500 | [diff] [blame] | 420 | # Do not run it on ussuri until below issue is fixed |
| 421 | # https://storyboard.openstack.org/#!/story/2010057 |
Elod Illes | e17f1d3 | 2023-02-02 15:24:35 +0100 | [diff] [blame] | 422 | # and job is broken on wallaby branch due to the issue |
| 423 | # described in https://review.opendev.org/872341 |
Ghanshyam Mann | 2202f7b | 2022-06-01 16:31:51 -0500 | [diff] [blame] | 424 | - openstacksdk-functional-devstack: |
Elod Illes | e17f1d3 | 2023-02-02 15:24:35 +0100 | [diff] [blame] | 425 | branches: ^(?!stable/(ussuri|wallaby)).*$ |
Ghanshyam Mann | 61f5733 | 2020-11-25 11:46:20 -0600 | [diff] [blame] | 426 | |
| 427 | - project-template: |
| 428 | name: integrated-gate-compute |
| 429 | description: | |
| 430 | Run the python3 Tempest compute integration tests |
| 431 | (Nova, Neutron, Cinder and Glance related) in check and gate |
| 432 | for the Nova integrated gate. This is meant to be |
| 433 | run on Nova gate only. |
Ghanshyam Mann | 9625f0d | 2022-04-27 17:45:52 -0500 | [diff] [blame] | 434 | # NOTE(gmann): This template is used for stable branches also so when we |
| 435 | # add/remove jobs here we need to make sure we should not change the |
| 436 | # behaviour for stable branches. For example, with branch variant we need |
| 437 | # to make sure old job keep running on stable branches and the new one run |
| 438 | # only from master(or the branch it was meant to run). |
Ghanshyam Mann | 61f5733 | 2020-11-25 11:46:20 -0600 | [diff] [blame] | 439 | check: |
| 440 | jobs: |
Dan Smith | af19ff4 | 2022-02-23 10:42:26 -0800 | [diff] [blame] | 441 | - grenade-skip-level: |
| 442 | voting: false |
Ghanshyam Mann | 61f5733 | 2020-11-25 11:46:20 -0600 | [diff] [blame] | 443 | - tempest-integrated-compute |
Ghanshyam Mann | 9625f0d | 2022-04-27 17:45:52 -0500 | [diff] [blame] | 444 | # centos-8-stream is tested from wallaby -> yoga branches |
| 445 | - tempest-integrated-compute-centos-8-stream: |
| 446 | branches: ^stable/(wallaby|xena|yoga).*$ |
Ghanshyam Mann | 2202f7b | 2022-06-01 16:31:51 -0500 | [diff] [blame] | 447 | # Do not run it on ussuri until below issue is fixed |
| 448 | # https://storyboard.openstack.org/#!/story/2010057 |
Elod Illes | e17f1d3 | 2023-02-02 15:24:35 +0100 | [diff] [blame] | 449 | # and job is broken on wallaby branch due to the issue |
| 450 | # described in https://review.opendev.org/872341 |
Ghanshyam Mann | 2202f7b | 2022-06-01 16:31:51 -0500 | [diff] [blame] | 451 | - openstacksdk-functional-devstack: |
Elod Illes | e17f1d3 | 2023-02-02 15:24:35 +0100 | [diff] [blame] | 452 | branches: ^(?!stable/(ussuri|wallaby)).*$ |
Ghanshyam Mann | 61f5733 | 2020-11-25 11:46:20 -0600 | [diff] [blame] | 453 | gate: |
| 454 | jobs: |
Ghanshyam Mann | 61f5733 | 2020-11-25 11:46:20 -0600 | [diff] [blame] | 455 | - tempest-integrated-compute |
Ghanshyam Mann | 2202f7b | 2022-06-01 16:31:51 -0500 | [diff] [blame] | 456 | - openstacksdk-functional-devstack: |
Elod Illes | e17f1d3 | 2023-02-02 15:24:35 +0100 | [diff] [blame] | 457 | branches: ^(?!stable/(ussuri|wallaby)).*$ |
Sean Mooney | 9c263de | 2022-07-18 16:55:31 +0100 | [diff] [blame] | 458 | periodic-weekly: |
| 459 | jobs: |
| 460 | # centos-9-stream is tested from zed release onwards |
| 461 | - tempest-integrated-compute-centos-9-stream: |
| 462 | branches: ^(?!stable/(pike|queens|rocky|stein|train|ussuri|victoria|wallaby|xena|yoga)).*$ |
Ghanshyam Mann | 61f5733 | 2020-11-25 11:46:20 -0600 | [diff] [blame] | 463 | |
| 464 | - project-template: |
| 465 | name: integrated-gate-placement |
| 466 | description: | |
| 467 | Run the python3 Tempest placement integration tests |
| 468 | (Nova and Neutron related) in check and gate |
| 469 | for the Placement integrated gate. This is meant to be |
| 470 | run on Placement gate only. |
| 471 | check: |
| 472 | jobs: |
| 473 | - grenade |
Dan Smith | af19ff4 | 2022-02-23 10:42:26 -0800 | [diff] [blame] | 474 | - grenade-skip-level: |
| 475 | voting: false |
Ghanshyam Mann | 61f5733 | 2020-11-25 11:46:20 -0600 | [diff] [blame] | 476 | - tempest-integrated-placement |
Ghanshyam Mann | 2202f7b | 2022-06-01 16:31:51 -0500 | [diff] [blame] | 477 | # Do not run it on ussuri until below issue is fixed |
| 478 | # https://storyboard.openstack.org/#!/story/2010057 |
Elod Illes | e17f1d3 | 2023-02-02 15:24:35 +0100 | [diff] [blame] | 479 | # and job is broken on wallaby branch due to the issue |
| 480 | # described in https://review.opendev.org/872341 |
Ghanshyam Mann | 2202f7b | 2022-06-01 16:31:51 -0500 | [diff] [blame] | 481 | - openstacksdk-functional-devstack: |
| 482 | branches: ^(?!stable/ussuri).*$ |
Ghanshyam Mann | 61f5733 | 2020-11-25 11:46:20 -0600 | [diff] [blame] | 483 | gate: |
| 484 | jobs: |
| 485 | - grenade |
| 486 | - tempest-integrated-placement |
Ghanshyam Mann | 2202f7b | 2022-06-01 16:31:51 -0500 | [diff] [blame] | 487 | # Do not run it on ussuri until below issue is fixed |
| 488 | # https://storyboard.openstack.org/#!/story/2010057 |
Elod Illes | e17f1d3 | 2023-02-02 15:24:35 +0100 | [diff] [blame] | 489 | # and job is broken on wallaby branch due to the issue |
| 490 | # described in https://review.opendev.org/872341 |
Ghanshyam Mann | 2202f7b | 2022-06-01 16:31:51 -0500 | [diff] [blame] | 491 | - openstacksdk-functional-devstack: |
Elod Illes | e17f1d3 | 2023-02-02 15:24:35 +0100 | [diff] [blame] | 492 | branches: ^(?!stable/(ussuri|wallaby)).*$ |
Ghanshyam Mann | 61f5733 | 2020-11-25 11:46:20 -0600 | [diff] [blame] | 493 | |
| 494 | - project-template: |
| 495 | name: integrated-gate-storage |
| 496 | description: | |
| 497 | Run the python3 Tempest image & block storage integration tests |
| 498 | (Cinder, Glance, Swift and Nova related) in check and gate |
| 499 | for the neutron integrated gate. This is meant to be |
| 500 | run on Cinder and Glance gate only. |
| 501 | check: |
| 502 | jobs: |
| 503 | - grenade |
Dan Smith | af19ff4 | 2022-02-23 10:42:26 -0800 | [diff] [blame] | 504 | - grenade-skip-level: |
| 505 | voting: false |
Ghanshyam Mann | 61f5733 | 2020-11-25 11:46:20 -0600 | [diff] [blame] | 506 | - tempest-integrated-storage |
Ghanshyam Mann | 2202f7b | 2022-06-01 16:31:51 -0500 | [diff] [blame] | 507 | # Do not run it on ussuri until below issue is fixed |
| 508 | # https://storyboard.openstack.org/#!/story/2010057 |
Elod Illes | e17f1d3 | 2023-02-02 15:24:35 +0100 | [diff] [blame] | 509 | # and job is broken on wallaby branch due to the issue |
| 510 | # described in https://review.opendev.org/872341 |
Ghanshyam Mann | 2202f7b | 2022-06-01 16:31:51 -0500 | [diff] [blame] | 511 | - openstacksdk-functional-devstack: |
Elod Illes | e17f1d3 | 2023-02-02 15:24:35 +0100 | [diff] [blame] | 512 | branches: ^(?!stable/(ussuri|wallaby)).*$ |
Ghanshyam Mann | 61f5733 | 2020-11-25 11:46:20 -0600 | [diff] [blame] | 513 | gate: |
| 514 | jobs: |
| 515 | - grenade |
| 516 | - tempest-integrated-storage |
Ghanshyam Mann | 2202f7b | 2022-06-01 16:31:51 -0500 | [diff] [blame] | 517 | # Do not run it on ussuri until below issue is fixed |
| 518 | # https://storyboard.openstack.org/#!/story/2010057 |
Elod Illes | e17f1d3 | 2023-02-02 15:24:35 +0100 | [diff] [blame] | 519 | # and job is broken on wallaby branch due to the issue |
| 520 | # described in https://review.opendev.org/872341 |
Ghanshyam Mann | 2202f7b | 2022-06-01 16:31:51 -0500 | [diff] [blame] | 521 | - openstacksdk-functional-devstack: |
Elod Illes | e17f1d3 | 2023-02-02 15:24:35 +0100 | [diff] [blame] | 522 | branches: ^(?!stable/(ussuri|wallaby)).*$ |
Ghanshyam Mann | 61f5733 | 2020-11-25 11:46:20 -0600 | [diff] [blame] | 523 | |
| 524 | - project-template: |
| 525 | name: integrated-gate-object-storage |
| 526 | description: | |
| 527 | Run the python3 Tempest object storage integration tests |
| 528 | (Swift, Cinder and Glance related) in check and gate |
| 529 | for the swift integrated gate. This is meant to be |
| 530 | run on swift gate only. |
| 531 | check: |
| 532 | jobs: |
| 533 | - grenade |
| 534 | - tempest-integrated-object-storage |
Ghanshyam Mann | 2202f7b | 2022-06-01 16:31:51 -0500 | [diff] [blame] | 535 | # Do not run it on ussuri until below issue is fixed |
| 536 | # https://storyboard.openstack.org/#!/story/2010057 |
Elod Illes | e17f1d3 | 2023-02-02 15:24:35 +0100 | [diff] [blame] | 537 | # and job is broken on wallaby branch due to the issue |
| 538 | # described in https://review.opendev.org/872341 |
Ghanshyam Mann | 2202f7b | 2022-06-01 16:31:51 -0500 | [diff] [blame] | 539 | - openstacksdk-functional-devstack: |
Elod Illes | e17f1d3 | 2023-02-02 15:24:35 +0100 | [diff] [blame] | 540 | branches: ^(?!stable/(ussuri|wallaby)).*$ |
Ghanshyam Mann | 61f5733 | 2020-11-25 11:46:20 -0600 | [diff] [blame] | 541 | gate: |
| 542 | jobs: |
| 543 | - grenade |
| 544 | - tempest-integrated-object-storage |
Ghanshyam Mann | 2202f7b | 2022-06-01 16:31:51 -0500 | [diff] [blame] | 545 | # Do not run it on ussuri until below issue is fixed |
| 546 | # https://storyboard.openstack.org/#!/story/2010057 |
Elod Illes | e17f1d3 | 2023-02-02 15:24:35 +0100 | [diff] [blame] | 547 | # and job is broken on wallaby branch due to the issue |
| 548 | # described in https://review.opendev.org/872341 |
Ghanshyam Mann | 2202f7b | 2022-06-01 16:31:51 -0500 | [diff] [blame] | 549 | - openstacksdk-functional-devstack: |
Elod Illes | e17f1d3 | 2023-02-02 15:24:35 +0100 | [diff] [blame] | 550 | branches: ^(?!stable/(ussuri|wallaby)).*$ |