Add gnocchi-statsd support for Debian systems
The current Docker container for gnocchi-statsd is missing support for Ubuntu and will fail on start due to missing gnocchi-statsd package. Dockerfile extended by the required gnocchi-statsd package. Closes-Bug: #1700513 Change-Id: I0c5d221f08ae7f1c4a81f83a5ec3fb75e5207b2b
This commit is contained in:
parent
a974fb216f
commit
acf613e91a
@ -8,6 +8,8 @@ LABEL maintainer="{{ maintainer }}" name="{{ image_name }}" build-date="{{ build
|
|||||||
{% if install_type == 'binary' %}
|
{% if install_type == 'binary' %}
|
||||||
{% if base_distro in ['centos', 'oraclelinux', 'rhel'] %}
|
{% if base_distro in ['centos', 'oraclelinux', 'rhel'] %}
|
||||||
{% set gnocchi_statsd_packages = ['openstack-gnocchi-statsd'] %}
|
{% set gnocchi_statsd_packages = ['openstack-gnocchi-statsd'] %}
|
||||||
|
{% elif base_distro in ['ubuntu'] %}
|
||||||
|
{% set gnocchi_statsd_packages = ['gnocchi-statsd'] %}
|
||||||
{% endif %}
|
{% endif %}
|
||||||
{{ macros.install_packages(gnocchi_statsd_packages | customizable("packages")) }}
|
{{ macros.install_packages(gnocchi_statsd_packages | customizable("packages")) }}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user