Andrey Smirnov 263f699ea4
chore: annotate extensions with tiers
Fixes #10940

Signed-off-by: Andrey Smirnov <andrey.smirnov@siderolabs.com>
2025-08-26 20:58:30 +04:00
..
2025-08-26 20:58:30 +04:00

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