Merge "Ironic ubuntu binary container"

This commit is contained in:
Jenkins 2016-01-22 10:16:53 +00:00 committed by Gerrit Code Review
commit 18d536c868
4 changed files with 23 additions and 2 deletions

View File

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

View File

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

View File

@ -7,6 +7,14 @@ MAINTAINER {{ maintainer }}
RUN yum -y install openstack-ironic-conductor \
&& yum clean all
{% elif base_distro in ['ubuntu'] %}
RUN apt-get install -y --no-install-recommends \
ironic-conductor \
qemu-utils \
ipmitool \
&& apt-get clean
{% endif %}
{% elif install_type == 'source' %}
{% if base_distro in ['centos', 'fedora', 'oraclelinux', 'rhel'] %}
@ -14,8 +22,7 @@ RUN yum -y install openstack-ironic-conductor \
RUN yum -y install ipmitool \
&& yum clean all
{% endif %}
{% if base_distro in ['ubuntu', 'debian'] %}
{% elif base_distro in ['ubuntu', 'debian'] %}
RUN apt-get install -y --no-install-recommends \
qemu-utils \

View File

@ -14,6 +14,8 @@ RUN apt-get install -y --no-install-recommends \
nova-compute \
&& apt-get clean
RUN rm /etc/nova/nova-compute.conf
{% endif %}
{% endif %}