Do not pip install keystoneclient on the host

The keystoneclient package is being installed on the host by PIP but
that means that a whole bunch of required dependencies are being pulled
in as well.

This brings the host to a rather messed up state when installing
keystone from distro packages, since distribution and
PIP packages are being mixed together. We only need the client to
register the service with keystone so we can simply use the distro
package for that to avoid installing lots of PIP packages on the
host.

Change-Id: I1247ae07035451087e70f3e1782dd9c25fe1c554
Implements: blueprint openstack-distribution-packages
This commit is contained in:
Markos Chandras 2018-05-31 08:36:53 +01:00
parent 9474143ed7
commit ba05bf78a0
4 changed files with 3 additions and 1 deletions

View File

@ -126,7 +126,6 @@ ceilometer_keystone_auth_type: password
# ceilometer packages that must be installed before anything else
ceilometer_requires_pip_packages:
- httplib2
- python-keystoneclient # Keystoneclient needed to OSA keystone lib
- virtualenv
# Common pip packages

View File

@ -15,6 +15,7 @@
ceilometer_distro_packages:
- git
- python-keystoneclient # Keystoneclient needed to OSA keystone lib
- rpcbind
- rsync
- which

View File

@ -16,6 +16,7 @@
ceilometer_distro_packages:
- git-core
- python-keystoneclient # Keystoneclient needed to OSA keystone lib
- rpcbind
- rsync
- which

View File

@ -19,6 +19,7 @@ cache_timeout: 600
# Common apt packages
ceilometer_distro_packages:
- git
- python-keystoneclient # Keystoneclient needed to OSA keystone lib
- rpcbind
- rsync