mirror of
https://github.com/siderolabs/extensions.git
synced 2025-08-05 22:07:14 +02:00
|
||
---|---|---|
.. | ||
10-youki.part | ||
manifest.yaml | ||
pkg.yaml | ||
README.md | ||
vars.yaml |
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