Cinder ubuntu binary container

Change-Id: Idfdeee030441a61e5bb1936dea9e5e84c243f156
Partially-Implements: blueprint binary-ubuntu
This commit is contained in:
Artur Zarzycki 2016-01-12 12:39:44 +01:00
parent e8e8a9a2ab
commit 29d39b338e
5 changed files with 41 additions and 0 deletions

View File

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

View File

@ -1,6 +1,16 @@
FROM {{ namespace }}/{{ image_prefix }}cinder-base:{{ tag }}
MAINTAINER {{ maintainer }}
{% if install_type == 'binary' %}
{% if base_distro in ['ubuntu'] %}
RUN apt-get install -y --no-install-recommends \
cinder-backup \
&& apt-get clean
{% endif %}
{% endif %}
{{ include_footer }}
USER cinder

View File

@ -11,6 +11,15 @@ RUN yum -y install openstack-cinder \
ceph-common \
python-oslo-policy \
&& yum clean all \
&& mkdir -p /etc/ceph
{% elif base_distro in ['ubuntu'] %}
RUN apt-get install -y --no-install-recommends \
cinder-common \
ceph-common \
lvm2 \
&& apt-get clean \
&& mkdir -p /etc/ceph
{% endif %}

View File

@ -1,6 +1,16 @@
FROM {{ namespace }}/{{ image_prefix }}cinder-base:{{ tag }}
MAINTAINER {{ maintainer }}
{% if install_type == 'binary' %}
{% if base_distro in ['ubuntu'] %}
RUN apt-get install -y --no-install-recommends \
cinder-scheduler \
&& apt-get clean
{% endif %}
{% endif %}
{{ include_footer }}
USER cinder

View File

@ -9,6 +9,12 @@ RUN yum install -y \
scsi-target-utils \
&& yum clean all
{% elif base_distro in ['ubuntu'] %}
RUN apt-get install -y --no-install-recommends \
cinder-volume \
&& apt-get clean
{% endif %}
{% endif %}