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
82 lines
2.6 KiB
Django/Jinja
82 lines
2.6 KiB
Django/Jinja
FROM {{ namespace }}/{{ image_prefix }}openstack-base:{{ tag }}
|
|
{% block labels %}
|
|
LABEL maintainer="{{ maintainer }}" name="{{ image_name }}" build-date="{{ build_date }}"
|
|
{% endblock %}
|
|
|
|
{% block cinder_base_header %}{% endblock %}
|
|
|
|
{% import "macros.j2" as macros with context %}
|
|
|
|
{{ macros.configure_user(name='cinder') }}
|
|
|
|
{{ macros.enable_extra_repos(['ceph']) }}
|
|
|
|
{% if install_type == 'binary' %}
|
|
{% if base_package_type == 'rpm' %}
|
|
{% set cinder_base_packages = [
|
|
'ceph-common',
|
|
'lvm2',
|
|
'cryptsetup',
|
|
'openstack-cinder',
|
|
'python3-automaton',
|
|
'python3-oslo-vmware'
|
|
] %}
|
|
{% elif base_package_type == 'deb' %}
|
|
{% set cinder_base_packages = [
|
|
'ceph-common',
|
|
'cinder-common',
|
|
'lvm2',
|
|
'cryptsetup',
|
|
'python3-cephfs',
|
|
'python3-oslo.vmware',
|
|
'python3-rados',
|
|
'python3-rbd'
|
|
] %}
|
|
{% endif %}
|
|
{{ macros.install_packages(cinder_base_packages | customizable("packages")) }}
|
|
|
|
{% elif install_type == 'source' %}
|
|
{% if base_package_type == 'rpm' %}
|
|
{% set cinder_base_packages = [
|
|
'ceph-common',
|
|
'cryptsetup',
|
|
'lvm2',
|
|
'qemu-img'
|
|
] %}
|
|
{% elif base_package_type == 'deb' %}
|
|
{% set cinder_base_packages = [
|
|
'ceph-common',
|
|
'lvm2',
|
|
'cryptsetup',
|
|
'python3-cephfs',
|
|
'python3-rados',
|
|
'python3-rbd',
|
|
'qemu-utils'
|
|
] %}
|
|
{% endif %}
|
|
{{ macros.install_packages(cinder_base_packages | customizable("packages")) }}
|
|
|
|
{% set cinder_base_pip_packages = [
|
|
'/cinder'
|
|
] %}
|
|
|
|
ADD cinder-base-archive /cinder-base-source
|
|
RUN ln -s cinder-base-source/* cinder \
|
|
&& {{ macros.install_pip(cinder_base_pip_packages | customizable("pip_packages")) }} \
|
|
&& mkdir -p /etc/cinder \
|
|
&& cp -r /cinder/etc/cinder/* /etc/cinder/ \
|
|
&& chown -R cinder: /etc/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
|
|
|
|
{% endif %}
|
|
|
|
COPY cinder_sudoers /etc/sudoers.d/kolla_cinder_sudoers
|
|
COPY extend_start.sh /usr/local/bin/kolla_extend_start
|
|
|
|
RUN chmod 750 /etc/sudoers.d \
|
|
&& chmod 440 /etc/sudoers.d/kolla_cinder_sudoers \
|
|
&& touch /usr/local/bin/kolla_cinder_extend_start \
|
|
&& chmod 755 /usr/local/bin/kolla_extend_start /usr/local/bin/kolla_cinder_extend_start
|
|
|
|
{% block cinder_base_footer %}{% endblock %}
|