Fixes
CI / build (push) Successful in 14s

This commit is contained in:
2026-09-06 16:09:20 +02:00
parent 7dd818db68
commit 506213ed9a
4 changed files with 9 additions and 29 deletions
+2 -2
View File
@@ -8,8 +8,8 @@ Turning containers into bootable VMs
# Build the container # Build the container
podman build ./example/alpine -t slim-alpine podman build ./example/alpine -t slim-alpine
# Make the container bootable by extracing initrd and vmlinuz (initial ramdisk and kernel) # Make the container bootable by extracing initrd (initial ramdisk)
slim build slim-alpine slim build qcow2 slim-alpine --init=/init
# Boot the image using QEMU, `./example/alpine/init` will drop you into an interactive shell. # Boot the image using QEMU, `./example/alpine/init` will drop you into an interactive shell.
slim run slim-alpine slim run slim-alpine
-1
View File
@@ -11,7 +11,6 @@ mount -t sysfs sysfs /sys
# Networking # Networking
echo slim > /proc/sys/kernel/hostname echo slim > /proc/sys/kernel/hostname
modprobe virtio_net
ip link set lo up 2>/dev/null ip link set lo up 2>/dev/null
ip link set eth0 up 2>/dev/null ip link set eth0 up 2>/dev/null
udhcpc -i eth0 -f -q # Get DHCP lease udhcpc -i eth0 -f -q # Get DHCP lease
-1
View File
@@ -8,7 +8,6 @@ mount -t sysfs sysfs /sys
# Networking # Networking
echo slim > /proc/sys/kernel/hostname echo slim > /proc/sys/kernel/hostname
modprobe virtio_net
ip link set lo up 2>/dev/null ip link set lo up 2>/dev/null
ip link set eth0 up 2>/dev/null ip link set eth0 up 2>/dev/null
# udhcpc -i eth0 -f -q # Get DHCP lease # udhcpc -i eth0 -f -q # Get DHCP lease
+7 -25
View File
@@ -5,6 +5,7 @@ use anyhow::{Context, Result, bail};
use clap::{Args, ValueEnum}; use clap::{Args, ValueEnum};
use flate2::write::GzEncoder; use flate2::write::GzEncoder;
use std::fs::{self, File}; use std::fs::{self, File};
use std::io;
use std::path::{Path, PathBuf}; use std::path::{Path, PathBuf};
use std::process::{Command, Stdio}; use std::process::{Command, Stdio};
use tempfile::NamedTempFile; use tempfile::NamedTempFile;
@@ -75,10 +76,11 @@ fn to_raw_ext4(dir: &Path) -> Result<NamedTempFile> {
.parse() .parse()
.context("failed to parse du output")?; .context("failed to parse du output")?;
let used = used_kb * 1024; let used = used_kb * 1024;
let mb = 1024 * 1024; let gb = 1024 * 1024 * 1024;
let size = used let size = used
+ (used / 10) // Add 10% + (used / 10) // Add 10%
+ 64 * mb; // Add some margin // TODO: make configurable
+ 64 * gb; // Add some spare capacity for activities
let size = size.to_string(); let size = size.to_string();
let raw_file = NamedTempFile::new()?; let raw_file = NamedTempFile::new()?;
@@ -124,33 +126,13 @@ fn build_qcow2(image: &str, mount_path: &Path) -> Result<()> {
fn build_initrd(image: &str, mount_path: &Path) -> Result<()> { fn build_initrd(image: &str, mount_path: &Path) -> Result<()> {
let mount_path = mount_path.to_str().context("mount path is not UTF-8")?; let mount_path = mount_path.to_str().context("mount path is not UTF-8")?;
let vmlinuz_src = format!("{mount_path}/vmlinuz");
// The rootless overlay mount only exists inside podman unshare's user
// namespace, so every read of the rootfs must run there; pipes still
// cross the namespace boundary.
let _has_kernel = cmd(&["podman", "unshare", "--", "test", "-f", &vmlinuz_src])
.context("Image missing required /vmlinuz. Place kernel at /vmlinuz in Containerfile.")?;
let reg_dir = registry_dir(image)?; let reg_dir = registry_dir(image)?;
fs::create_dir_all(&reg_dir)?; fs::create_dir_all(&reg_dir)?;
println!("Registry: {}", reg_dir.display()); println!("Registry: {}", reg_dir.display());
let vmlinuz_dst = reg_dir.join("vmlinuz"); // Pack the rootfs as a gzipped newc cpio archive. The cpio pipeline
cmd(&[ // runs inside the namespace, its stdout is compressed here.
"podman",
"unshare",
"--",
"cp",
&vmlinuz_src,
vmlinuz_dst.to_str().context("registry path is not UTF-8")?,
])
.context("Failed to copy vmlinuz out of the image mount")?;
println!("Copied vmlinuz -> {}", vmlinuz_dst.display());
// Pack the rootfs as a gzipped newc cpio archive; vmlinuz is excluded
// because QEMU loads the kernel separately via -kernel. The cpio
// pipeline runs inside the namespace, its stdout is compressed here.
let initrd_path = reg_dir.join("initrd"); let initrd_path = reg_dir.join("initrd");
let script = r#"cd "$1" && find . -not -path ./vmlinuz | cpio -o -H newc"#; let script = r#"cd "$1" && find . -not -path ./vmlinuz | cpio -o -H newc"#;
let mut cpio = Command::new("podman") let mut cpio = Command::new("podman")
@@ -162,7 +144,7 @@ fn build_initrd(image: &str, mount_path: &Path) -> Result<()> {
let initrd_file = File::create(&initrd_path).context("Failed to create initrd file")?; let initrd_file = File::create(&initrd_path).context("Failed to create initrd file")?;
let mut encoder = GzEncoder::new(initrd_file, flate2::Compression::default()); let mut encoder = GzEncoder::new(initrd_file, flate2::Compression::default());
let cpio_stdout = cpio.stdout.take().context("cpio stdout was not piped")?; let cpio_stdout = cpio.stdout.take().context("cpio stdout was not piped")?;
let copied = std::io::copy(&mut std::io::BufReader::new(cpio_stdout), &mut encoder); let copied = io::copy(&mut io::BufReader::new(cpio_stdout), &mut encoder);
let stream_result = copied let stream_result = copied
.and_then(move |_| encoder.finish().map(|_| ())) .and_then(move |_| encoder.finish().map(|_| ()))
.context("Failed to write the gzipped initrd"); .context("Failed to write the gzipped initrd");