31259fa595
centos based images have wrong label info, these changes fix own image's name and build-date. Change-Id: I1d13f8f386c8db12b5fbe5f8ecbbf9e3fbb4ba1c Closes-Bug: #1680341
21 lines
746 B
Django/Jinja
21 lines
746 B
Django/Jinja
FROM {{ namespace }}/{{ image_prefix }}gnocchi-base:{{ tag }}
|
|
LABEL maintainer="{{ maintainer }}" name="{{ image_name }}" build-date="{{ build_date }}"
|
|
|
|
{% block gnocchi_metricd_header %}{% endblock %}
|
|
|
|
{% import "macros.j2" as macros with context %}
|
|
|
|
{% if install_type == 'binary' %}
|
|
{% if base_distro in ['centos', 'oraclelinux', 'rhel'] %}
|
|
{% set gnocchi_metricd_packages = ['openstack-gnocchi-metricd'] %}
|
|
{% elif base_distro in ['debian', 'ubuntu'] %}
|
|
{% set gnocchi_metricd_packages = ['gnocchi-metricd'] %}
|
|
{% endif %}
|
|
{{ macros.install_packages(gnocchi_metricd_packages | customizable("packages")) }}
|
|
|
|
{% endif %}
|
|
{% block gnocchi_metricd_footer %}{% endblock %}
|
|
{% block footer %}{% endblock %}
|
|
|
|
USER gnocchi
|