Minikube not working in Windows 8

喜欢而已 提交于 2019-12-04 02:49:33

As @ivthillo already was pointing out, the issue may occur because you are behind a proxy. In this link they explain solutions to configure minikube when you are behind a proxy: https://github.com/kubernetes/minikube/issues/530#issuecomment-250801735

Try starting minikube like this:

minikube start --docker-env HTTP_PROXY=http://$YOURPROXY:PORT \ --docker-env HTTPS_PROXY=https://$YOURPROXY:PORT

This should configure docker to use your proxy.

Here they also propose other solutions: https://github.com/kubernetes/minikube/issues/530#issuecomment-347718692

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!