Skip to content

Commit aa8f97c

Browse files
authored
Merge pull request #10553 from BLasan/issue-10538
Rsrc Insufficient System memory issue
2 parents 36d281d + 03ae2d2 commit aa8f97c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: cmd/minikube/cmd/start.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -952,7 +952,7 @@ func validateRequestedMemorySize(req int, drvName string) {
952952
}
953953

954954
if sysLimit < minUsableMem {
955-
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})
955+
exitIfNotForced(reason.RsrcInsufficientSysMemory, "System only has {{.size}}MiB available, less than the required {{.req}}MiB for Kubernetes", out.V{"size": sysLimit, "req": minUsableMem})
956956
}
957957

958958
if req < minUsableMem {

0 commit comments

Comments
 (0)