From 54443bd3379c16c5b0244b3ab3135314fb4b57a3 Mon Sep 17 00:00:00 2001 From: Thomas Stromberg Date: Thu, 3 Sep 2020 11:34:40 -0700 Subject: [PATCH] Update min*Mem constants to use MiB instead of MB --- cmd/minikube/cmd/start_flags.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cmd/minikube/cmd/start_flags.go b/cmd/minikube/cmd/start_flags.go index a17e6084bca1..e0bc8af45014 100644 --- a/cmd/minikube/cmd/start_flags.go +++ b/cmd/minikube/cmd/start_flags.go @@ -94,8 +94,8 @@ const ( interactive = "interactive" waitTimeout = "wait-timeout" nativeSSH = "native-ssh" - minUsableMem = 1024 // In MiB: Kubernetes will not start with less than 1GiB - minRecommendedMem = 2000 // In MiB: Warn at no lower than existing configurations + minUsableMem = 953 // 1GB In MiB: Kubernetes will not start with less + minRecommendedMem = 1907 // 2GB In MiB: Warn at no lower than existing configurations minimumCPUS = 2 minimumDiskSize = 2000 autoUpdate = "auto-update-drivers"