Enable all devices in privileged mode
The Privileged mode in containerd driver is not adding devices from host device. This change will make the driver's privileged mode equivalent to ctr tool's privileged mode - https://github.com/containerd/containerd/blob/main/cmd/ctr/commands/run/run_unix.go#L205-L207
This commit is contained in:
parent
bbb554b18f
commit
32a46614eb
@ -149,7 +149,7 @@ func (d *Driver) createContainer(containerConfig *ContainerConfig, config *TaskC
|
||||
|
||||
// Enable privileged mode.
|
||||
if config.Privileged {
|
||||
opts = append(opts, oci.WithPrivileged)
|
||||
opts = append(opts, oci.WithPrivileged, oci.WithAllDevicesAllowed, oci.WithHostDevices)
|
||||
}
|
||||
|
||||
// WithPidsLimit sets the container's pid limit or maximum
|
||||
|
Loading…
x
Reference in New Issue
Block a user