Files
freezer-tempest-plugin/.zuul.yaml
Ghanshyam Mann f5c268b9be Pin stable branch jobs nodeset to Ubuntu Focal (20.04)
In 2023.1 cycle. we are moving the default distro
version of Ubuntu to Jammy (22.04)[1] so we need to pin
the nodeset for stable branch job in master gate so that
they continue run on their supporting distro version which is
Ubuntu Focal since stable/victoria.

Also fixing the zuul config error.

[1] https://governance.openstack.org/tc/goals/selected/migrate-ci-jobs-to-ubuntu-jammy.html

Depends-On: https://review.opendev.org/c/openstack/python-freezerclient/+/936800
Depends-On: https://review.opendev.org/c/openstack/freezer-api/+/936802
Depends-On: https://review.opendev.org/c/openstack/freezer/+/936780
Change-Id: I4989b51e5d7ae68f2b11adefb349c61408a409ed
2024-12-03 11:32:29 +00:00

87 lines
2.4 KiB
YAML

- project:
queue: freezer
templates:
- check-requirements
- tempest-plugin-jobs
check:
jobs:
- freezer-tempest-basic
- freezer-tempest-client
- freezer-tempest-scheduler
- freezer-tempest-agent
gate:
jobs:
- freezer-tempest-basic
- freezer-tempest-client
- freezer-tempest-scheduler
- freezer-tempest-agent
- job:
name: freezer-tempest-basic
parent: devstack-tempest
# TODO(gmann): Remove the below nodeset setting to Bionic once
# bug https://bugs.launchpad.net/freezer/+bug/1896648 is fixed.
# Once nodeset is removed form here then devstack-tempest job
# will automatically run this job on Ubuntu Focal nodeset from
# Victoria gate onwards.
# nodeset: openstack-single-node-bionic
timeout: 7200
required-projects:
- openstack/python-openstackclient
- openstack/swift
- openstack/python-freezerclient
- openstack/freezer
- openstack/freezer-api
- openstack/freezer-tempest-plugin
- openstack/tempest
vars:
devstack_localrc:
FREEZER_BACKEND: 'sqlalchemy'
devstack_plugins:
freezer-api: https://opendev.org/openstack/freezer-api
freezer: https://opendev.org/openstack/freezer
devstack_services:
freezer-api: true
tempest: true
swift: true
s-account: false
s-container: false
s-object: false
s-proxy: false
tempest_plugins:
- freezer-tempest-plugin
tempest_test_regex: '^(freezer_tempest_plugin.tests.freezer_api.)'
tox_envlist: 'all'
zuul_copy_output:
/etc/hosts: logs
- job:
name: freezer-tempest-client
parent: freezer-tempest-basic
voting: true
vars:
tempest_test_regex: '^(freezer_tempest_plugin.tests.freezerclient.)'
- job:
name: freezer-tempest-scheduler
parent: freezer-tempest-basic
voting: true
vars:
tempest_test_regex: '^(freezer_tempest_plugin.tests.scheduler.)'
- job:
name: freezer-tempest-agent
parent: freezer-tempest-basic
voting: true
vars:
tempest_test_regex: '^(freezer_tempest_plugin.tests.freezer.agent.)'
# NOTE(noonedeadpunk): Remove once will be dropped from all stable branches
- job:
name: freezer-tempest-basic-sql
parent: freezer-tempest-basic
vars:
devstack_localrc:
FREEZER_BACKEND: 'sqlalchemy'