f7e18cab31
This patchset contains customization of Dockerfiles of gnocchi containers Change-Id: I39f3cc44664225d3e7cbb735a7b70d5cd0f7ec47 Partially-implements: blueprint third-party-plugin-support
21 lines
660 B
Django/Jinja
21 lines
660 B
Django/Jinja
FROM {{ namespace }}/{{ image_prefix }}gnocchi-base:{{ tag }}
|
|
MAINTAINER {{ maintainer }}
|
|
|
|
{% import "macros.j2" as macros with context %}
|
|
|
|
{% if install_type == 'binary' %}
|
|
{% if base_distro in ['centos', 'fedora', 'oraclelinux', 'rhel'] %}
|
|
{% set gnocchi_metricd_packages = ['openstack-gnocchi-metricd'] %}
|
|
{% elif base_distro in ['ubuntu'] %}
|
|
{% set gnocchi_metricd_packages = ['gnocchi-metricd'] %}
|
|
{% endif %}
|
|
RUN {{ macros.install_packages(gnocchi_metricd_packages | customizable("packages")) }}
|
|
|
|
{% endif %}
|
|
{% block gnocchi_metricd_footer %}{% endblock %}
|
|
{% block footer %}{% endblock %}
|
|
|
|
{{ include_footer }}
|
|
|
|
USER gnocchi
|