From ab77860c5e517e8d10b5cb60ef2828ac3dde57b1 Mon Sep 17 00:00:00 2001 From: Medya Gh Date: Mon, 10 Aug 2020 16:21:58 -0700 Subject: [PATCH] fix typo --- cmd/minikube/cmd/start.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cmd/minikube/cmd/start.go b/cmd/minikube/cmd/start.go index 6eb4127709..2aa4668041 100644 --- a/cmd/minikube/cmd/start.go +++ b/cmd/minikube/cmd/start.go @@ -857,8 +857,8 @@ func validateMemorySize(req int, drvName string) { minAdvised := 0.50 * float64(sysLimit) if req < minUsableMem && !viper.GetBool(force) { - exit.WithCodeT(exit.Config, "Requested memory allocation {{.requested}}MB is less than the usable minimum of {{.minimum}}MB", - out.V{"requested": req, "mininum": minUsableMem}) + exit.WithCodeT(exit.Config, "Requested memory allocation {{.requested}}MB is less than the usable minimum of {{.minimum_memory}}MB", + out.V{"requested": req, "minimum_memory": minUsableMem}) } if req < minRecommendedMem && !viper.GetBool(force) { out.WarningT("Requested memory allocation ({{.requested}}MB) is less than the recommended minimum {{.recommended}}MB. Kubernetes may crash unexpectedly.",