aa59f0db6f
backport: Stein During the switch to Stein UCA, we did not switch all packages to python 3 for Debian/Ubuntu binary images. This change switches some more of those packages. Change-Id: I0bff21384d88ea678608392de2db1ba418c96665 Co-Authored-By: Marcin Juszkiewicz <marcin.juszkiewicz@linaro.org>
41 lines
1.0 KiB
Django/Jinja
41 lines
1.0 KiB
Django/Jinja
FROM {{ namespace }}/{{ image_prefix }}base:{{ tag }}
|
|
LABEL maintainer="{{ maintainer }}" name="{{ image_name }}" build-date="{{ build_date }}"
|
|
|
|
{% block iscsid_header %}{% endblock %}
|
|
|
|
{% import "macros.j2" as macros with context %}
|
|
|
|
{% if base_package_type == 'rpm' %}
|
|
{% set iscsid_packages = [
|
|
'iscsi-initiator-utils',
|
|
'targetcli'
|
|
] %}
|
|
|
|
{% if distro_python_version.startswith('3') %}
|
|
{% set iscsid_packages = iscsid_packages + [
|
|
'python3-rtslib'
|
|
] %}
|
|
{% else %}
|
|
{% set iscsid_packages = iscsid_packages + [
|
|
'python-rtslib'
|
|
] %}
|
|
{% endif %}
|
|
|
|
{% elif base_package_type == 'deb' %}
|
|
{% set iscsid_packages = [
|
|
'open-iscsi',
|
|
'python3-rtslib-fb',
|
|
'targetcli-fb'
|
|
] %}
|
|
|
|
{% endif %}
|
|
|
|
{{ macros.install_packages(iscsid_packages | customizable("packages")) }}
|
|
|
|
COPY extend_start.sh /usr/local/bin/kolla_extend_start
|
|
RUN chmod 755 /usr/local/bin/kolla_extend_start \
|
|
&& rm /etc/iscsi/initiatorname.iscsi
|
|
|
|
{% block iscsid_footer %}{% endblock %}
|
|
{% block footer %}{% endblock %}
|