blob: 73438298430158f21f2a76597913f56c1d855f7f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
include meta-virt-container.inc
## CNCF "components"
# engines: docker/docker-moby, virtual-containerd, cri-o, podman, lxc
VIRTUAL-RUNTIME_container_engine ??= "containerd"
# runtime: runc, crun, runv, runx
VIRTUAL-RUNTIME_container_runtime ??= "crun"
# networking: cni, netavark
VIRTUAL-RUNTIME_container_networking ??= "cni"
# dns: cni, aardvark-dns
VIRTUAL-RUNTIME_container_dns ??= ""
# orchestration: k8s, k3s
VIRTUAL-RUNTIME_container_orchestration ??= ""
VIRTUAL-RUNTIME_cri ??= "virtual-containerd"
VIRTUAL-RUNTIME_cni ??= "cni"
|