Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
$ minikube config set cpus 124
$ minikube config set memory 120008192

If you are changing the above configuration, you will need to first delete the minikube instance using the command 'minikube delete'.



Start Minikube

Code Block
$ eval $(minikube docker-env)

$ minikube start
minikube v1.23.2 on Ubuntu 20.04
Automatically selected the docker driver. Other choices: none, ssh
Starting control plane node minikube in cluster minikube
Pulling base image ...
Downloading Kubernetes v1.22.2 preload ...
 > gcr.io/k8s-minikube/kicbase: 1.21 MiB / 355.40 MiB  0.34% 23.92 KiB p/s E
...

Configure local env to use Minikube's docker

Code Block
$ eval $(minikube docker-env)



References

...