Install and start minikube
Just a very small guide on how to install minikube (https://minikube.sigs.k8s.io). For a more comprehensive one, look here -> https://minikube.sigs.k8s.io/docs/start/.
- download
curl -Lo minikube https://storage.googleapis.com/minikube/releases/latest/minikube-linux-amd64
- make it executable
chmod +x ./minikube
- add to bin directory
sudo mv ./minikube /usr/local/bin/
- set driver to docker, this is optional, try without it first, in my case (running WSL) docker was the best choice.
minikube config set driver docker
- start minikube
minikube start
That should be it, open the dashboard to view cluster state and more(will open in browser):
minkube dashboard
Read other posts