
This change updates the docker files to use base_package_type instead of doing specific distro checks for the rhel/deb generic cases. The base_distro is still available and is used when a specific distro needs a customization but if the differences are purely rpm vs deb, then the base_package_type can be used. Change-Id: I8d720bb185df65a0178061ccf20b1ab2265da2c5
65 lines
1.8 KiB
Django/Jinja
65 lines
1.8 KiB
Django/Jinja
FROM {{ namespace }}/{{ image_prefix }}ironic-base:{{ tag }}
|
|
LABEL maintainer="{{ maintainer }}" name="{{ image_name }}" build-date="{{ build_date }}"
|
|
|
|
{% block ironic_pxe_header %}{% endblock %}
|
|
|
|
{% import "macros.j2" as macros with context %}
|
|
|
|
{% if base_package_type == 'rpm' %}
|
|
{% set ironic_pxe_packages = [
|
|
'httpd',
|
|
'ipxe-bootimgs',
|
|
'mod_ssl',
|
|
'mod_wsgi',
|
|
'tftp-server'
|
|
] %}
|
|
|
|
{% if base_arch == 'x86_64' %}
|
|
{% set ironic_pxe_packages = ironic_pxe_packages + [
|
|
'syslinux-tftpboot'
|
|
] %}
|
|
{% endif %}
|
|
|
|
{% if base_arch == 'aarch64' %}
|
|
ENV ironic_arch=aarch64
|
|
{% set ironic_pxe_packages = ironic_pxe_packages + [
|
|
'grub2-efi',
|
|
'grub2-efi-aa64-modules'
|
|
] %}
|
|
{% endif %}
|
|
|
|
{{ macros.install_packages(ironic_pxe_packages | customizable("packages")) }}
|
|
RUN sed -i -r 's,^(Listen 80),#\1,' /etc/httpd/conf/httpd.conf \
|
|
&& sed -i -r 's,^(Listen 443),#\1,' /etc/httpd/conf.d/ssl.conf
|
|
{% elif base_package_type == 'deb' %}
|
|
{% set ironic_pxe_packages = [
|
|
'apache2',
|
|
'ipxe',
|
|
'libapache2-mod-wsgi',
|
|
'pxelinux',
|
|
'syslinux-common',
|
|
'tftpd-hpa'
|
|
] %}
|
|
|
|
{% if base_arch == 'x86_64' %}
|
|
{% set ironic_pxe_packages = ironic_pxe_packages + [
|
|
'syslinux'
|
|
] %}
|
|
{% elif base_arch == 'aarch64' %}
|
|
ENV ironic_arch=aarch64
|
|
{% set ironic_pxe_packages = ironic_pxe_packages + [
|
|
'grub-efi-arm64'
|
|
] %}
|
|
{% endif %}
|
|
|
|
{{ macros.install_packages(ironic_pxe_packages | customizable("packages")) }}
|
|
RUN echo > /etc/apache2/ports.conf
|
|
{% endif %}
|
|
|
|
COPY tftp-map-file /map-file
|
|
COPY extend_start.sh /usr/local/bin/kolla_ironic_extend_start
|
|
RUN chmod 755 /usr/local/bin/kolla_ironic_extend_start
|
|
|
|
{% block ironic_pxe_footer %}{% endblock %}
|
|
{% block footer %}{% endblock %}
|