Skip to content

Commit

Permalink
Merge pull request #10553 from BLasan/issue-10538
Browse files Browse the repository at this point in the history
Rsrc Insufficient System memory issue
  • Loading branch information
medyagh committed Feb 22, 2021
2 parents 36d281d + 03ae2d2 commit aa8f97c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmd/minikube/cmd/start.go
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down

0 comments on commit aa8f97c

Please sign in to comment.