Merge "Enable usage of no_proxy on install"

This commit is contained in:
Jenkins 2017-08-11 15:14:06 +00:00 committed by Gerrit Code Review
commit 944bcf0ba5
3 changed files with 8 additions and 2 deletions

View File

@ -176,8 +176,8 @@ to set ``create_image_via_dib`` to ``true``.
``/etc/httpboot/ipa.initramfs``.
If you are running the installation behind a proxy, export the
environment variables ``http_proxy`` and ``https_proxy`` so that
ansible will use these proxy settings.
environment variables ``http_proxy``, ``https_proxy`` and ``no_proxy``
so that ansible will use these proxy settings.
Installing
----------

View File

@ -27,3 +27,4 @@
environment:
http_proxy: "{{ lookup('env','http_proxy') }}"
https_proxy: "{{ lookup('env','https_proxy') }}"
no_proxy: "{{ lookup('env', 'no_proxy') }}"

View File

@ -0,0 +1,5 @@
---
fixes:
- |
Supports passing ``no_proxy`` environment variable to Ansible, users
can use ``no_proxy`` to exclude specified hosts from using proxy.