Added neutron-metering-agent
Added neutron-metering-agent container Change-Id: Ie72475a61e557a78ea0099940462a73699963642 Partially-Implements: blueprint support-neutron-metering-agent
This commit is contained in:
parent
f4a9667767
commit
1f0afeb3ad
22
docker/neutron/neutron-metering-agent/Dockerfile.j2
Normal file
22
docker/neutron/neutron-metering-agent/Dockerfile.j2
Normal file
@ -0,0 +1,22 @@
|
||||
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
|
Loading…
Reference in New Issue
Block a user