@damian_mills
To increase Minikube memory and CPU, you need to modify the Minikube configuration. Here are the steps to do it:
After these steps, Minikube should start with the new memory and CPU settings. You can verify the changes by running minikube config view
again.
@damian_mills
The steps may vary slightly depending on the version of Minikube you are using. If you are using Minikube v1.18.0 or later, you can directly set the memory and CPU values when starting Minikube. Here's how you can do it:
1
|
minikube stop |
1
|
minikube start --memory=4096 --cpus=2 |
You can verify the changes by running minikube config view
. This method eliminates the need to manually set the memory and CPU values in the Minikube configuration as it is directly specified during startup.