Nova ubuntu binary container
Change-Id: I1bb609dc4d77250c45ffa7e00ea603d24cbcfd6e Partially-Implements: blueprint binary-ubuntu
This commit is contained in:
parent
6fcde0dab1
commit
91d3c57fd1
@ -7,6 +7,13 @@ MAINTAINER {{ maintainer }}
|
||||
RUN yum -y install openstack-nova-api \
|
||||
&& yum clean all
|
||||
|
||||
{% elif base_distro in ['ubuntu'] %}
|
||||
|
||||
RUN apt-get install -y --no-install-recommends \
|
||||
nova-api \
|
||||
python-memcache \
|
||||
&& apt-get clean
|
||||
|
||||
{% endif %}
|
||||
{% endif %}
|
||||
|
||||
|
@ -15,6 +15,14 @@ RUN yum -y install \
|
||||
bridge-utils \
|
||||
&& yum clean all
|
||||
|
||||
{% elif base_distro in ['ubuntu'] %}
|
||||
|
||||
RUN apt-get install -y --no-install-recommends \
|
||||
nova-common \
|
||||
python-nova \
|
||||
bridge-utils \
|
||||
&& apt-get clean
|
||||
|
||||
{% endif %}
|
||||
{% elif install_type == 'source' %}
|
||||
{% if base_distro in ['centos', 'fedora', 'oraclelinux', 'rhel'] %}
|
||||
|
@ -8,6 +8,12 @@ RUN yum -y install \
|
||||
openstack-nova-compute \
|
||||
&& yum clean all
|
||||
|
||||
{% elif base_distro in ['ubuntu'] %}
|
||||
|
||||
RUN apt-get install -y --no-install-recommends \
|
||||
nova-compute \
|
||||
&& apt-get clean
|
||||
|
||||
{% endif %}
|
||||
{% endif %}
|
||||
|
||||
|
@ -11,6 +11,18 @@ RUN yum -y install \
|
||||
ceph-common \
|
||||
&& yum clean all
|
||||
|
||||
{% elif base_distro in ['ubuntu'] %}
|
||||
|
||||
# ironic as workaround https://bugs.launchpad.net/packstack/+bug/1430388
|
||||
RUN apt-get install -y --no-install-recommends \
|
||||
nova-compute \
|
||||
openvswitch-switch \
|
||||
sysfsutils \
|
||||
ceph-common \
|
||||
ironic-common \
|
||||
python-ironicclient \
|
||||
&& apt-get clean
|
||||
|
||||
{% endif %}
|
||||
{% elif install_type == 'source' %}
|
||||
{% if base_distro in ['centos', 'fedora', 'oraclelinux', 'rhel'] %}
|
||||
|
@ -7,6 +7,12 @@ MAINTAINER {{ maintainer }}
|
||||
RUN yum -y install openstack-nova-conductor \
|
||||
&& yum clean all
|
||||
|
||||
{% elif base_distro in ['ubuntu'] %}
|
||||
|
||||
RUN apt-get install -y --no-install-recommends \
|
||||
nova-conductor \
|
||||
&& apt-get clean
|
||||
|
||||
{% endif %}
|
||||
{% endif %}
|
||||
|
||||
|
@ -7,6 +7,13 @@ MAINTAINER {{ maintainer }}
|
||||
RUN yum -y install openstack-nova-console \
|
||||
&& yum clean all
|
||||
|
||||
{% elif base_distro in ['ubuntu'] %}
|
||||
|
||||
RUN apt-get install -y --no-install-recommends \
|
||||
nova-consoleauth \
|
||||
python-memcache \
|
||||
&& apt-get clean
|
||||
|
||||
{% endif %}
|
||||
{% endif %}
|
||||
|
||||
|
@ -10,6 +10,12 @@ RUN yum -y install \
|
||||
initscripts \
|
||||
&& yum clean all
|
||||
|
||||
{% elif base_distro in ['ubuntu'] %}
|
||||
|
||||
RUN apt-get install -y --no-install-recommends \
|
||||
nova-network \
|
||||
&& apt-get clean
|
||||
|
||||
{% endif %}
|
||||
{% elif install_type == 'source' %}
|
||||
{% if base_distro in ['centos', 'fedora', 'oraclelinux', 'rhel'] %}
|
||||
|
@ -9,6 +9,12 @@ RUN yum -y install \
|
||||
openstack-nova-novncproxy \
|
||||
&& yum clean all
|
||||
|
||||
{% elif base_distro in ['ubuntu'] %}
|
||||
|
||||
RUN apt-get install -y --no-install-recommends \
|
||||
nova-novncproxy \
|
||||
&& apt-get clean
|
||||
|
||||
{% endif %}
|
||||
{% elif install_type == 'source' %}
|
||||
|
||||
|
@ -7,6 +7,12 @@ MAINTAINER {{ maintainer }}
|
||||
RUN yum -y install openstack-nova-scheduler \
|
||||
&& yum clean all
|
||||
|
||||
{% elif base_distro in ['ubuntu'] %}
|
||||
|
||||
RUN apt-get install -y --no-install-recommends \
|
||||
nova-scheduler \
|
||||
&& apt-get clean
|
||||
|
||||
{% endif %}
|
||||
{% endif %}
|
||||
|
||||
|
@ -7,6 +7,12 @@ MAINTAINER {{ maintainer }}
|
||||
RUN yum -y install openstack-nova-spicehtml5proxy \
|
||||
&& yum clean all
|
||||
|
||||
{% elif base_distro in ['ubuntu'] %}
|
||||
|
||||
RUN apt-get install -y --no-install-recommends \
|
||||
nova-spiceproxy \
|
||||
&& apt-get clean
|
||||
|
||||
{% endif %}
|
||||
{% elif install_type == 'source' %}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user