Allow the repo-build to index utility pip packages

This change moves the list of utility packages to a var file
which will allow the repo-build and py_pkgs lookup plugin to
index the packages and correctly build any wheels being
required by the playbook.

Change-Id: I38264c82008c1016aab5bb789c3c765e443f233c
Signed-off-by: Kevin Carter <kevin.carter@rackspace.com>
This commit is contained in:
Kevin Carter 2016-08-15 15:45:33 -05:00 committed by Jesse Pretorius (odyssey4me)
parent 5dcfd6ac50
commit ea7e218d76
2 changed files with 16 additions and 14 deletions

View File

@ -23,3 +23,19 @@ galera_client_drop_config_file: true
# Ensure that the package state matches the global setting
utility_package_state: "{{ package_state }}"
# Python packages to be installed into the utility container
utility_pip_packages:
- gnocchiclient
- python-openstackclient
- python-ceilometerclient
- python-cinderclient
- python-glanceclient
- python-heatclient
- python-keystoneclient
- python-neutronclient
- python-novaclient
- python-ironicclient
- python-swiftclient
- python-memcached
- pycrypto

View File

@ -97,18 +97,4 @@
- git
utility_yum_packages:
- git
utility_pip_packages:
- python-openstackclient
- python-ceilometerclient
- python-cinderclient
- python-glanceclient
- python-heatclient
- python-keystoneclient
- python-neutronclient
- python-novaclient
- python-ironicclient
- python-swiftclient
- gnocchiclient
- python-memcached
- pycrypto
is_metal: "{{ properties.is_metal|default(false) }}"