Skip to content

Commit 03ae2d2

Browse files
committed
Fix Rsrc Insufficient System memory issue
1 parent 413cdf6 commit 03ae2d2

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)