OneUptime
oneuptime.com › home › blog › how to customize the talos linux kernel
How to Customize the Talos Linux Kernel
March 3, 2026 - These targets live in the main siderolabs/talos repository, which consumes the kernel image you just built in pkgs. # Switch to the talos repo and point it at your custom kernel via PKG_KERNEL cd ../talos # Build the initramfs with the custom kernel make initramfs PKG_KERNEL=ghcr.io/youruser/kernel:<tag> # Build the installer image with everything included make installer PKG_KERNEL=ghcr.io/youruser/kernel:<tag> # Build an ISO for bare metal deployment make iso PKG_KERNEL=ghcr.io/youruser/kernel:<tag>
Sidero Documentation
docs.siderolabs.com › talos › v1.9 › build-and-extend-talos › custom-images-and-development › customizing-the-kernel
Customizing the Kernel - Sidero Documentation
Guide on how to customize the kernel used by Talos Linux.
GitHub
github.com › nberlee › TalosImageExtraKernelParams
GitHub - nberlee/TalosImageExtraKernelParams: Add custom kernel parameters to Talos Images, without upgrading · GitHub
Add custom kernel parameters to Talos Images, without upgrading - nberlee/TalosImageExtraKernelParams
Author nberlee
Kcirtap
kcirtap.io › posts › talos-rpi5-custom-kernel-build
Building Talos Linux for Raspberry Pi 5 with Custom Kernel | escapades in engineering
February 1, 2026 - $ kubectl get nodes -o wide NAME STATUS ROLES VERSION INTERNAL-IP KERNEL-VERSION talos-192-168-150-8 Ready <none> v1.35.0 192.168.150.8 6.12.67-talos talos-ek0-5dx Ready control-plane v1.35.0 100.78.183.103 6.18.2-talos talos-lwn-dba Ready <none> v1.35.0 100.95.115.98 6.18.2-talos · The RPi5 is running the custom 6.12.67-talos kernel with 4K pages, working ethernet, and is fully participating in cluster workloads.
GitHub
github.com › siderolabs › talos › issues › 9740
Custom kernel modules · Issue #9740 · siderolabs/talos
November 18, 2024 - Bug Report Description Sorry if this has been discussed before but I couldn't find much, but I was wondering if I could load kernel modules onto my existing cluster? I am trying to install binhex/arch-sabnzbdvpn and I found from this iss...
Author siderolabs
OneUptime
oneuptime.com › home › blog › how to schedule kernel updates on talos linux
How to Schedule Kernel Updates on Talos Linux
March 3, 2026 - This model has a big advantage: you never end up in a situation where the kernel was updated but some userspace component was not. Everything moves together as a single unit. Before you can schedule updates, you need to know what versions you are running and what is available. # Check the current Talos version, which includes the kernel talosctl version -n <node-ip> # Compare with the latest available version # Check the Talos releases page for the latest version # https://github.com/siderolabs/talos/releases