Replace ubuntu-focal by ubuntu-jammy

nova compute requires libvirt 7.0.0 or newer, which means no job can
be executed on Ubuntu 20.04

Besides, devstack drops support for focal on this patch:
https://review.opendev.org/c/openstack/devstack/+/885468

Change-Id: I6fa5b70558e886b17c63dab61fad3c7a2728d148
This commit is contained in:
Eduardo Olivares 2023-09-04 16:42:35 +02:00
parent af7ba5759f
commit 958b33820c
10 changed files with 32 additions and 29 deletions

2
Vagrantfile vendored
View File

@ -13,7 +13,7 @@ MEMORY = ENV.fetch("VM_SIZE", "8192").to_i
# Every Vagrant development environment requires a box. You can search for # Every Vagrant development environment requires a box. You can search for
# boxes at https://vagrantcloud.com/search. # boxes at https://vagrantcloud.com/search.
# BOX = ENV.fetch("VM_BOX", "generic/centos8") # BOX = ENV.fetch("VM_BOX", "generic/centos8")
BOX = ENV.fetch("VM_BOX", "generic/ubuntu2004") BOX = ENV.fetch("VM_BOX", "generic/ubuntu2204")
# Machine host name # Machine host name
HOSTNAME = "devstack" HOSTNAME = "devstack"

View File

