kolla/docker/iscsid/Dockerfile.j2
Michal Nasiadka 82ee1e6319 Add support for CentOS Stream 9
This changeset adds support for CentOS Stream 9.

Depends-On: https://review.opendev.org/c/openstack/kolla-ansible/+/864920

Change-Id: I113b9984294cf8663d3fc0c8840320e1d40ea731
(cherry picked from commit 878b00013b)
2023-02-17 06:28:58 +00:00

35 lines
956 B
Django/Jinja

FROM {{ namespace }}/{{ infra_image_prefix }}base:{{ tag }}
{% block labels %}
LABEL maintainer="{{ maintainer }}" name="{{ image_name }}" build-date="{{ build_date }}"
{% endblock %}
{% block iscsid_header %}{% endblock %}
{% import "macros.j2" as macros with context %}
{% if base_package_type == 'rpm' %}
{% set iscsid_packages = [
'iscsi-initiator-utils',
'python3-rtslib',
'targetcli'
] %}
{% 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
# NOTE(hrw): CentOS Stream 9 lacks initiatorname.iscsi file
RUN chmod 644 /usr/local/bin/kolla_extend_start \
&& rm -f /etc/iscsi/initiatorname.iscsi
{% block iscsid_footer %}{% endblock %}
{% block footer %}{% endblock %}