Merge pull request #36201 from arm64b/oom-kill-disable-fixing

Daemon: passdown the `--oom-kill-disable` option to containerd
This commit is contained in:
Sebastiaan van Stijn 2018-02-06 21:39:43 -08:00 committed by GitHub
commit 2e8ccbb49e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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
}