How to install Kubernetes Locally via Minikube
I finally found a working solution removing the snap package (sudo snap remove minikube
) and then following one of the official guides keeping kubectl
:
curl -LO https://storage.googleapis.com/minikube/releases/latest/minikube-linux-amd64 \
&& sudo install minikube-linux-amd64 /usr/local/bin/minikube
Tested with kubectl version
and
$ kubectl get nodes
NAME STATUS ROLES AGE VERSION
minikube Ready master 25m v1.12.4
To run the dashboard just
minikube dashboard
Alternatively you could try microk8s (add-ons, ARM, multi-node), kind or k3s.