88dcfdb488
The opensuse-150 image is being removed as the 15.0 release is EOL. Similar to centos the expectation is that users keep up to date with minor releases. For this we have the opensuse-15 image which should be used instead. Depends-On: https://review.opendev.org/#/c/682844/ Change-Id: I8db99f8f2fd4b1b7b9a5e06148ca2dc185ed682b
32 lines
869 B
Bash
Executable File
32 lines
869 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 "Ubuntu Trusty" "ubuntu-trusty"
|
|
create "Centos 7" "centos-7"
|
|
create "Fedora 29" "fedora-29"
|
|
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"
|
|
|