From 54adf53cdd9aba9a47151a2ad40558fbe4d4961c Mon Sep 17 00:00:00 2001 From: CraigSterrett Date: Thu, 14 Nov 2019 11:18:59 -0800 Subject: [PATCH] Adding non-routable IPs to no_proxy (#270) Adding non-routable IPs to the no_proxy, non-routable addresses will never go out the proxy, and are used as internal IPs by VM's running cloud-native setup. Without the addition of the IP's in no_proxy, kubernetes nodes will not be able to communicate to the Kubernetes IP as the traffic will be routed out the proxy server. Signed-off-by: Craig Sterrett --- clr-k8s-examples/setup_system.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/clr-k8s-examples/setup_system.sh b/clr-k8s-examples/setup_system.sh index 91c99ab..0005563 100755 --- a/clr-k8s-examples/setup_system.sh +++ b/clr-k8s-examples/setup_system.sh @@ -9,7 +9,7 @@ CLR_VER=${CLRK8S_CLR_VER:-""} HIGH_POD_COUNT=${HIGH_POD_COUNT:-""} # set no proxy -ADD_NO_PROXY=".svc,10.244.0.0/16,10.96.0.0/12" +ADD_NO_PROXY=".svc,10.0.0.0/8,192.168.0.0/16" ADD_NO_PROXY+=",$(hostname -I | sed 's/[[:space:]]/,/g')" : "${RUNNER:=crio}"