Versions Compared

Key

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

...

Code Block
$ curl -LO https://storage.googleapis.com/minikube/releases/latest/minikube-linux-amd64
$ sudo install minikube-linux-amd64 /usr/local/bin/minikube


Configure

Code Block
$ minikube config set cpus 12
$ minikube config set memory 12000

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
$ 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