5dc75c5944
This patch adds all the images to build Fedora 34 using the new container element. Depends-On: https://review.opendev.org/c/opendev/system-config/+/795602 Change-Id: Ifc650adbcb5ae6ed1f7ce50a4de58004ef020acc
37 lines
1.1 KiB
Bash
Executable File
37 lines
1.1 KiB
Bash
Executable File
#!/bin/bash
|
|
|
|
# Create the nodepool-dib.yaml dashboard with nodepool dib build
|
|
# status.
|
|
|
|
output_file=nodepool-dib.yaml
|
|
|
|
function create {
|
|
local title="$1"
|
|
local key="$2"
|
|
|
|
sed -e "s/%TITLE%/${title}/; " \
|
|
-e "s/%KEY%/${key}/" \
|
|
nodepool-dib.image.template >> ${output_file}
|
|
}
|
|
|
|
cp nodepool-dib.base.template nodepool-dib.yaml
|
|
create "Ubuntu Bionic" "ubuntu-bionic"
|
|
create "Ubuntu Xenial" "ubuntu-xenial"
|
|
create "Centos 7" "centos-7"
|
|
create "Centos 8" "centos-8"
|
|
create "Fedora 32" "fedora-32"
|
|
create "Fedora 34" "fedora-34"
|
|
create "Debian Bullseye" "debian-bullseye"
|
|
create "Debian Buster" "debian-buster"
|
|
create "Debian Stretch" "debian-stretch"
|
|
create "Gentoo" "gentoo-17-0-systemd"
|
|
create "openSUSE 15.1" "opensuse-15"
|
|
create "openSUSE Tumbleweed" "opensuse-tumbleweed"
|
|
create "Centos 8 arm64" "centos-8-arm64"
|
|
create "Debian Bullseye arm64" "debian-bullseye-arm64"
|
|
create "Debian Buster arm64" "debian-buster-arm64"
|
|
create "Debian Stretch arm64" "debian-stretch-arm64"
|
|
create "Ubuntu Focal arm64" "ubuntu-focal-arm64"
|
|
create "Ubuntu Bionic arm64" "ubuntu-bionic-arm64"
|
|
|