Feed

Everything recently published or updated on iximiuz Labs — the same stream the RSS and Atom feeds show, but with a browser-friendly look.

Your feed — All new posts

ChallengePublished: Aug 19, 2026
Copy Config Files from a Running Pod (cover image)

Copy Config Files from a Running Pod

A Deployment is running in the platform namespace with 3 replicas. Each pod has configuration files at /app/config/. Copy those files to /home/laborant/config/ on the local machine.

ChallengePublished: Aug 16, 2026
Expose the Snake Game via TLS Ingress (cover image)

Expose the Snake Game via TLS Ingress

A Snake game Deployment and ClusterIP Service are already running in the snake namespace. Create a Traefik Ingress that serves the game over HTTPS using an existing cert-manager-issued TLS Secret.

PlaygroundPublished: Aug 15, 2026
Rust Programming (cover image)

Rust Programming

A disposable Rust development environment with stable, beta, and nightly toolchains, cargo-watch, rustfmt, and clippy pre-installed.

Blog postPublished: Aug 9, 2026

Thoughts on OpenAI's accidental attack against Hugging Face

OpenAI gave a presentation about "the Hugging Face Incident", and Simon Willison, my favorite AI journalist, reconstructed the incident's timeline from the video. I recommend reading it in full, and here are my thoughts pertaining to the domain I'm working in - Linux, containers, and security.

TutorialPublished: Aug 9, 2026
Change Your Root: Chroot Basics (cover image)

Change Your Root: Chroot Basics

Understand how the chroot system call changes the root directory for a process, learn how dynamic linkers resolve dependencies inside a jail, and see what an isolated process perceives as its filesystem root.

ChallengePublished: Aug 6, 2026
Port-Forward a Kubernetes Service to localhost (cover image)

Port-Forward a Kubernetes Service to localhost

A Deployment running a distroless Chainguard nginx image (cgr.dev/chainguard/nginx) is deployed in the namespace webapps, fronted by a ClusterIP Service. Port-forward that Service to localhost port 3333 on cplane-01, use curl to save the response body to /home/laborant/index.html, and verify the file is accessible and contains the expected content.

PlaygroundPublished: Aug 5, 2026
NixOS (cover image)

NixOS

A ready-to-use NixOS server for exploring the full Nix experience without installing it on your own machine.

ChallengeUpdated: Aug 6, 2026 (Published: Aug 5, 2026)
Debug a Failing Kubernetes Job (cover image)

Debug a Failing Kubernetes Job

A Job manifest at /home/laborant/batch-job.yaml is exiting with a non-zero exit status. The Job has limited retries configured. Inspect the cluster and the manifest to find the bug, fix it, and reapply.

ChallengePublished: Aug 4, 2026
Extend kubectl with a Custom Image-Inspection Plugin (cover image)

Extend kubectl with a Custom Image-Inspection Plugin

A helper script that lists every container image running in the cluster — along with its on-disk size and the workload that uses it — has been downloaded to cplane-01. Install it as a kubectl plugin named kubectl-images so that kubectl images works from any directory.

TutorialUpdated: Aug 4, 2026 (Published: Aug 3, 2026)
Using Go for Systems Programming (cover image)

Using Go for Systems Programming

Discover how Go functions under the hood as a modern systems programming language. Learn how Go makes system calls directly, resulting in self-contained binaries that have no libc dependencies.

ChallengePublished: Aug 3, 2026
Utilize POSIX Threads for Concurrency (cover image)

Utilize POSIX Threads for Concurrency

Refactor a slow, single-threaded C file downloader that fetches files sequentially into a multi-threaded program using POSIX Threads (pthreads) to achieve concurrent downloads.

TutorialPublished: Aug 1, 2026
Managing Podman Instances Remotely (cover image)

Managing Podman Instances Remotely

Learn how you can control multiple podman instances on remote machines without SSHing into them manually. Also learn to deploy your Compose application stacks without SCP / SSH with podman remote feature and Docker Compose v2

TutorialPublished: Jul 31, 2026
Build a Custom Rootfs Image That Boots as a microVM, Not a Container (cover image)

Build a Custom Rootfs Image That Boots as a microVM, Not a Container

A container image and a bootable root filesystem are not the same artifact. This tutorial builds both from the same Dockerfile so you can see exactly where they diverge: what a plain ubuntu:24.04 is missing, the five requirements an iximiuz Labs playground rootfs has to satisfy, and how to prove an image would boot without being able to boot it. Ends with the same image built the easy way, from the official rootfs base.

ChallengePublished: Jul 31, 2026
Inject a Config File Without Overwriting the Image's Existing Directory (cover image)

Inject a Config File Without Overwriting the Image's Existing Directory

A webapp deployment in the prod namespace is stuck in CrashLoopBackOff. The application's startup probe checks that its existing config directory is intact before the container is marked healthy. Fix the deployment so configuration is injected correctly and the pod reaches Running state with its health check endpoint responding on port 8080.

PlaygroundPublished: Jul 26, 2026
Shell Gym (cover image)

Shell Gym

