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