kayobe/ansible/roles/pip/defaults/main.yml
Nick Jones 1ee93450ca Support installing PyPI packages via a mirror
Add the ability to specify a list of users for whom a PyPI mirror should
be configured for commands such as `pip`.  This is accomplished by
installing a couple of configuration files in each user's home directory.

Change-Id: I21304b32c0c686c8dde2e3e1c0d2e2cd07af1eef
Story: 2003315
2018-09-05 08:36:18 +01:00

19 lines
460 B
YAML

---
pip_local_mirror: false
# Users for which the necessary configuration will be put in place in order to
# install PyPI packages from a mirror
# NB: The Kolla user will be automatically added to this list if the above is
# set to true
pip_applicable_users:
- "{{ kayobe_ansible_user }}"
- root
# PyPI local package mirror URL
pip_index_url: ""
# Optional: a list of 'trusted' hosts for which SSL verification will be
# disabled
pip_trusted_hosts: []