Skip to content

Commit

Permalink
fix: let kind run with podman and VirtualBox
Browse files Browse the repository at this point in the history
  • Loading branch information
wheelerlaw committed Jan 27, 2023
1 parent e93d589 commit 501f06b
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions pkg/cluster/internal/providers/podman/provision.go
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 501f06b

Please sign in to comment.