Add database clients to Monasca persister container

The Monasca persister supports persisting to InfluxDB,
Elasticsearch and Cassandra. We need python clients
for these repositores to support this.

Change-Id: I563913d5cd4fb779d2a475f39e0f34d0a92edee7
Partially-Implements: blueprint monasca-containers
This commit is contained in:
Doug Szumski 2018-07-10 11:39:20 +01:00
parent 932f31593a
commit 4b2d130e94
1 changed files with 4 additions and 1 deletions

View File

@ -15,7 +15,10 @@ RUN echo '{{ install_type }} not yet available for {{ base_distro }}' \
ADD monasca-persister-archive /monasca-persister-source
{% set monasca_persister_pip_packages = [
'/monasca-persister'
'/monasca-persister',
'influxdb',
'elasticsearch',
'cassandra-driver'
] %}
RUN ln -s monasca-persister-source/* monasca-persister \