I installed minikube
with the below command:
curl -Lo minikube https://storage.googleapis.com/minikube/releases/latest/minikube-linux-amd64 && chmod +x minikube && sudo mv minikube /usr/local/bin/
Then, I start minikube
cluster using
minikube start --vm-driver=none
When I try to access the dashboard I see the error
minikube dashboard
Could not find finalized endpoint being pointed to by kubernetes-dashboard: Error validating service: Error getting service kubernetes-dashboard: Get https://10.0.2.15:8443/api/v1/namespaces/kube-system/services/kubernetes-dashboard: net/http: TLS handshake timeout
I set the proxy using
set NO_PROXY=localhost,127.0.0.1,10.0.2.15
Still same error.
Any help would be appreciated.