Skip to content
Snippets Groups Projects
Commit dd17fc26 authored by Jenkins's avatar Jenkins Committed by Gerrit Code Review
Browse files

Merge "Aodh ubuntu binary container"

parents 79ecb882 fd6bfd32
No related branches found
No related tags found
No related merge requests found
......@@ -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 %}
......
......@@ -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' %}
......
......@@ -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 %}
......
......@@ -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 %}
......
......@@ -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 %}
......
......@@ -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 %}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment