Removed pip requirements from the repo-server role

The pip requirements in this role are not needed to stand up the
repo-server. Being that they're not required they should be removed.
The needed bits used to build the python wheels will be re-added to
the repo-build role where it can leverage the cloned upstream upper
constraints file from the openstack global requirements repo.

Change-Id: I16cd9c3b00b4bcf886da1d31c69d19f49c46969f
Signed-off-by: Kevin Carter <kevin.carter@rackspace.com>
This commit is contained in:
Kevin Carter 2016-02-25 13:26:42 -06:00
parent 660f3373e6
commit 0c0b03b498
No known key found for this signature in database
GPG Key ID: 69FEFFC5E2D9273F
2 changed files with 0 additions and 24 deletions

View File

@ -80,16 +80,5 @@ repo_apt_packages:
- vlan
- uuid-dev
repo_pip_packages:
- cloudlib
- PyCrypto
- python-memcached
- PyYAML
- requests
- turbolift
- wheel
- virtualenv
- virtualenv-tools
# Main web server port
repo_server_port: 8181

View File

@ -41,16 +41,3 @@
with_items: repo_apt_packages
tags:
- repo-apt-packages
- name: Install pip packages
pip:
name: "{{ item }}"
state: present
extra_args: "{{ pip_install_options|default('') }}"
register: install_packages
until: install_packages|success
retries: 5
delay: 5
with_items: repo_pip_packages
tags:
- repo-pip-packages