Update NO_PROXY example for Windows

A wrong IP was used in the example for windows, ending in .1 instead of .0.
pull/5314/head
Samuel Almeida 2019-09-11 16:01:43 +02:00 committed by GitHub
parent f36c5d8ed1
commit 56551cee24
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -40,7 +40,7 @@ To make the exported variables permanent, consider adding the declarations to ~/
```shell ```shell
set HTTP_PROXY=http://<proxy hostname:port> set HTTP_PROXY=http://<proxy hostname:port>
set HTTPS_PROXY=https://<proxy hostname:port> set HTTPS_PROXY=https://<proxy hostname:port>
set NO_PROXY=localhost,127.0.0.1,10.96.0.0/12,192.168.99.1/24,192.168.39.0/24 set NO_PROXY=localhost,127.0.0.1,10.96.0.0/12,192.168.99.0/24,192.168.39.0/24
minikube start minikube start
``` ```