fixes minikube quickstart default memory value (#5384)

Signed-off-by: Paul S. Schweigert <paul@paulschweigert.com>

Signed-off-by: Paul S. Schweigert <paul@paulschweigert.com>
This commit is contained in:
Paul Schweigert 2023-01-19 09:35:01 -05:00 committed by GitHub
parent 2d7ead8ed4
commit d60da1129b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 2 deletions

View File

@ -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&nbsp;GB of RAM. If you don't have enough memory, you can change to a
different value not lower than 3&nbsp;GB by running the command `minikube config set memory 3078` before this command.
The minikube cluster will be created with 3&nbsp;GB of RAM. You can change to a
different value not lower than 3&nbsp;GB by setting a memory config in minikube.
For example, `minikube config set memory 4096` will use 4&nbsp;GB of RAM.
```bash
kn quickstart minikube
```