I am trying to start minikube behind a corporate proxy on Windows machine. I am using the following start command
minikube start --alsologtostderr --vm-driver="hyperv" --docker-env http_proxy=http://proxyabc.uk.sample.com:3128 --docker-env https_proxy=http://proxyabc.uk.sample.com:3128 --docker-env "NO_PROXY=localhost,127.0.0.1,192.168.211.157:8443"
minikube version = 0.28.0
kubectl version = 1.9.2
I've also tried setting the no proxy variable before the command
set NO_PROXY="$NO_PROXY,192.168.211.158/8443"
But everytime I run the "minikube start" command I end up with the following message
Error starting cluster: timed out waiting to unmark master: getting node minikube: Get https://192.168.211.155:8443/api/v1/nodes/minikube: Forbidden
I have already tried solutions at
https://github.com/kubernetes/minikube/issues/2706 https://github.com/kubernetes/minikube/issues/2363