From ad2fc108d3263df3a0938486d628f579f98d8819 Mon Sep 17 00:00:00 2001 From: CraigSterrett Date: Thu, 24 Oct 2019 00:44:05 -0700 Subject: [PATCH] Added .svc to no_proxy (#235) Added .svc to the no_proxy in setup_system.sh to keep Kubernetes service requests from being routed to the proxy. This fixes and issue that Humberto was seeing in his testing. 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 2b68b4d..9d43c8c 100755 --- a/clr-k8s-examples/setup_system.sh +++ b/clr-k8s-examples/setup_system.sh @@ -8,7 +8,7 @@ CLRK8S_OS=${CLRK8S_OS:-""} HIGH_POD_COUNT=${HIGH_POD_COUNT:-""} # set no proxy -ADD_NO_PROXY="10.244.0.0/16,10.96.0.0/12" +ADD_NO_PROXY=".svc,10.244.0.0/16,10.96.0.0/12" ADD_NO_PROXY+=",$(hostname -I | sed 's/[[:space:]]/,/g')" : "${RUNNER:=crio}"