1f0afeb3ad
Added neutron-metering-agent container Change-Id: Ie72475a61e557a78ea0099940462a73699963642 Partially-Implements: blueprint support-neutron-metering-agent
23 lines
715 B
Django/Jinja
23 lines
715 B
Django/Jinja
FROM {{ namespace }}/{{ image_prefix }}neutron-base:{{ tag }}
|
|
MAINTAINER {{ maintainer }}
|
|
{% import "macros.j2" as macros with context %}
|
|
|
|
{% if install_type == 'binary' %}
|
|
|
|
{% if base_distro in ['centos', 'fedora', 'oraclelinux', 'rhel'] %}
|
|
{% set neutron_metering_agent_packages = ['openstack-neutron-metering-agent'] %}
|
|
{% elif base_distro in ['ubuntu', 'debian'] %}
|
|
{% set neutron_metering_agent_packages = ['neutron-metering-agent'] %}
|
|
{% endif %}
|
|
|
|
RUN {{ macros.install_packages(neutron_metering_agent_packages | customizable("packages")) }}
|
|
|
|
{% endif %}
|
|
|
|
|
|
{% block neutron_metering_agent_footer %}{% endblock %}
|
|
{% block footer %}{% endblock %}
|
|
{{ include_footer }}
|
|
|
|
USER neutron
|