Andrey Smirnov 6962487685
feat: update extensions
gvisor: 20250820.0
kata-containers: 3.21.0
netbird: 0.58.2
newt: 1.5.0
tailscale: 1.88.3
drbd: 9.2.15

Signed-off-by: Andrey Smirnov <andrey.smirnov@siderolabs.com>
2025-09-29 22:12:27 +04:00
..
2025-03-20 16:58:57 +04:00
2025-09-29 22:12:27 +04:00
2024-02-20 16:04:00 +05:30

kata-containers extension

Installation

See Installing Extensions.

Usage

Testing

Apply the following manifest to run nginx pod using Kata Containers:

apiVersion: node.k8s.io/v1
kind: RuntimeClass
metadata:
  name: kata
handler: kata
overhead:
    podFixed:
        memory: "130Mi"
        cpu: "250m"
---
apiVersion: v1
kind: Pod
metadata:
  name: nginx-kata
spec:
  runtimeClassName: kata
  containers:
  - name: nginx
    image: nginx

The pod should be up and running:

$ kubectl get pods
NAME           READY   STATUS    RESTARTS   AGE
nginx-kata     1/1     Running   0          40s