From 13be85e59828e6e57e3819b60c1248e7271e36fe Mon Sep 17 00:00:00 2001 From: Rob Leland Date: Thu, 6 Oct 2022 12:50:22 -0400 Subject: [PATCH] Quick Start Tweak: For limited memory I am using minikube in a environment with limited memory (a VM) The start guide shows the use of this command: minikube config set memory 16384 Which returns a Docker error since only 16001 of memory could be reserved. If we reframe the intent slightly to show how to *change* the default memory limit, as opposed to *increasing* it then the proposed change will still convey the same info. In addition, those with limited memory will be less likely to encounter this error. --- site/content/en/docs/start/_index.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/site/content/en/docs/start/_index.md b/site/content/en/docs/start/_index.md index cb56d992ec..2cce940961 100644 --- a/site/content/en/docs/start/_index.md +++ b/site/content/en/docs/start/_index.md @@ -605,10 +605,10 @@ Halt the cluster: minikube stop ``` -Increase the default memory limit (requires a restart): +Change the default memory limit (requires a restart): ```shell -minikube config set memory 16384 +minikube config set memory 9001 ``` Browse the catalog of easily installed Kubernetes services: