Ironic ubuntu binary container

Change-Id: I94ef03c11657d36261f3ddc63056422f84ec2c6a
Partially-Implements: blueprint binary-ubuntu
This commit is contained in:
Andrey Shestakov 2016-01-14 18:34:12 +02:00
parent dfead6d683
commit ccc2ad57eb
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 %}