Merge pull request #10553 from BLasan/issue-10538
Rsrc Insufficient System memory issuepull/10559/head
commit
aa8f97c309
|
@ -952,7 +952,7 @@ func validateRequestedMemorySize(req int, drvName string) {
|
|||
}
|
||||
|
||||
if sysLimit < minUsableMem {
|
||||
exitIfNotForced(reason.RsrcInsufficientSysMemory, "System only has {{.size}}MiB available, less than the required {{.req}}MiB for Kubernetes", out.V{"size": containerLimit, "driver": drvName, "req": minUsableMem})
|
||||
exitIfNotForced(reason.RsrcInsufficientSysMemory, "System only has {{.size}}MiB available, less than the required {{.req}}MiB for Kubernetes", out.V{"size": sysLimit, "req": minUsableMem})
|
||||
}
|
||||
|
||||
if req < minUsableMem {
|
||||
|
|
Loading…
Reference in New Issue