mirror of
https://github.com/aljazceru/kata-containers.git
synced 2025-12-27 11:04:21 +01:00
There's only one QEMU runtime class deployed as part of kata-deploy, and that includes virtiofs support (which is the default for quite some time already). Knowing this, let's just remove the `qemu-virtiofs` runtime class definition. Signed-off-by: Fabiano Fidêncio <fidencio@redhat.com>
40 lines
723 B
YAML
40 lines
723 B
YAML
---
|
|
kind: RuntimeClass
|
|
apiVersion: node.k8s.io/v1beta1
|
|
metadata:
|
|
name: kata-qemu
|
|
handler: kata-qemu
|
|
overhead:
|
|
podFixed:
|
|
memory: "160Mi"
|
|
cpu: "250m"
|
|
scheduling:
|
|
nodeSelector:
|
|
katacontainers.io/kata-runtime: "true"
|
|
---
|
|
kind: RuntimeClass
|
|
apiVersion: node.k8s.io/v1beta1
|
|
metadata:
|
|
name: kata-clh
|
|
handler: kata-clh
|
|
overhead:
|
|
podFixed:
|
|
memory: "130Mi"
|
|
cpu: "250m"
|
|
scheduling:
|
|
nodeSelector:
|
|
katacontainers.io/kata-runtime: "true"
|
|
---
|
|
kind: RuntimeClass
|
|
apiVersion: node.k8s.io/v1beta1
|
|
metadata:
|
|
name: kata-fc
|
|
handler: kata-fc
|
|
overhead:
|
|
podFixed:
|
|
memory: "130Mi"
|
|
cpu: "250m"
|
|
scheduling:
|
|
nodeSelector:
|
|
katacontainers.io/kata-runtime: "true"
|