mirror of https://github.com/docker/cli.git
printServerWarningsLegacy: silence "No oom kill disable support" on cgroup v2
The warning should be ignored on cgroup v2 hosts.
Relevant: 8086443a44
Signed-off-by: Akihiro Suda <akihiro.suda.cz@hco.ntt.co.jp>
This commit is contained in:
parent
731f52cfe8
commit
05ec0188fa
|
@ -402,7 +402,7 @@ func printServerWarningsLegacy(dockerCli command.Cli, info types.Info) {
|
||||||
if !info.SwapLimit {
|
if !info.SwapLimit {
|
||||||
fmt.Fprintln(dockerCli.Err(), "WARNING: No swap limit support")
|
fmt.Fprintln(dockerCli.Err(), "WARNING: No swap limit support")
|
||||||
}
|
}
|
||||||
if !info.OomKillDisable {
|
if !info.OomKillDisable && info.CgroupVersion != "2" {
|
||||||
fmt.Fprintln(dockerCli.Err(), "WARNING: No oom kill disable support")
|
fmt.Fprintln(dockerCli.Err(), "WARNING: No oom kill disable support")
|
||||||
}
|
}
|
||||||
if !info.CPUCfsQuota {
|
if !info.CPUCfsQuota {
|
||||||
|
|
Loading…
Reference in New Issue