diff options
author | Victor Morales <victor.morales@intel.com> | 2017-08-14 15:43:16 -0500 |
---|---|---|
committer | Victor Morales <victor.morales@intel.com> | 2017-08-14 15:55:52 -0500 |
commit | a07962208510841a03b26606d78631f509b36d39 (patch) | |
tree | 3fe81d98422f69d31ed02194b382c6dd623652d7 /bootstrap/vagrant-onap/doc | |
parent | d1c03409f28c32d8cb0a97d4311b58907729998e (diff) |
Move proxy and default documentation
It was moved the information about to setup the usage of proxy
and the configuration of Vagrant default provider into the
setup installation guide.
Change-Id: I0f5c006ebd97346f05da06efdc6ef19555eef6d2
Issue-Id: INT-96
Signed-off-by: Victor Morales <victor.morales@intel.com>
Diffstat (limited to 'bootstrap/vagrant-onap/doc')
-rw-r--r-- | bootstrap/vagrant-onap/doc/source/index.rst | 2 | ||||
-rw-r--r-- | bootstrap/vagrant-onap/doc/source/install/index.rst | 33 |
2 files changed, 34 insertions, 1 deletions
diff --git a/bootstrap/vagrant-onap/doc/source/index.rst b/bootstrap/vagrant-onap/doc/source/index.rst index 509f3483f..2daccedda 100644 --- a/bootstrap/vagrant-onap/doc/source/index.rst +++ b/bootstrap/vagrant-onap/doc/source/index.rst @@ -11,7 +11,7 @@ using different providers like VirtualBox, Libvirt or OpenStack. __ https://wiki.onap.org/display/DW/ONAP+on+Vagrant -Advanced features +Table of contents ----------------- .. toctree:: diff --git a/bootstrap/vagrant-onap/doc/source/install/index.rst b/bootstrap/vagrant-onap/doc/source/install/index.rst index 248c956bb..6691b4f0d 100644 --- a/bootstrap/vagrant-onap/doc/source/install/index.rst +++ b/bootstrap/vagrant-onap/doc/source/install/index.rst @@ -61,3 +61,36 @@ Windows 7+ (PowerShell v2+) PS C:\> choco install virtualbox .. end + +.. note:: + + Some corporations use Proxy Servers to protect their assets + from security threats. This project uses the Proxy Environment + variables to connect to those servers in order to download the + content required during the setup. The methods to setup these + variables depends on the Operating system that is used. + + * Linux or Mac OS + + .. code-block:: console + + $ export http_proxy=<proxy> + $ export https_proxy=<proxy> + $ export no_proxy=<no_proxy_urls> + + .. end + + * Windows + + .. code-block:: console + + C:\> setx http_proxy <proxy> + C:\> setx https_proxy <proxy> + C:\> setx no_proxy <no_proxy_urls> + + .. end + +.. note:: + + Vagrant can be configured to use a different default provider + through the environment variable **VAGRANT_DEFAULT_PROVIDER**. |