Merge pull request #36201 from arm64b/oom-kill-disable-fixing
Daemon: passdown the `--oom-kill-disable` option to containerd Upstream-commit: 2e8ccbb49e21b8696ad4c39185036a8b7e50402f Component: engine
This commit is contained in:
@ -103,6 +103,10 @@ func getMemoryResources(config containertypes.Resources) *specs.LinuxMemory {
|
||||
memory.Swappiness = &swappiness
|
||||
}
|
||||
|
||||
if config.OomKillDisable != nil {
|
||||
memory.DisableOOMKiller = config.OomKillDisable
|
||||
}
|
||||
|
||||
if config.KernelMemory != 0 {
|
||||
memory.Kernel = &config.KernelMemory
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user