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