a3b043af10
The cinder-volume package is not installed in the cinder-volume container anymore for the Ubuntu binary install. It is still there in stable/mitaka but got lost at I7fb48c954e578772b90a2aa619c8bcfa990b3ae8 Co-Authored-By: Jeffrey Zhang <jeffrey.zhang@99cloud.net> Change-Id: Icf086b241403c1f9098f70d902484b0c565457d0 Closes-Bug: #1603361
41 lines
992 B
Django/Jinja
41 lines
992 B
Django/Jinja
FROM {{ namespace }}/{{ image_prefix }}cinder-base:{{ tag }}
|
|
MAINTAINER {{ maintainer }}
|
|
|
|
{% if base_distro in ['centos', 'fedora', 'oraclelinux', 'rhel'] %}
|
|
|
|
RUN yum -y install \
|
|
scsi-target-utils \
|
|
&& yum clean all
|
|
|
|
RUN sed -i '1 i include /var/lib/cinder/volumes/*' /etc/tgt/tgtd.conf
|
|
|
|
{% elif base_distro in ['ubuntu', 'debian'] %}
|
|
|
|
RUN apt-get -y install --no-install-recommends \
|
|
tgt \
|
|
&& apt-get clean
|
|
|
|
RUN sed -i '1 i include /var/lib/cinder/volumes/*' /etc/tgt/targets.conf
|
|
|
|
{% endif %}
|
|
{% if install_type == 'binary' %}
|
|
{% if base_distro in ['ubuntu', 'debian'] %}
|
|
|
|
RUN apt-get -y install --no-install-recommends \
|
|
cinder-volume \
|
|
&& apt-get clean
|
|
|
|
{% endif %}
|
|
{% endif %}
|
|
|
|
COPY cinder_sudoers /etc/sudoers.d/cinder_sudoers
|
|
COPY extend_start.sh /usr/local/bin/kolla_extend_start
|
|
|
|
RUN chmod 750 /etc/sudoers.d \
|
|
&& chmod 440 /etc/sudoers.d/cinder_sudoers \
|
|
&& chmod 755 /usr/local/bin/kolla_extend_start
|
|
|
|
{{ include_footer }}
|
|
|
|
USER cinder
|