Skip to content

Commit a9e445f

Browse files
authored
Merge pull request #1118 from marquiz/release-0.9
Support Debian 11 and 12
2 parents baad21a + e869cdb commit a9e445f

File tree

18 files changed

+62
-10
lines changed

18 files changed

+62
-10
lines changed

demo/lib/distro.bash

+11-6
Original file line numberDiff line numberDiff line change
@@ -132,12 +132,12 @@ ubuntu-24_04-image-url() {
132132
echo "https://cloud-images.ubuntu.com/releases/noble/release/ubuntu-24.04-server-cloudimg-amd64.img"
133133
}
134134

135-
debian-10-image-url() {
136-
echo "https://cloud.debian.org/images/cloud/buster/latest/debian-10-generic-amd64.qcow2"
135+
debian-11-image-url() {
136+
echo "https://cloud.debian.org/images/cloud/bullseye/latest/debian-11-generic-amd64.qcow2"
137137
}
138138

139-
debian-11-image-url() {
140-
echo "https://cloud.debian.org/images/cloud/bullseye/daily/latest/debian-11-generic-amd64-daily.qcow2"
139+
debian-12-image-url() {
140+
echo "https://cloud.debian.org/images/cloud/bookworm/latest/debian-12-generic-amd64.qcow2"
141141
}
142142

143143
debian-sid-image-url() {
@@ -257,10 +257,15 @@ debian-install-kernel-dev() {
257257
echo "install: dpkg -i linux-*.deb"
258258
}
259259

260-
debian-10-install-containerd-pre() {
260+
debian-11-install-containerd-pre() {
261261
debian-install-repo-key https://download.docker.com/linux/debian/gpg
262-
debian-install-repo "deb https://download.docker.com/linux/debian buster stable"
262+
debian-install-repo "deb https://download.docker.com/linux/debian bullseye stable"
263+
}
263264

265+
debian-11-install-containerd() {
266+
vm-command-q "[ -f /usr/bin/containerd ]" || {
267+
distro-install-pkg containerd.io
268+
}
264269
}
265270

266271
debian-sid-install-containerd-post() {

dockerfiles/cross-build/Dockerfile.debian-10 dockerfiles/cross-build/Dockerfile.debian-11

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# pull in base + a minimal set of useful packages
2-
FROM debian:buster as debian-10-build
2+
FROM debian:bullseye as debian-11-build
33

44
ARG GO_VERSION=x.yz
55
ARG GOLICENSES_VERSION
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
# pull in base + a minimal set of useful packages
2+
FROM debian:bookworm as debian-11-build
3+
4+
ARG GO_VERSION=x.yz
5+
ARG GOLICENSES_VERSION
6+
ARG CREATE_USER="test"
7+
ARG USER_UID=""
8+
ENV PATH /go/bin:/usr/local/go/bin:$PATH
9+
10+
# pull in stuff for cgo
11+
RUN apt-get update && \
12+
apt-get install -y --no-install-recommends \
13+
build-essential fakeroot devscripts \
14+
bash git make sed debhelper ca-certificates && \
15+
rm -rf /var/lib/apt/lists/*
16+
17+
ADD http://go.dev/dl/go${GO_VERSION}.linux-amd64.tar.gz /
18+
19+
RUN tar xf /go${GO_VERSION}.linux-amd64.tar.gz -C "/usr/local" && \
20+
rm /go${GO_VERSION}.linux-amd64.tar.gz
21+
22+
RUN GOBIN=/go/bin go install github.com/google/go-licenses@${GOLICENSES_VERSION}
23+
24+
RUN [ -n "$CREATE_USER" -a "$CREATE_USER" != "root" ] && \
25+
useradd -m -s /bin/bash $CREATE_USER -u $USER_UID

test/e2e/packages.test-suite/debian-10/binsrc.var

-1
This file was deleted.

test/e2e/packages.test-suite/debian-10/distro.var

-1
This file was deleted.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
packages/debian-11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
debian-11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
packages/debian-12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
policy:
2+
Active: topology-aware
3+
ReservedResources:
4+
CPU: 750m
5+
logger:
6+
Debug: cri-resmgr,resource-manager,cache,policy
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
debian-12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
# Clear cri-resmgr output from previous runs.
2+
vm-command "journalctl --vacuum-time=1s"
3+
4+
# Create a pod.
5+
create besteffort
6+
7+
# Verify that new pod was created by systemd-managed cri-resource-manager.
8+
vm-command "journalctl -xeu cri-resource-manager | grep 'StartContainer: starting container pod0:pod0c0'" || {
9+
command-error "failed to verify that systemd-managed cri-resource-manager launched the pod"
10+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
[
2+
{"mem": "2G", "cores": 2, "nodes": 2, "packages": 2}
3+
]
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
1

test/e2e/run.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ usage() {
9999
echo " topology: JSON to override NUMA node list used in tests."
100100
echo " See: python3 ${DEMO_LIB_DIR}/topology2qemuopts.py --help"
101101
echo " distro: Linux distribution to be / already installed on vm."
102-
echo " Supported values: debian-10, debian-sid"
102+
echo " Supported values: debian-11, debian-12, debian-sid"
103103
echo " fedora, opensuse-tumbleweed,"
104104
echo " opensuse-15.5 (same as opensuse), sles,"
105105
echo " ubuntu-18.04, ubuntu-20.04, ubuntu-22.04, ubuntu-24.04"

0 commit comments

Comments
 (0)