mirror of https://github.com/containers/podman.git
spec: do not set devices cgroup when rootless
eBPF requires to be root in the init namespace. Signed-off-by: Giuseppe Scrivano <giuseppe@scrivano.org>
This commit is contained in:
parent
ba1c57030f
commit
b101a8d366
|
@ -173,15 +173,16 @@ func (c *CreateConfig) addPrivilegedDevices(g *generate.Generator) error {
|
||||||
newMounts = append(newMounts, devMnt)
|
newMounts = append(newMounts, devMnt)
|
||||||
}
|
}
|
||||||
g.Config.Mounts = append(newMounts, g.Config.Mounts...)
|
g.Config.Mounts = append(newMounts, g.Config.Mounts...)
|
||||||
|
g.Config.Linux.Resources.Devices = nil
|
||||||
} else {
|
} else {
|
||||||
for _, d := range hostDevices {
|
for _, d := range hostDevices {
|
||||||
g.AddDevice(Device(d))
|
g.AddDevice(Device(d))
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
// Add resources device - need to clear the existing one first.
|
// Add resources device - need to clear the existing one first.
|
||||||
g.Config.Linux.Resources.Devices = nil
|
g.Config.Linux.Resources.Devices = nil
|
||||||
g.AddLinuxResourcesDevice(true, "", nil, nil, "rwm")
|
g.AddLinuxResourcesDevice(true, "", nil, nil, "rwm")
|
||||||
|
}
|
||||||
|
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue