This episode covers Kata Containers 4.0.0, which makes the Rust runtime the default: the Rust-first architecture, Dragonball optimizations, and the infrastructure security focus. You'll also trace the Go-to-Rust transition in the 3.x releases with a monthly cadence.

Episode 1 mentioned a major change in progress: Kata's runtime moving from Go to Rust. Episode 17 is the episode that explains why the change happened, and what changed when its peak was reached — Kata Containers 4.0.0, released July 22, 2026.
In this release, the Rust runtime (runtime-rs) becomes the default. This isn't just a programming language swap — it changes the architecture (the in-process Dragonball VMM), performance, and the project's security posture. Understanding this direction helps you evaluate the backend and version choices you make in production.
Kata's classic runtime is written in Go — a language comfortable for infrastructure, but with trade-offs: a garbage collector (GC) that can cause pauses, higher runtime memory consumption, and a memory security profile that depends on developer discipline. For a component handling CRI requests and managing microVMs, this overhead is felt especially in resource consumption and latency.
Rust offers the combination a modern runtime needs:
This shift aligns with an industry trend: critical infrastructure components are increasingly written in Rust — including VMMs like Firecracker and Cloud Hypervisor.
Kata 4.0.0 (July 22, 2026) marks the Rust-first architecture:
The key phrase to understand: Rust-first. Not "Rust as an experimental option", but Rust as the project's main direction. New features are prioritized for development in runtime-rs, and the ecosystem is moving there.
For those of you operating Kata, 4.0 means:
kata-runtime-rs as the active runtime on nodes.Check which runtime is active on the node:
kata-runtime version
which kata-runtime-rswhich kata-runtime-rs confirms the Rust runtime binary is installed. kata-runtime version shows the version — on a 4.0 installation, this points to the Rust implementation.
Dragonball is a VMM that runs inside the runtime-rs process — not a separate process like QEMU. The consequence: no inter-process communication overhead, faster startup, and more memory savings. This is Kata's answer to the "speed of containers" target, shifting from just a claim to a measurable reality.
Boot time and footprint optimizations aren't decoration. For serverless-like workloads and sandboxes that are rapidly created and destroyed (episode 19), microVM boot speed is the cost per execution. Dragonball trims unnecessary components: only the devices the workload needs, only the code needed to boot.
A useful mental comparison: QEMU is a versatile VM for all needs; Dragonball is a VM slimmed down specifically for one task — container workloads.
The Go → Rust transition didn't happen in one leap. Throughout the 3.x releases, the Kata team moved gradually with a monthly cadence: one new stable release each month. The January to May 2026 window produced releases 3.26 through 3.31, in which Rust features kept maturing and became increasingly default with every version.
The monthly cadence gives operators:
Check the latest release and its changes:
curl -s https://api.github.com/repos/kata-containers/kata-containers/releases/latest | grep tag_namecurl -s https://api.github.com/repos/kata-containers/kata-containers/releases/latest fetches the latest release from the GitHub API. Get into the habit of monitoring this page — in a production environment, being one or two patch releases behind is normal, but being far behind means carrying vulnerabilities.
Important
The monthly release cadence in the 3.x series and the 4.0 leap give you two options: smooth incremental upgrades, or a big risky jump. Set a policy: patch immediately for security, schedule minor upgrades, and test major releases in staging first.
If you're still on the Go runtime, plan a gradual migration:
runtime-rs and Dragonball on a test cluster.configuration.toml you use is compatible with the new runtime.With a gradual approach, the transition to 4.0 becomes a scheduled upgrade, not an emergency change.
What you should take away:
runtime-rs) the default.kata-runtime version and monitoring the GitHub releases are operator rituals.In the next episode, episode 18, we'll cover Kata in the cloud — AKS Pod Sandboxing, OpenShift Sandboxed Containers, AWS EKS on bare-metal nodes, a KubeVirt vs Kata comparison for VM workloads, and on-prem bare-metal deployment. Kata isn't just for your own cluster — it's already a feature on major platforms.