dc09dffbe2
All jobs using Fedora 29 have been removed, we can remove it from nodepool and thus OpenDev now. Depends-On: https://review.opendev.org/711969 Change-Id: I75c0713d164c29a47db9a0cdfc43fadb370e81f8
30 lines
799 B
Bash
Executable File
30 lines
799 B
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 "Fedora 30" "fedora-30"
|
|
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 "Ubuntu Bionic arm64" "ubuntu-bionic-arm64"
|
|
create "Ubuntu Xenial arm64" "ubuntu-xenial-arm64"
|
|
|