talos-extensions/container-runtime/youki
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-youki.part feat: add youki container runtime extension 2025-04-29 15:49:33 +05:30
manifest.yaml feat: add youki container runtime extension 2025-04-29 15:49:33 +05:30
pkg.yaml docs: add SBOM for container-runtimes 2025-07-23 16:16:54 +02:00
README.md feat: add youki container runtime extension 2025-04-29 15:49:33 +05:30
vars.yaml feat: add youki container runtime extension 2025-04-29 15:49:33 +05:30

youki extension

Installation

See Installing Extensions.

Usage

Apply the following manifest to run an nginx pod using the Youki Runtime:

apiVersion: node.k8s.io/v1
kind: RuntimeClass
metadata:
  name: youki
handler: youki

Testing

Apply the following manifest to run nginx pod via youki:


---
apiVersion: v1
kind: Pod
metadata:
  name: nginx-youki
spec:
  runtimeClassName: youki
  containers:
  - name: nginx
    image: nginx

The pod should be up and running:

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