e9a64b589e
The python-cinder package now pulls the required dependency on
python-oslo-policy:
a22f32c619/openstack-cinder.spec (L143)
TrivialFix
Change-Id: I504546e75b5a237fc4aac89bd9a5c34f09570817
59 lines
1.7 KiB
Django/Jinja
59 lines
1.7 KiB
Django/Jinja
FROM {{ namespace }}/{{ image_prefix }}openstack-base:{{ tag }}
|
|
MAINTAINER {{ maintainer }}
|
|
|
|
{% if install_type == 'binary' %}
|
|
{% if base_distro in ['centos', 'fedora', 'oraclelinux', 'rhel'] %}
|
|
|
|
RUN yum -y install openstack-cinder \
|
|
python-automaton \
|
|
lvm2 \
|
|
ceph-common \
|
|
&& 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 %}
|
|
{% elif install_type == 'source' %}
|
|
{% if base_distro in ['centos', 'fedora', 'oraclelinux', 'rhel'] %}
|
|
|
|
RUN yum -y install \
|
|
lvm2 \
|
|
qemu-img \
|
|
&& yum clean all
|
|
|
|
{% elif base_distro in ['ubuntu', 'debian'] %}
|
|
|
|
RUN apt-get install -y --no-install-recommends \
|
|
lvm2 \
|
|
qemu-utils \
|
|
ceph-common \
|
|
&& apt-get clean \
|
|
&& mkdir -p /etc/ceph
|
|
|
|
{% endif %}
|
|
|
|
ADD cinder-base-archive /cinder-base-source
|
|
RUN ln -s cinder-base-source/* cinder \
|
|
&& useradd --user-group cinder \
|
|
&& /var/lib/kolla/venv/bin/pip --no-cache-dir install --upgrade -c requirements/upper-constraints.txt /cinder \
|
|
&& mkdir -p /etc/cinder /var/log/cinder /var/lib/cinder /home/cinder \
|
|
&& cp -r /cinder/etc/cinder/* /etc/cinder/ \
|
|
&& chown -R cinder: /etc/cinder /var/log/cinder /var/lib/cinder /home/cinder \
|
|
&& sed -i 's|^exec_dirs.*|exec_dirs=/var/lib/kolla/venv/bin,/sbin,/usr/sbin,/bin,/usr/bin,/usr/local/bin,/usr/local/sbin|g' /etc/cinder/rootwrap.conf
|
|
|
|
COPY cinder_sudoers /etc/sudoers.d/cinder_sudoers
|
|
RUN chmod 750 /etc/sudoers.d \
|
|
&& chmod 440 /etc/sudoers.d/cinder_sudoers
|
|
|
|
{% endif %}
|
|
|
|
RUN usermod -a -G kolla cinder
|