9d3f3f28e2
This creates and moves the dependencies for Ubuntu into a common openstack-base container. This commit shows dramatically smaller sizes for all non-openstack containers. The Openstack container remain the same size. Change-Id: I2f46420d4b9edcfddda374caddcce906fc708f6c Partially-Implements: blueprint openstack-common-container
50 lines
1.6 KiB
Django/Jinja
50 lines
1.6 KiB
Django/Jinja
FROM {{ namespace }}/{{ base_distro }}-{{ install_type }}-openstack-base:{{ tag }}
|
|
MAINTAINER Kolla Project (https://launchpad.net/kolla)
|
|
|
|
{% if install_type == 'binary' %}
|
|
{% if base_distro in ['fedora', 'centos', 'oraclelinux'] %}
|
|
|
|
RUN yum -y install openstack-cinder \
|
|
python-automaton \
|
|
lvm2 \
|
|
&& yum clean all \
|
|
&& sed -i "s|udev_rules = 1|udev_rules = 0|g" /etc/lvm/lvm.conf \
|
|
&& sed -i "s|udev_sync = 1|udev_sync = 0|g" /etc/lvm/lvm.conf
|
|
|
|
# NOTE(sdake): The sed operations make LVM tools work inside a container - see
|
|
# https://groups.google.com/forum/#!topic/docker-user/n4Xtvsb4RAw
|
|
|
|
{% elif base_distro in ['ubuntu', 'debian'] %}
|
|
|
|
RUN echo '{{ install_type }} not yet available for {{ base_distro }}' \
|
|
&& /bin/false
|
|
|
|
{% endif %}
|
|
{% elif install_type == 'source' %}
|
|
{% if base_distro in ['fedora', 'centos', 'oraclelinux'] %}
|
|
|
|
RUN yum -y install lvm2 \
|
|
&& yum clean all
|
|
|
|
{% elif base_distro in ['ubuntu', 'debian'] %}
|
|
|
|
RUN apt-get install -y --no-install-recommends lvm2 \
|
|
&& apt-get clean
|
|
|
|
{% endif %}
|
|
|
|
ADD cinder-base.tar /
|
|
RUN ln -s /cinder-* cinder \
|
|
&& useradd --user-group cinder \
|
|
&& pip --no-cache-dir install /cinder \
|
|
&& mkdir -p /etc/cinder /var/log/cinder /home/cinder \
|
|
&& cp -r /cinder/etc/cinder/* /etc/cinder/ \
|
|
&& chown -R cinder: /etc/cinder /var/log/cinder /home/cinder \
|
|
&& sed -i "s|udev_rules = 1|udev_rules = 0|g" /etc/lvm/lvm.conf \
|
|
&& sed -i "s|udev_sync = 1|udev_sync = 0|g" /etc/lvm/lvm.conf
|
|
|
|
# NOTE(sdake): The sed operations make LVM tools work inside a container - see
|
|
# https://groups.google.com/forum/#!topic/docker-user/n4Xtvsb4RAw
|
|
|
|
{% endif %}
|