Try Shell Gym - an interactive Linux command-line trainer - in a ready-made Ubuntu VM: daemon running, web UI open, sample learning path loaded.

TutorialUpdated: Aug 6, 2026 (Published: Jul 26, 2026)
Linux Processes: Understanding Signals (cover image)

Linux Processes: Understanding Signals

Explore Linux/Unix signals in Go, how signals act as asynchronous notifications, who can send them, default kernel behaviors, sending signals with kill and Go, graceful signal handling with os/signal, and why SIGKILL cannot be trapped.

TutorialUpdated: Aug 3, 2026 (Published: Jul 26, 2026)
Linux Processes: Threads & Concurrency (cover image)

Linux Processes: Threads & Concurrency

Explore what a thread actually is in Linux, how threads relate to processes, how the Linux kernel treats both as tasks (task_struct), and how kernel scheduling enables concurrency.

TutorialPublished: Jul 25, 2026
Podman with Kubernetes: Play Before You Apply (cover image)

Podman with Kubernetes: Play Before You Apply

This tutorial provides an in-depth know-how of working with Pods (group of container) with Podman. It also gives insights into how the podman CLI works well with Kubernetes, albeit in limited capacity to develop better Container Workflows.

ChallengeUpdated: Jul 26, 2026 (Published: Jul 24, 2026)
Count Optimized Assembly Instructions (cover image)

Count Optimized Assembly Instructions

Compile a small C loop with -O2 -S, inspect the generated assembly, report how many add instructions gcc produced and see how much it has optimized the equasion.

TutorialUpdated: Jul 26, 2026 (Published: Jul 24, 2026)
Writing a (valid) C program without main() (cover image)

Writing a (valid) C program without main()

Walk through the C compilation pipeline: preprocessor, compiler, assembler, and linker. Start with a normal hello world, inspect macros and generated assembly, and end by producing a running binary that has no main() function.

ChallengeUpdated: Aug 6, 2026 (Published: Jul 24, 2026)
Access the Kubernetes API Server via kubectl proxy (cover image)

Access the Kubernetes API Server via kubectl proxy

Use kubectl proxy to open a local, already authenticated HTTP endpoint to the Kubernetes API server, then use curl to list every Secret in the gliese-581 namespace and save the raw JSON response to /home/laborant/secret-list.json.

ChallengePublished: Jul 19, 2026
Enable Per-Pod DNS Records for a Deployment (cover image)

Enable Per-Pod DNS Records for a Deployment

A service in the mesh namespace returns only a single IP during DNS lookup, preventing the peer-server pods from finding each other. Investigate why DNS does not return one address per pod and change the service configuration so that peer discovery works correctly.

ChallengePublished: Jul 19, 2026
Troubleshoot Why the Calendar Todo App Pods Are Stuck in Pending (cover image)

Troubleshoot Why the Calendar Todo App Pods Are Stuck in Pending

The production "Calendar Todo" web application has been deployed in the prod namespace but all pods are stuck in Pending. Investigate the cluster, identify why the application cannot run, fix the underlying node issue, and verify the app is serving traffic on NodePort 31777.

TutorialPublished: Jul 17, 2026
Harden Access to OpenClaw with Pomerium (cover image)

Harden Access to OpenClaw with Pomerium

Put OpenClaw, a self-hosted AI assistant with shell and file access, behind a web route and an SSH route, both gated by the same identity and Pomerium's context-aware policy. OpenClaw runs in trusted-proxy mode, trusting signed identity headers instead of its own login, while Pomerium's native SSH proxy signs short-lived certificates for shell access.

Blog postUpdated: Aug 9, 2026 (Published: Jul 15, 2026)

Are user namespaces good for your health?

At last, I ran into a take on user namespaces that resonates with my own view of the problem: Kubernetes Finally Has User Namespace Support. The Shared Kernel Problem Remains (and its spinoff on The New Stack) by Kaylin Trychon of Edera.

TutorialPublished: Jul 14, 2026
Kubernetes Debugging with DebugBox: Right-Sized Containers for Every Scenario (cover image)

Kubernetes Debugging with DebugBox: Right-Sized Containers for Every Scenario

Most Kubernetes debugging images ship as a single 200+ MB package. DebugBox takes a different approach: three variants (15 MB, 47 MB, 91 MB) each scoped to a specific debugging task. This tutorial covers when to use lite, balanced, and power, how to run each as an ephemeral container or debug pod, and what tools are available in each variant.

TutorialPublished: Jul 4, 2026
Podman and Linux Namespaces (cover image)

Podman and Linux Namespaces

Understand how podman works with configured Linux User Namespaces and how to configure / update these namespaces for current users.

CourseUpdated: Jul 27, 2026 (Published: Jul 2, 2026)
Securing MCP Servers and MCP Apps with Pomerium (cover image)

Securing MCP Servers and MCP Apps with Pomerium

A hands-on course on securing Model Context Protocol (MCP) servers and MCP apps with Pomerium, covering OAuth 2.1, upstream OAuth to APIs like GitHub, and per-user, per-tool authorization from dev to production.