conf: meta-virt-container.inc comment out values as reference

This .inc file is no longer the active one by default, so we
will use it a reference for the possible values. To make that
more obvious, we comment out the current values.

Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
This commit is contained in:
Bruce Ashfield 2024-10-21 01:49:13 +00:00
parent e8f51968a2
commit 3857974ed9

View File

@ -21,23 +21,22 @@
# conflicting on target or causing runtime issues / errors.
#
## CNCF "components"
#### CNCF "components"
# engines: docker-ce/docker-moby, virtual-containerd, cri-o, podman
VIRTUAL-RUNTIME_container_engine ??= "podman"
# runtime: runc, crun, runv, runx
VIRTUAL-RUNTIME_container_runtime ??= "virtual-runc"
# networking: cni, netavark
VIRTUAL-RUNTIME_container_networking ??= "cni"
# dns: cni, aardvark-dns
VIRTUAL-RUNTIME_container_dns ??= "cni"
# orchestration: k8s, k3s
VIRTUAL-RUNTIME_container_orchestration ??= "k3s"
## engines: docker/docker-moby, virtual-containerd, cri-o, podman, lxc
# VIRTUAL-RUNTIME_container_engine ??= "podman"
## runtime: runc, crun, runv, runx
# VIRTUAL-RUNTIME_container_runtime ??= "virtual-runc"
## networking: cni, netavark
# VIRTUAL-RUNTIME_container_networking ??= "cni"
## dns: cni, aardvark-dns
# VIRTUAL-RUNTIME_container_dns ??= "cni"
## orchestration: k8s, k3s
# VIRTUAL-RUNTIME_container_orchestration ??= "k3s"
## Kubernetes terminology "components"
VIRTUAL-RUNTIME_cri ??= "virtual-containerd"
VIRTUAL-RUNTIME_cni ??= "cni"
# VIRTUAL-RUNTIME_cri ??= "virtual-containerd"
# VIRTUAL-RUNTIME_cni ??= "cni"
CONTAINER_RO_REMOVE ?= " ${@bb.utils.contains('VIRTUAL-RUNTIME_container_engine', 'podman', 'shadow', '', d)}"
ROOTFS_RO_UNNEEDED:remove = "${CONTAINER_RO_REMOVE}"