mirror of
git://git.yoctoproject.org/meta-virtualization.git
synced 2025-07-19 12:50:22 +02:00

containerd doesn't do native networking confguration, it relies on CNI. So ensure that CNI is specified in the containerd profile. Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
18 lines
540 B
PHP
18 lines
540 B
PHP
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"
|