Various fixes to the proxy default conf and doc

Default configuration:
 * Include internal and external VIPs in no_proxy_env
 * Set lower case environment variables as well, as some programs may
   not understand the upper case ones

Documentation:
 * Explain the no_proxy environment variable
 * Added the no_proxy environment variable in the example
 * Removed pip_install_options: "--proxy [...]" from the example as it
   is not needed when using environment variables

Change-Id: Iae8b320b27525ec2592687fee42c3d605d36d093
This commit is contained in:
Adrien Cunin 2016-05-19 10:05:56 +02:00
parent 0984490358
commit 0cdaa5c039
2 changed files with 12 additions and 4 deletions

View File

@ -98,6 +98,12 @@ affect:
- `wget`
- `openstack`
Use the ``no_proxy`` environment variable to specify hosts that you cannot
reach through the proxy. These often are the hosts in the management network.
In the example below, ``no_proxy`` is set to localhost only, but the default
configuration file suggests using variables to list all the hosts/containers'
management addresses as well as the load balancer internal/external addresses.
Configuration changes are made in ``/etc/openstack_deploy/user_variables.yml``.
.. code-block:: yaml
@ -106,11 +112,10 @@ Configuration changes are made in ``/etc/openstack_deploy/user_variables.yml``.
global_environment_variables:
HTTP_PROXY: "http://proxy.example.com:3128"
HTTPS_PROXY: "http://proxy.example.com:3128"
NO_PROXY: "localhost,127.0.0.1"
http_proxy: "http://proxy.example.com:3128"
https_proxy: "http://proxy.example.com:3128"
# pip needs proxies specified as well
pip_install_options: "--proxy http://proxy.example.com:3128"
no_proxy: "localhost,127.0.0.1"
``apt-get`` proxy configuration
-------------------------------

View File

@ -131,11 +131,14 @@ verbose: false
## Example environment variable setup:
# proxy_env_url: http://username:pa$$w0rd@10.10.10.9:9000/
# no_proxy_env: "localhost,127.0.0.1,{% for host in groups['all_containers'] %}{{ hostvars[host]['container_address'] }}{% if not loop.last %},{% endif %}{% endfor %}"
# no_proxy_env: "localhost,127.0.0.1,{{ internal_lb_vip_address }},{{ external_lb_vip_address }},{% for host in groups['all_containers'] %}{{ hostvars[host]['container_address'] }}{% if not loop.last %},{% endif %}{% endfor %}"
# global_environment_variables:
# HTTP_PROXY: "{{ proxy_env_url }}"
# HTTPS_PROXY: "{{ proxy_env_url }}"
# NO_PROXY: "{{ no_proxy_env }}"
# http_proxy: "{{ proxy_env_url }}"
# https_proxy: "{{ proxy_env_url }}"
# no_proxy: "{{ no_proxy_env }}"
## SSH connection wait time