talos-extensions/container-runtime/kata-containers
Mateusz Urbanek c66e678b2b
docs: add SBOM for container-runtimes
Partial for #10940

Signed-off-by: Mateusz Urbanek <mateusz.urbanek@siderolabs.com>
2025-07-23 16:16:54 +02:00
..
10-kata-containers.part fix: unable to override runtime defaults 2025-01-10 19:10:22 +05:30
configuration.toml fix: kata containers build 2025-03-20 16:58:57 +04:00
manifest.yaml feat: add kata-containers extension 2024-02-20 16:04:00 +05:30
pkg.yaml docs: add SBOM for container-runtimes 2025-07-23 16:16:54 +02:00
README.md feat: add kata-containers extension 2024-02-20 16:04:00 +05:30
vars.yaml feat: add kata-containers extension 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