Merge pull request from chenopis/patch-1

Add no_proxy settings
pull/1584/merge
Matt Rickard 2017-06-28 12:00:04 -07:00 committed by GitHub
commit 109fa16b47
1 changed files with 8 additions and 1 deletions

View File

@ -11,4 +11,11 @@ For example:
```shell
$ minikube start --docker-env HTTP_PROXY=http://$YOURPROXY:PORT \
--docker-env HTTPS_PROXY=https://$YOURPROXY:PORT
```
```
If your Virtual Machine address is 192.168.99.100, then chances are your proxy settings will prevent kubectl from directly reaching it.
To by-pass proxy configuration for this IP address, you should modify your no_proxy settings. You can do so with:
```shell
$ export no_proxy=$no_proxy,$(minikube ip)
```