53443c5c71
With the move to RHEL/CentOS 8 we no longer have Python 2 in our images so there is no need for checking which Python version (2.x or 3.x) is used inside of containers. We also no longer have to support yum as a value for distro_package_manager. Partially-Implements: blueprint centos-rhel-8 Change-Id: Ie45cf3465fedddbde7856961527421883ba3d5c9
64 lines
1.7 KiB
Django/Jinja
64 lines
1.7 KiB
Django/Jinja
FROM {{ namespace }}/{{ image_prefix }}cinder-base:{{ tag }}
|
|
{% block labels %}
|
|
LABEL maintainer="{{ maintainer }}" name="{{ image_name }}" build-date="{{ build_date }}"
|
|
{% endblock %}
|
|
|
|
{% block cinder_volume_header %}{% endblock %}
|
|
|
|
{% import "macros.j2" as macros with context %}
|
|
|
|
{% if base_package_type == 'rpm' %}
|
|
{% set cinder_volume_packages = [
|
|
'nfs-utils',
|
|
'nvmetcli',
|
|
'python3-rtslib',
|
|
'python3-cinderlib',
|
|
'sysfsutils',
|
|
'targetcli'
|
|
] %}
|
|
{{ macros.install_packages(cinder_volume_packages | customizable("packages")) }}
|
|
|
|
{% block cinder_volume_redhat_setup %}
|
|
{% endblock %}
|
|
|
|
{% elif base_package_type == 'deb' %}
|
|
{% set cinder_volume_packages = [
|
|
'nfs-common',
|
|
'sysfsutils',
|
|
'python3-rtslib-fb',
|
|
'targetcli-fb',
|
|
'thin-provisioning-tools',
|
|
'tgt'
|
|
] %}
|
|
|
|
{{ macros.install_packages(cinder_volume_packages | customizable("packages")) }}
|
|
|
|
{% block cinder_volume_ubuntu_setup %}
|
|
RUN sed -i '1 i include /var/lib/cinder/volumes/*' /etc/tgt/targets.conf
|
|
{% endblock %}
|
|
|
|
{% endif %}
|
|
|
|
{% if install_type == 'binary' %}
|
|
{% if base_package_type == 'deb' %}
|
|
{% set cinder_volume_packages = [
|
|
'cinder-volume',
|
|
] %}
|
|
|
|
{{ macros.install_packages(cinder_volume_packages | customizable("packages")) }}
|
|
{% endif %}
|
|
|
|
{% endif %}
|
|
|
|
COPY cinder_sudoers /etc/sudoers.d/kolla_cinder_volume_sudoers
|
|
COPY extend_start.sh /usr/local/bin/kolla_cinder_extend_start
|
|
|
|
RUN chmod 750 /etc/sudoers.d \
|
|
&& chmod 440 /etc/sudoers.d/kolla_cinder_volume_sudoers \
|
|
&& chmod 755 /usr/local/bin/kolla_cinder_extend_start
|
|
|
|
{% block cinder_volume_footer %}{% endblock %}
|
|
{% block footer %}{% endblock %}
|
|
|
|
USER cinder
|