mirror of https://github.com/docker/docs.git
Merge pull request #19281 from hqhq/hq_dont_fail_oomkilldisable
Do not fail if not support OomKillDisable
This commit is contained in:
commit
9232c09cd5
|
@ -275,8 +275,9 @@ func verifyContainerResources(resources *containertypes.Resources) ([]string, er
|
||||||
logrus.Warnf("You specified a kernel memory limit on a kernel older than 4.0. Kernel memory limits are experimental on older kernels, it won't work as expected and can cause your system to be unstable.")
|
logrus.Warnf("You specified a kernel memory limit on a kernel older than 4.0. Kernel memory limits are experimental on older kernels, it won't work as expected and can cause your system to be unstable.")
|
||||||
}
|
}
|
||||||
if resources.OomKillDisable != nil && !sysInfo.OomKillDisable {
|
if resources.OomKillDisable != nil && !sysInfo.OomKillDisable {
|
||||||
|
warnings = append(warnings, "Your kernel does not support OomKillDisable, OomKillDisable discarded.")
|
||||||
|
logrus.Warnf("Your kernel does not support OomKillDisable, OomKillDisable discarded.")
|
||||||
resources.OomKillDisable = nil
|
resources.OomKillDisable = nil
|
||||||
return warnings, fmt.Errorf("Your kernel does not support oom kill disable.")
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// cpu subsystem checks and adjustments
|
// cpu subsystem checks and adjustments
|
||||||
|
|
Loading…
Reference in New Issue