Skip to content

Commit 08254ca

Browse files
Zuulopenstack-gerrit
authored andcommitted
Merge "Add Ubuntu 22.04 LTS (jammy) platform job"
2 parents 2f88995 + 5c765cb commit 08254ca

2 files changed

Lines changed: 77 additions & 1 deletion

File tree

.zuul.yaml

Lines changed: 76 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,16 @@
1616
nodes:
1717
- controller
1818

19+
- nodeset:
20+
name: openstack-single-node-jammy
21+
nodes:
22+
- name: controller
23+
label: ubuntu-jammy
24+
groups:
25+
- name: tempest
26+
nodes:
27+
- controller
28+
1929
- nodeset:
2030
name: openstack-single-node-focal
2131
nodes:
@@ -716,6 +726,69 @@
716726
# from source instead.
717727
OVN_BUILD_FROM_SOURCE: True
718728

729+
- job:
730+
name: devstack-platform-ubuntu-jammy
731+
parent: tempest-full-py3
732+
description: Ubuntu 22.04 LTS (jammy) platform test
733+
nodeset: openstack-single-node-jammy
734+
timeout: 9000
735+
vars:
736+
configure_swap_size: 4096
737+
devstack_services:
738+
# Horizon doesn't like py310
739+
horizon: false
740+
741+
- job:
742+
name: devstack-platform-ubuntu-jammy-ovn-source
743+
parent: devstack-platform-ubuntu-jammy
744+
description: Ubuntu 22.04 LTS (jammy) platform test (OVN from source)
745+
vars:
746+
devstack_localrc:
747+
OVN_BUILD_FROM_SOURCE: True
748+
OVN_BRANCH: "v21.06.0"
749+
OVS_BRANCH: "a4b04276ab5934d087669ff2d191a23931335c87"
750+
OVS_SYSCONFDIR: "/usr/local/etc/openvswitch"
751+
752+
- job:
753+
name: devstack-platform-ubuntu-jammy-ovs
754+
parent: tempest-full-py3
755+
description: Ubuntu 22.04 LTS (jammy) platform test (OVS)
756+
nodeset: openstack-single-node-jammy
757+
timeout: 9000
758+
vars:
759+
configure_swap_size: 8192
760+
devstack_localrc:
761+
Q_AGENT: openvswitch
762+
Q_ML2_PLUGIN_MECHANISM_DRIVERS: openvswitch
763+
Q_ML2_TENANT_NETWORK_TYPE: vxlan
764+
devstack_services:
765+
# Horizon doesn't like py310
766+
horizon: false
767+
# Disable OVN services
768+
ovn-northd: false
769+
ovn-controller: false
770+
ovs-vswitchd: false
771+
ovsdb-server: false
772+
# Disable Neutron ML2/OVN services
773+
q-ovn-metadata-agent: false
774+
# Enable Neutron ML2/OVS services
775+
q-agt: true
776+
q-dhcp: true
777+
q-l3: true
778+
q-meta: true
779+
q-metering: true
780+
group-vars:
781+
subnode:
782+
devstack_services:
783+
# Disable OVN services
784+
ovn-controller: false
785+
ovs-vswitchd: false
786+
ovsdb-server: false
787+
# Disable Neutron ML2/OVN services
788+
q-ovn-metadata-agent: false
789+
# Enable Neutron ML2/OVS services
790+
q-agt: true
791+
719792
- job:
720793
name: devstack-no-tls-proxy
721794
parent: tempest-full-py3
@@ -827,6 +900,9 @@
827900
- devstack-platform-fedora-latest
828901
- devstack-platform-centos-9-stream
829902
- devstack-platform-debian-bullseye
903+
- devstack-platform-ubuntu-jammy
904+
- devstack-platform-ubuntu-jammy-ovn-source
905+
- devstack-platform-ubuntu-jammy-ovs
830906
- devstack-multinode
831907
- devstack-unit-tests
832908
- openstack-tox-bashate

stack.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -229,7 +229,7 @@ write_devstack_version
229229

230230
# Warn users who aren't on an explicitly supported distro, but allow them to
231231
# override check and attempt installation with ``FORCE=yes ./stack``
232-
SUPPORTED_DISTROS="bullseye|focal|f35|opensuse-15.2|opensuse-tumbleweed|rhel8|rhel9|openEuler-20.03"
232+
SUPPORTED_DISTROS="bullseye|focal|jammy|f35|opensuse-15.2|opensuse-tumbleweed|rhel8|rhel9|openEuler-20.03"
233233

234234
if [[ ! ${DISTRO} =~ $SUPPORTED_DISTROS ]]; then
235235
echo "WARNING: this script has not been tested on $DISTRO"

0 commit comments

Comments
 (0)