Add Fedora 36 support

Change-Id: I89ff95604aabf59217382bc784783759191c59a3
This commit is contained in:
Ian Wienand 2022-06-09 14:39:03 +10:00
parent 3e51709307
commit 0385857cd9
5 changed files with 10 additions and 7 deletions

View File

@ -115,7 +115,7 @@
# mirror: "http://{{ zuul_site_mirror_fqdn }}/centos" # mirror: "http://{{ zuul_site_mirror_fqdn }}/centos"
- job: - job:
name: dib-nodepool-functional-openstack-fedora-35-containerfile-src name: dib-nodepool-functional-openstack-fedora-36-containerfile-src
description: | description: |
Test building and booting an Fedora image from a Test building and booting an Fedora image from a
containerfile with Nodepool and OpenStack (using released containerfile with Nodepool and OpenStack (using released
@ -124,8 +124,8 @@
vars: vars:
nodepool_debug: true nodepool_debug: true
nodepool_diskimage: nodepool_diskimage:
base_element: fedora-container base_element : fedora-container
release: '35' release: '36'
- job: - job:
name: dib-nodepool-functional-openstack-rockylinux-8-containerfile-src name: dib-nodepool-functional-openstack-rockylinux-8-containerfile-src

View File

@ -17,7 +17,7 @@
- dib-nodepool-functional-openstack-centos-7-src - dib-nodepool-functional-openstack-centos-7-src
- dib-nodepool-functional-openstack-centos-8-stream-src - dib-nodepool-functional-openstack-centos-8-stream-src
- dib-nodepool-functional-openstack-centos-9-stream-src - dib-nodepool-functional-openstack-centos-9-stream-src
- dib-nodepool-functional-openstack-fedora-35-containerfile-src - dib-nodepool-functional-openstack-fedora-36-containerfile-src
- dib-nodepool-functional-openstack-rockylinux-8-containerfile-src: - dib-nodepool-functional-openstack-rockylinux-8-containerfile-src:
voting: false voting: false
- dib-nodepool-functional-openstack-ubuntu-xenial-src - dib-nodepool-functional-openstack-ubuntu-xenial-src
@ -50,7 +50,7 @@
- dib-nodepool-functional-openstack-centos-7-src - dib-nodepool-functional-openstack-centos-7-src
- dib-nodepool-functional-openstack-centos-8-stream-src - dib-nodepool-functional-openstack-centos-8-stream-src
- dib-nodepool-functional-openstack-centos-9-stream-src - dib-nodepool-functional-openstack-centos-9-stream-src
- dib-nodepool-functional-openstack-fedora-35-containerfile-src - dib-nodepool-functional-openstack-fedora-36-containerfile-src
- dib-nodepool-functional-openstack-ubuntu-xenial-src - dib-nodepool-functional-openstack-ubuntu-xenial-src
- dib-nodepool-functional-openstack-ubuntu-bionic-src - dib-nodepool-functional-openstack-ubuntu-bionic-src
- dib-nodepool-functional-openstack-ubuntu-focal-src - dib-nodepool-functional-openstack-ubuntu-focal-src

View File

@ -0,0 +1,3 @@
FROM docker.io/library/fedora:36
RUN dnf install -y findutils util-linux

View File

@ -10,7 +10,7 @@ Releases
This element targets the current and previous version of Fedora; these This element targets the current and previous version of Fedora; these
values clearly changes over time. To fix the version set the values clearly changes over time. To fix the version set the
`DIB_RELEASE` variable to the Fedora version (e.g. ``35``). The `DIB_RELEASE` variable to the Fedora version (e.g. ``36``). The
default value is the current best supported version (i.e. it may default value is the current best supported version (i.e. it may
change upward at any given release to support the next Fedora). change upward at any given release to support the next Fedora).

View File

@ -1,4 +1,4 @@
export DISTRO_NAME=fedora export DISTRO_NAME=fedora
export DIB_RELEASE=${DIB_RELEASE:-35} export DIB_RELEASE=${DIB_RELEASE:-36}
export EFI_BOOT_DIR="EFI/fedora" export EFI_BOOT_DIR="EFI/fedora"