Merge "Aodh ubuntu binary container"

This commit is contained in:
Jenkins 2016-02-19 16:21:15 +00:00 committed by Gerrit Code Review
commit dd17fc26d6
6 changed files with 36 additions and 0 deletions

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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