Skip to content

Commit

Permalink
Fix Rsrc Insufficient System memory issue
Browse files Browse the repository at this point in the history
  • Loading branch information
BLasan committed Feb 21, 2021
1 parent 413cdf6 commit 068f448
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, "driver": drvName, "req": minUsableMem})
}

if req < minUsableMem {
Expand Down

0 comments on commit 068f448

Please sign in to comment.