Trove ubuntu binary container

Change-Id: I6c49a4c4da3cf6c67778ea9ef310432e93b25a8a
Partially-Implements: blueprint binary-ubuntu
This commit is contained in:
MD NADEEM 2016-02-17 13:17:40 +05:30 committed by MD NADEEM
parent 6e622fa534
commit 94a79b1652
5 changed files with 30 additions and 0 deletions

View File

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

View File

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

View File

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

View File

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

View File

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