d436001b43
Commit 43b74ccc15
enabled use of Python 3
based packages but not switched to use Python 3.
Some of images still contain Python 2. There are two reasons:
- Ceph (ceph-common depends on Py2)
- python3-ldappool on Ubuntu 18.04
In Ceph situation Py3 packages were added. For second one we can not do
anything - Py2 dependency got dropped in Ubuntu 18.10 version.
Removed neutron-server-plugin-networking-infoblox due to being not
maintained. Once https://review.opendev.org/#/c/657578/ get merged
someone may revert that part.
Implements: blueprint debian-ubuntu-python3
Depends-on: Ie2a1077f7def0743f1403341985e2109aa490026
Change-Id: Ibfe0c2b8be98db56c61f74fb0247488ab3749ef4
147 lines
4.8 KiB
Django/Jinja
147 lines
4.8 KiB
Django/Jinja
FROM {{ namespace }}/{{ image_prefix }}openstack-base:{{ tag }}
|
|
LABEL maintainer="{{ maintainer }}" name="{{ image_name }}" build-date="{{ build_date }}"
|
|
|
|
{% block nova_base_header %}{% endblock %}
|
|
|
|
{% import "macros.j2" as macros with context %}
|
|
|
|
{{ macros.configure_user(name='nova', groups='qemu') }}
|
|
|
|
{% if install_type == 'binary' %}
|
|
{% if base_package_type == 'rpm' %}
|
|
|
|
{% set nova_base_packages = [
|
|
'openstack-nova-common',
|
|
'openvswitch'
|
|
] %}
|
|
|
|
{% if base_arch == 'x86_64' %}
|
|
{% if base_distro in ['centos', 'oraclelinux', 'rhel'] and base_distro_tag.startswith('7') %}
|
|
{% set nova_base_packages = nova_base_packages + [
|
|
'OVMF'
|
|
] %}
|
|
{% endif %}
|
|
{% elif base_arch == 'aarch64' %}
|
|
{% if base_distro in ['centos', 'oraclelinux', 'rhel'] and base_distro_tag.startswith('7') %}
|
|
{% set nova_base_packages = nova_base_packages + [
|
|
'AAVMF'
|
|
] %}
|
|
{% endif %}
|
|
{% elif base_arch == 'ppc64le' %}
|
|
{# NOTE(Jeffrey4l): no packages for ppc64le #}
|
|
{% endif %}
|
|
|
|
{% elif base_package_type == 'deb' %}
|
|
|
|
{% set nova_base_packages = [
|
|
'nova-common',
|
|
'openvswitch-switch',
|
|
'python3-nova'
|
|
] %}
|
|
|
|
{% if base_arch == 'x86_64' %}
|
|
{% set nova_base_packages = nova_base_packages + [
|
|
'ovmf'
|
|
] %}
|
|
{% elif base_arch == 'aarch64' %}
|
|
{% set nova_base_packages = nova_base_packages + [
|
|
'qemu-efi',
|
|
] %}
|
|
{% elif base_arch == 'ppc64le' %}
|
|
{# NOTE(Jeffrey4l): no packages for ppc64le #}
|
|
{% endif %}
|
|
{% endif %}
|
|
|
|
{{ macros.install_packages(nova_base_packages | customizable("packages")) }}
|
|
|
|
{% elif install_type == 'source' %}
|
|
{% if base_package_type == 'rpm' %}
|
|
|
|
{% set nova_base_packages = [
|
|
'openvswitch'
|
|
] %}
|
|
{% if base_arch == 'x86_64' %}
|
|
{% if base_distro in ['centos', 'oraclelinux', 'rhel'] and base_distro_tag.startswith('7') %}
|
|
{% set nova_base_packages = nova_base_packages + [
|
|
'OVMF'
|
|
] %}
|
|
{% endif %}
|
|
{% elif base_arch == 'aarch64' %}
|
|
{% if base_distro in ['centos', 'oraclelinux', 'rhel'] and base_distro_tag.startswith('7') %}
|
|
{% set nova_base_packages = nova_base_packages + [
|
|
'AAVMF'
|
|
] %}
|
|
{% endif %}
|
|
{% elif base_arch == 'ppc64le' %}
|
|
{# NOTE(Jeffrey4l): no packages for ppc64le #}
|
|
{% endif %}
|
|
|
|
{% elif base_package_type == 'deb' %}
|
|
|
|
{% set nova_base_packages = [
|
|
'dnsmasq',
|
|
'ebtables',
|
|
'iproute2',
|
|
'iptables',
|
|
'openssh-client',
|
|
'openvswitch-switch',
|
|
'python3-libvirt'
|
|
] %}
|
|
{% if base_arch == 'x86_64' %}
|
|
{% set nova_base_packages = nova_base_packages + [
|
|
'ovmf'
|
|
] %}
|
|
{% elif base_arch == 'aarch64' %}
|
|
{% set nova_base_packages = nova_base_packages + [
|
|
'qemu-efi',
|
|
] %}
|
|
{% elif base_arch == 'ppc64le' %}
|
|
{# NOTE(Jeffrey4l): no packages for ppc64le #}
|
|
{% endif %}
|
|
|
|
{% endif %}
|
|
|
|
{{ macros.install_packages(nova_base_packages | customizable("packages")) }}
|
|
|
|
ADD nova-base-archive /nova-base-source
|
|
ADD plugins-archive /
|
|
|
|
{% set nova_base_pip_packages = [
|
|
'/nova'
|
|
] %}
|
|
|
|
{% set nova_base_plugins_pip_packages = [
|
|
'/plugins/*'
|
|
] %}
|
|
|
|
RUN ln -s nova-base-source/* nova \
|
|
&& {{ macros.install_pip(nova_base_pip_packages | customizable("pip_packages")) }} \
|
|
&& mkdir -p /etc/nova/ \
|
|
&& cp -r /nova/etc/nova/* /etc/nova/ \
|
|
&& chown -R nova: /etc/nova/ \
|
|
&& 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/nova/rootwrap.conf \
|
|
&& if [ "$(ls /plugins)" ]; then \
|
|
{{ macros.install_pip(nova_base_plugins_pip_packages) }}; \
|
|
fi
|
|
|
|
COPY nova_sudoers /etc/sudoers.d/kolla_nova_sudoers
|
|
RUN chmod 750 /etc/sudoers.d \
|
|
&& chmod 440 /etc/sudoers.d/kolla_nova_sudoers
|
|
|
|
{% endif %}
|
|
|
|
|
|
{% if base_package_type == 'rpm' %}
|
|
{% if base_arch == 'x86_64' %}
|
|
# NOTE(jeffrey4l): for x86_64, nova will validate the existence of /usr/share/OVMF/OVMF_CODE.fd
|
|
RUN ln -sf /usr/share/OVMF/OVMF_CODE.secboot.fd /usr/share/OVMF/OVMF_CODE.fd
|
|
{% endif %}
|
|
{% endif %}
|
|
|
|
COPY extend_start.sh /usr/local/bin/kolla_extend_start
|
|
|
|
RUN touch /usr/local/bin/kolla_nova_extend_start \
|
|
&& chmod 755 /usr/local/bin/kolla_extend_start /usr/local/bin/kolla_nova_extend_start
|
|
|
|
{% block nova_base_footer %}{% endblock %}
|