From d60da1129b1200821ebd33b51b045fb7ea3d756d Mon Sep 17 00:00:00 2001 From: Paul Schweigert Date: Thu, 19 Jan 2023 09:35:01 -0500 Subject: [PATCH] fixes minikube quickstart default memory value (#5384) Signed-off-by: Paul S. Schweigert Signed-off-by: Paul S. Schweigert --- docs/snippets/quickstart-install.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/docs/snippets/quickstart-install.md b/docs/snippets/quickstart-install.md index e9905cf5c..108d050b0 100644 --- a/docs/snippets/quickstart-install.md +++ b/docs/snippets/quickstart-install.md @@ -94,8 +94,9 @@ To get a local deployment of Knative, run the `quickstart` plugin: 1. Install Knative and Kubernetes in a [minikube](https://minikube.sigs.k8s.io/docs/start/) instance by running: !!! note - The minikube cluster will be created with 6 GB of RAM. If you don't have enough memory, you can change to a - different value not lower than 3 GB by running the command `minikube config set memory 3078` before this command. + The minikube cluster will be created with 3 GB of RAM. You can change to a + different value not lower than 3 GB by setting a memory config in minikube. + For example, `minikube config set memory 4096` will use 4 GB of RAM. ```bash kn quickstart minikube ```