We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents a1ee950 + b7f0bfc commit b913981Copy full SHA for b913981
pkg/drivers/kic/oci/oci.go
@@ -108,7 +108,9 @@ func CreateContainerNode(p CreateParams) error {
108
// including some ones docker would otherwise do by default.
109
// for now this is what we want. in the future we may revisit this.
110
"--privileged",
111
- "--security-opt", "seccomp=unconfined", // also ignore seccomp
+ "--security-opt", "seccomp=unconfined", // ignore seccomp
112
+ // ignore apparmore github actions docker: https://github.com/kubernetes/minikube/issues/7624
113
+ "--security-opt", "apparmor=unconfined",
114
"--tmpfs", "/tmp", // various things depend on working /tmp
115
"--tmpfs", "/run", // systemd wants a writable /run
116
// logs,pods be stroed on filesystem vs inside container,
0 commit comments