Merge "docs(install): add note about vpn and vagrant commands behind proxy"

This commit is contained in:
Zuul 2021-03-11 22:11:13 +00:00 committed by Gerrit Code Review
commit 99da4eafe0
2 changed files with 14 additions and 0 deletions

View File

@ -31,6 +31,10 @@ To easily set up the Vagrant box's proxy setting, install the `vagrant_proxyconf
$ vagrant plugin install vagrant-proxyconf
.. note::
Executing the above command behind a proxy requiring a certificate will require the ``SSL_CERT_FILE`` environment variable to
be defined and pointing at a file that may be used to trust the proxy.
``NO_PROXY`` Configuration
==========================
@ -55,5 +59,10 @@ Installation
With the appropriate environment variables set, follow instruction :ref:`here <aio-installation>`.
.. note::
If running behind a proxy that requires a certificate, define ``CURL_CA_BUNDLE`` environment variable
pointing at a file that may be used to trust the proxy when running ``vagrant up``,
so that vagrant may successfully download the Vagrant box.
.. _vagrant_proxyconf: http://tmatilai.github.io/vagrant-proxyconf/
.. _documentation: https://minikube.sigs.k8s.io/docs/handbook/vpn_and_proxy/

View File

@ -67,3 +67,8 @@ To access the exposed Jarvis services in the Vagrant box, update the
.. note:: Replace ``jarvis.local`` with the appropriate host and domain name if
those are overwritten.
If using a corporate VPN, then port forwarding is recommended. Instead of using ``192.168.56.10`` above, use ``127.0.0.1``. After running
``vagrant up``, open VirtualBox. Select the created VM. Click "Settings." Select the "Network" tab. Expand the "Advanced" section. Click the "Port Forwarding"
button. Add a new Port Forwarding Rule. Specify a host port of ``443`` and a guest port of ``443``. Click "Ok" to close "Port Forwarding Rules." Click "Ok" again
to close "Settings." Now, the above services should be accessible via a web browser once ``vagrant up`` is successful.