[libvirt] Add 2023.1 overrides

Recently we fixed the libvirt.sh script
and removed the conditionals cgroup commands
which were introduced for smooth transition
to Jammy and cgroups v2

https://review.opendev.org/c/openstack/openstack-helm-infra/+/929401

But because we didn't have overrides for 2023.1
we used to run 2023.1 with the default libvirt image
openstackhelm/libvirt:latest-ubuntu_focal
which does not work with cgroups v2 on the host
system with this recent fix (see above).

So the 2023.1 Ubuntu Jammy compute-kit test jobs fails.
This PR fixes this job by means of introducing
explicit image overrides for 2023.1.

Change-Id: Ie81f8fb412362388274ea92ad7fa5d3d176c0441
This commit is contained in:
Vladimir Kozhukalov 2024-09-24 21:35:47 -05:00
parent 0b1ae682e0
commit 7086815c74
5 changed files with 24 additions and 1 deletions

View File

@ -15,7 +15,7 @@ apiVersion: v1
appVersion: v1.0.0 appVersion: v1.0.0
description: OpenStack-Helm libvirt description: OpenStack-Helm libvirt
name: libvirt name: libvirt
version: 0.1.38 version: 0.1.39
home: https://libvirt.org home: https://libvirt.org
sources: sources:
- https://libvirt.org/git/?p=libvirt.git;a=summary - https://libvirt.org/git/?p=libvirt.git;a=summary

View File

@ -0,0 +1,5 @@
---
images:
tags:
libvirt: docker.io/openstackhelm/libvirt:latest-ubuntu_focal
...

View File

@ -0,0 +1,5 @@
---
images:
tags:
libvirt: docker.io/openstackhelm/libvirt:2023.1-ubuntu_jammy
...

View File

@ -39,4 +39,5 @@ libvirt:
- 0.1.36 Allow to generate dynamic config options - 0.1.36 Allow to generate dynamic config options
- 0.1.37 Make readiness probes more tiny - 0.1.37 Make readiness probes more tiny
- 0.1.38 Implement daemonset overrides for libvirt - 0.1.38 Implement daemonset overrides for libvirt
- 0.1.39 Add 2023.1 overrides for Ubuntu Focal and Jammy
... ...

View File

@ -359,6 +359,18 @@
- ^libvirt/.* - ^libvirt/.*
- ^openvswitch/.* - ^openvswitch/.*
- job:
name: openstack-helm-infra-compute-kit-2023-1-ubuntu_jammy
parent: openstack-helm-compute-kit-2023-1-ubuntu_jammy
files:
- ^helm-toolkit/.*
- ^roles/.*
- ^rabbitmq/.*
- ^mariadb/.*
- ^memcached/.*
- ^libvirt/.*
- ^openvswitch/.*
- job: - job:
name: openstack-helm-infra-cinder-2024-1-ubuntu_jammy name: openstack-helm-infra-cinder-2024-1-ubuntu_jammy
description: | description: |