From 7a25d3d5c94f6a9d94c7edb1ff41a06f5d5596db Mon Sep 17 00:00:00 2001 From: Tin Lam Date: Fri, 12 Jan 2018 14:01:36 -0600 Subject: [PATCH] Update doc on proxy This patchset adds in additional note to allow users to use the OpenStack client to connect to the services without the connection routed to the proxy, if one exists. Change-Id: I8360b1e90d8c0cce6abe7bdc27d71d86427450c4 Signed-off-by: Tin Lam --- doc/source/troubleshooting/proxy.rst | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/doc/source/troubleshooting/proxy.rst b/doc/source/troubleshooting/proxy.rst index e5ac31d739..3e3439bd2f 100644 --- a/doc/source/troubleshooting/proxy.rst +++ b/doc/source/troubleshooting/proxy.rst @@ -9,7 +9,8 @@ internet. Proxy Environment Variables =========================== -Ensure the following proxy environment variables are defined: +Ensure the following proxy environment variables are defined either through +an rc file or through modifying ``/etc/environment``. .. code-block:: shell @@ -17,8 +18,12 @@ Ensure the following proxy environment variables are defined: export HTTP_PROXY="http://username:passwrd@host:port" export https_proxy="https://username:passwrd@host:port" export HTTPS_PROXY="https://username:passwrd@host:port" - export no_proxy="127.0.0.1,localhost" - export NO_PROXY="127.0.0.1,localhost" + export no_proxy="127.0.0.1,localhost,.svc.cluster.local" + export NO_PROXY="127.0.0.1,localhost,.svc.cluster.local" + +Note the ``.svc.cluster.local`` is needed to allow the OpenStack client +to connect without routing the connection to the proxy. Please update to the +appropriate domain name if you have a different configuration. External DNS ============