@damian_mills
To increase Minikube memory and CPU, you need to modify the Minikube configuration. Here are the steps to do it:
- Stop the running Minikube instance if it is currently running:
minikube stop
- Determine the current Minikube configuration:
minikube config view
- Set the desired memory and CPU values, for example, to set memory to 4GB and CPU to 2:
minikube config set memory 4096
minikube config set cpus 2
- Apply the new configuration:
minikube config set memory 4096
minikube config set cpus 2
- Start Minikube with the updated configuration:
minikube start
After these steps, Minikube should start with the new memory and CPU settings. You can verify the changes by running minikube config view
again.