Skip to content

Commit 501f06b

Browse files
committed
fix: let kind run with podman and VirtualBox
1 parent e93d589 commit 501f06b

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

pkg/cluster/internal/providers/podman/provision.go

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -185,6 +185,9 @@ func runArgsForNode(node *config.Node, clusterIPFamily config.ClusterIPFamily, n
185185
// including some ones podman would otherwise do by default.
186186
// for now this is what we want. in the future we may revisit this.
187187
"--privileged",
188+
// For using podman when VirtualBox is also installed
189+
// See https://github.com/containers/podman/issues/14284
190+
"--group-add", "keep-groups",
188191
// runtime temporary storage
189192
"--tmpfs", "/tmp", // various things depend on working /tmp
190193
"--tmpfs", "/run", // systemd wants a writable /run

0 commit comments

Comments
 (0)