@ -55,6 +55,7 @@ function configure_tobiko {
configure_tobiko_neutron "${tobiko_conf_file}" configure_tobiko_neutron "${tobiko_conf_file}"
configure_tobiko_ssh "${tobiko_conf_file}" configure_tobiko_ssh "${tobiko_conf_file}"
configure_tobiko_tripleo "${tobiko_conf_file}" configure_tobiko_tripleo "${tobiko_conf_file}"
configure_tobiko_octavia "${tobiko_conf_file}"
echo_summary "Apply changes to actual ${TOBIKO_CONF_FILE} file." echo_summary "Apply changes to actual ${TOBIKO_CONF_FILE} file."
sudo mkdir -p $(dirname "${TOBIKO_CONF_FILE}") sudo mkdir -p $(dirname "${TOBIKO_CONF_FILE}")
@ -221,6 +222,16 @@ function configure_tobiko_tripleo {
} }
function configure_tobiko_octavia {
echo_summary "Write [octavia] section to ${TOBIKO_CONF_FILE}"
local tobiko_conf_file=$1
# Ensure Tobiko will skip looking for the undercloud node
iniset_nonempty "${tobiko_conf_file}" octavia check_timeout \
"${TOBIKO_OCTAVIA_CHECK_TIMEOUT}"
}
function configure_key_file { function configure_key_file {
local tobiko_conf_file=$1 local tobiko_conf_file=$1

View File

@ -45,3 +45,6 @@ TOBIKO_NEUTRON_IPV6_DNS_NAMESERVERS=${TOBIKO_NEUTRON_IPV6_DNS_NAMESERVERS:-}
# --- SSH settings --- # --- SSH settings ---
TOBIKO_SSH_KEY_FILE=${TOBIKO_SSH_KEY_FILE:-} TOBIKO_SSH_KEY_FILE=${TOBIKO_SSH_KEY_FILE:-}
# --- Octavia settings ---
TOBIKO_OCTAVIA_CHECK_TIMEOUT=${TOBIKO_OCTAVIA_CHECK_TIMEOUT:-360}

View File

@ -19,15 +19,12 @@
- job: - job:
name: devstack-tobiko-designate name: devstack-tobiko-designate
parent: devstack-tobiko-minimal parent: devstack-tobiko
nodeset: devstack-tobiko-focal
voting: true voting: true
required-projects: &REQUIRED_PROJECTS required-projects: &REQUIRED_PROJECTS
- opendev.org/openstack/designate - opendev.org/openstack/designate
- opendev.org/openstack/python-designateclient - opendev.org/openstack/python-designateclient
vars: &VARS vars: &VARS
devstack_localrc:
API_WORKERS: 4
devstack_plugins: devstack_plugins:
designate: https://opendev.org/openstack/designate.git designate: https://opendev.org/openstack/designate.git
devstack_services: devstack_services:

View File

@ -16,7 +16,9 @@
abstract: false abstract: false
name: devstack-tobiko-functional name: devstack-tobiko-functional
parent: devstack-tobiko-designate parent: devstack-tobiko-designate
voting: true # TODO(eolivare): remove this when the fix is merged on tobiko project:
# https://review.opendev.org/c/x/tobiko/+/894522
voting: false
description: Run tobiko functional test cases description: Run tobiko functional test cases
vars: vars:
test_workflow: functional test_workflow: functional

View File

@ -15,7 +15,7 @@
- job: - job:
name: devstack-tobiko-heat name: devstack-tobiko-heat
parent: devstack-tobiko-minimal parent: devstack-tobiko-minimal
nodeset: devstack-tobiko-focal nodeset: devstack-tobiko-jammy
required-projects: required-projects:
- openstack/heat - openstack/heat
voting: true voting: true

View File

@ -18,7 +18,7 @@
- job: - job:
name: devstack-tobiko-nova name: devstack-tobiko-nova
parent: devstack-tobiko-minimal parent: devstack-tobiko
required-projects: required-projects:
- openstack/nova - openstack/nova
voting: true voting: true

View File

@ -18,7 +18,7 @@
- job: - job:
name: devstack-tobiko-octavia name: devstack-tobiko-octavia
parent: devstack-tobiko-minimal parent: devstack-tobiko
required-projects: required-projects:
- openstack/octavia - openstack/octavia
- openstack/octavia-lib - openstack/octavia-lib
@ -54,8 +54,7 @@
loadbalancer_topology: SINGLE loadbalancer_topology: SINGLE
devstack_localrc: devstack_localrc:
OCTAVIA_NODE: standalone OCTAVIA_NODE: standalone
LIBVIRT_TYPE: kvm TOBIKO_OCTAVIA_CHECK_TIMEOUT: 600
LIBVIRT_CPU_MODE: host-passthrough
devstack_plugins: devstack_plugins:
barbican: https://opendev.org/openstack/barbican.git barbican: https://opendev.org/openstack/barbican.git
octavia: https://opendev.org/openstack/octavia.git octavia: https://opendev.org/openstack/octavia.git

View File

@ -20,7 +20,6 @@
abstract: false abstract: false
name: devstack-tobiko name: devstack-tobiko
parent: devstack-tobiko-minimal parent: devstack-tobiko-minimal
nodeset: devstack-tobiko-focal
voting: true voting: true
description: | description: |
Base Devstack Tobiko Plugin job. Base Devstack Tobiko Plugin job.
@ -36,6 +35,8 @@
vars: vars:
configure_swap_size: 8192 configure_swap_size: 8192
devstack_localrc: devstack_localrc:
LIBVIRT_TYPE: kvm
LIBVIRT_CPU_MODE: host-passthrough
GLANCE_ENABLE_QUOTAS: false GLANCE_ENABLE_QUOTAS: false
NETWORK_API_EXTENSIONS: >- NETWORK_API_EXTENSIONS: >-
address-scope,agent,allowed-address-pairs,auto-allocated-topology, address-scope,agent,allowed-address-pairs,auto-allocated-topology,

View File

@ -1,24 +1,14 @@
--- ---
- nodeset:
name: devstack-tobiko-focal
nodes:
- name: controller
# label: ubuntu-focal
label: nested-virt-ubuntu-focal
groups: &STANDALONE_GROUPS
- name: tempest
nodes:
- controller
- nodeset: - nodeset:
name: devstack-tobiko-jammy name: devstack-tobiko-jammy
nodes: nodes:
- name: controller - name: controller
# label: ubuntu-jammy # label: ubuntu-jammy
label: nested-virt-ubuntu-jammy label: nested-virt-ubuntu-jammy
groups: *STANDALONE_GROUPS groups: &STANDALONE_GROUPS
- name: tempest
nodes:
- controller
- nodeset: - nodeset:
@ -35,11 +25,11 @@
name: devstack-tobiko-multinode name: devstack-tobiko-multinode
nodes: nodes:
- name: controller - name: controller
label: ubuntu-focal label: ubuntu-jammy
- name: compute1 - name: compute1
label: ubuntu-focal label: ubuntu-jammy
- name: compute2 - name: compute2
label: ubuntu-focal label: ubuntu-jammy
groups: &MULTINODE_GROUPS groups: &MULTINODE_GROUPS
# Node where tests are executed and test results collected # Node where tests are executed and test results collected
- name: tempest - name: tempest