4108c6c6ec
Change-Id: I13c50a78b2dc7c98b720a4b2e7161104213bd295 Implements: bp ansible-ceilometer
44 lines
1.2 KiB
Django/Jinja
44 lines
1.2 KiB
Django/Jinja
FROM {{ namespace }}/{{ image_prefix }}ceilometer-base:{{ tag }}
|
|
MAINTAINER {{ maintainer }}
|
|
|
|
{% if install_type == 'binary' %}
|
|
{% if base_distro in ['centos', 'fedora', 'oraclelinux', 'rhel'] %}
|
|
|
|
RUN yum -y install \
|
|
openstack-ceilometer-compute \
|
|
python-ceilometerclient \
|
|
&& yum clean all
|
|
|
|
{% elif base_distro in ['ubuntu', 'debian'] %}
|
|
|
|
RUN apt-get -y install --no-install-recommends \
|
|
ceilometer-agent-compute \
|
|
python-ceilometerclient \
|
|
&& apt-get clean
|
|
|
|
{% endif %}
|
|
{% elif install_type == 'source' %}
|
|
{% if base_distro in ['centos', 'fedora', 'oraclelinux', 'rhel'] %}
|
|
|
|
RUN yum -y install \
|
|
libvirt-devel \
|
|
&& yum clean all
|
|
|
|
{% elif base_distro in ['ubuntu', 'debian'] %}
|
|
|
|
RUN apt-get -y install --no-install-recommends \
|
|
libvirt-dev \
|
|
&& apt-get clean
|
|
|
|
{% endif %}
|
|
|
|
RUN /var/lib/kolla/venv/bin/pip --no-cache-dir install --upgrade -c requirements/upper-constraints.txt libvirt-python
|
|
|
|
{% endif %}
|
|
|
|
{{ include_footer }}
|
|
|
|
# NOTE(huikang): non-root user does not work with libvirt.sock.
|
|
# Need configuration in nova-libvirt container to allow
|
|
# USER ceilometer to access libvirt.sock
|