e5903d5fa9
include_header and include_footer parameter is already removed, remove them in all Dockerfiles. Add missing footer block. Change-Id: I90da03eb9f95a3827361d5f5ede65fde7d6be2b3
36 lines
959 B
Django/Jinja
36 lines
959 B
Django/Jinja
FROM {{ namespace }}/{{ image_prefix }}ironic-base:{{ tag }}
|
|
MAINTAINER {{ maintainer }}
|
|
|
|
{% block ironic_pxe_header %}{% endblock %}
|
|
|
|
{% import "macros.j2" as macros with context %}
|
|
|
|
{% if base_distro in ['centos', 'oraclelinux', 'rhel'] %}
|
|
{% set ironic_pxe_packages = [
|
|
'tftp-server',
|
|
'syslinux-tftpboot',
|
|
'httpd',
|
|
'ipxe-bootimgs',
|
|
'mod_wsgi'
|
|
] %}
|
|
{% elif base_distro in ['ubuntu', 'debian'] %}
|
|
{% set ironic_pxe_packages = [
|
|
'tftpd-hpa',
|
|
'syslinux-common',
|
|
'syslinux',
|
|
'pxelinux',
|
|
'apache2',
|
|
'ipxe',
|
|
'libapache2-mod-wsgi'
|
|
] %}
|
|
{% endif %}
|
|
|
|
{{ macros.install_packages(ironic_pxe_packages | customizable("packages")) }}
|
|
|
|
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 %}
|