Last active
October 5, 2017 09:44
-
-
Save nayyaung/47cac0d5e537dd44bf506ad437ef58fb to your computer and use it in GitHub Desktop.
Starting minikube on Windows with Proxy
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# first, download cntlm and setup proxy on local | |
minikube start --docker-env http_proxy=http://10.0.2.2:3128 --docker-env https_proxy=http://10.0.2.2:3128 --docker-env no_proxy=no_proxy=localhost,127.0.0.1,$YOUR_DOCKER_REPOSITORY$,10.160.170.30,10.0.0.0/24,192.168.99.0/24 | |
# 10.0.2.2 is the gateway IP of minikube virtual box. "route -n" can be used to find out gateway. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment