summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorjose.lausuch <jose.lausuch@ericsson.com>2016-02-25 13:13:07 +0100
committerMorgan Richomme <morgan.richomme@orange.com>2016-02-25 12:36:50 +0000
commit4d23c1afb0257596cf05c7aa8e25242759c55d07 (patch)
treea90be74b8938563d8f69c58c37dc32150fd28b88
parent7c2d0b417b9781e5180ed7fac2396b65e0d2a35f (diff)
Add Proxy section in the config guidebrahmaputra.1.0
Change-Id: I887ef72d3298c83bc623f478de9e4317827d91d0 Signed-off-by: jose.lausuch <jose.lausuch@ericsson.com> (cherry picked from commit c5e191cabe0a8215ed3975fb5c06c1cb15fdb158)
-rw-r--r--docs/configguide/configguide.rst28
1 files changed, 28 insertions, 0 deletions
diff --git a/docs/configguide/configguide.rst b/docs/configguide/configguide.rst
index bc66d3856..7f4ac86c5 100644
--- a/docs/configguide/configguide.rst
+++ b/docs/configguide/configguide.rst
@@ -251,5 +251,33 @@ from the repository to your current directory and run the container with a volum
However, this is not recommended since most of the test cases rely on static
parameters read from this file, and changing them might cause problems.
+
+Proxy support
+-------------
+
+Functest needs internet access to download some resources for some test cases.
+For example to install the Rally environment. This might not work properly if
+the Jumphost is running through a Proxy.
+
+If that is the case, make sure the resolv.conf and the needed proxy environment
+variables are properly set::
+
+ export http_proxy=<your http proxy settings>
+ export https_proxy=<your https proxy settings>
+
+Or refer to the official Docker documentation for Proxy_ settings.
+
+Before running **prepare_env.sh** make sure you can ping http and https sites
+inside the container. For example::
+
+ nc -v google.com 80
+ Connection to google.com 80 port [tcp/http] succeeded!
+
+ nc -v google.com 443
+ Connection to google.com 443 port [tcp/https] succeeded!
+
+
+
.. _dockerdocs: https://docs.docker.com/
.. _dockerhub: https://hub.docker.com/r/opnfv/functest/
+.. _Proxy: https://docs.docker.com/engine/admin/systemd/#http-proxy