From 501f06b2c515d7acf8721b46a517c500e6c21962 Mon Sep 17 00:00:00 2001 From: Wheeler Law Date: Thu, 26 Jan 2023 18:55:56 -0600 Subject: [PATCH] fix: let kind run with podman and VirtualBox --- pkg/cluster/internal/providers/podman/provision.go | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pkg/cluster/internal/providers/podman/provision.go b/pkg/cluster/internal/providers/podman/provision.go index 0935b48d9b..3118d2ab22 100644 --- a/pkg/cluster/internal/providers/podman/provision.go +++ b/pkg/cluster/internal/providers/podman/provision.go @@ -185,6 +185,9 @@ func runArgsForNode(node *config.Node, clusterIPFamily config.ClusterIPFamily, n // including some ones podman would otherwise do by default. // for now this is what we want. in the future we may revisit this. "--privileged", + // For using podman when VirtualBox is also installed + // See https://github.com/containers/podman/issues/14284 + "--group-add", "keep-groups", // runtime temporary storage "--tmpfs", "/tmp", // various things depend on working /tmp "--tmpfs", "/run", // systemd wants a writable /run