mirror of
https://github.com/siderolabs/extensions.git
synced 2026-05-05 12:16:46 +02:00
youki extension
Installation
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