Ceilometer ubuntu binary container

Change-Id: I653b6b994de2f4d374d90a831d7a56eaff667404
Partially-Implements: blueprint binary-ubuntu
This commit is contained in:
MD NADEEM 2016-02-08 11:06:11 +05:30 committed by MD NADEEM
parent e8d66766f0
commit 7a6edb5797
6 changed files with 37 additions and 1 deletions

View File

@ -7,6 +7,12 @@ MAINTAINER {{ maintainer }}
RUN yum install -y openstack-ceilometer-api \
&& yum clean all
{% elif base_distro in ['ubuntu'] %}
RUN apt-get install -y --no-install-recommends \
ceilometer-api \
&& apt-get clean
{% endif %}
{% endif %}

View File

@ -8,6 +8,12 @@ RUN yum -y install \
openstack-ceilometer-common \
&& yum clean all
{% elif base_distro in ['ubuntu'] %}
RUN apt-get install -y --no-install-recommends \
ceilometer-common \
&& apt-get clean
{% endif %}
{% elif install_type == 'source' %}

View File

@ -7,6 +7,12 @@ MAINTAINER {{ maintainer }}
RUN yum install -y openstack-ceilometer-central \
&& yum clean all
{% elif base_distro in ['ubuntu'] %}
RUN apt-get install -y --no-install-recommends \
ceilometer-agent-central \
&& apt-get clean
{% endif %}
{% endif %}

View File

@ -7,6 +7,12 @@ MAINTAINER {{ maintainer }}
RUN yum install -y openstack-ceilometer-collector \
&& yum clean all
{% elif base_distro in ['ubuntu'] %}
RUN apt-get install -y --no-install-recommends \
ceilometer-collector \
&& apt-get clean
{% endif %}
{% endif %}

View File

@ -7,9 +7,15 @@ MAINTAINER {{ maintainer }}
RUN yum install -y \
openstack-ceilometer-compute \
python-ceilometerclient \
python-pecan \
&& yum clean all
{% elif base_distro in ['ubuntu'] %}
RUN apt-get install -y --no-install-recommends \
ceilometer-agent-compute \
python-ceilometerclient \
&& apt-get clean
{% endif %}
{% endif %}

View File

@ -7,6 +7,12 @@ MAINTAINER {{ maintainer }}
RUN yum install -y openstack-ceilometer-notification \
&& yum clean all
{% elif base_distro in ['ubuntu'] %}
RUN apt-get install -y --no-install-recommends \
ceilometer-agent-notification \
&& apt-get clean
{% endif %}
{% endif %}