Skip to content
Snippets Groups Projects
Commit fd6bfd32 authored by MD NADEEM's avatar MD NADEEM
Browse files

Aodh ubuntu binary container

Change-Id: I636e6954855a8f94d5ea15216d892c1bff53b7a8
Partially-Implements: blueprint binary-ubuntu
parent 9376751d
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