Files
kolla/docker/openvswitch/openvswitch-base/Dockerfile.j2
wuchunyang 6d71ac843e add libibverbs package for openvswitch
ovs images which based on centos miss libibverbs package.
this ps add the package to neutron-ovs-agent and ovs-base
images.
Closes-Bug: 1882863

Change-Id: I3e307efc43f934a944a91d5d131a11f607411df2
2020-06-10 14:56:41 +08:00

40 lines
1.1 KiB
Django/Jinja

FROM {{ namespace }}/{{ image_prefix }}base:{{ tag }}
{% block labels %}
LABEL maintainer="{{ maintainer }}" name="{{ image_name }}" build-date="{{ build_date }}"
{% endblock %}
{% block openvswitch_base_header %}{% endblock %}
{% import "macros.j2" as macros with context %}
{% block ovs_install %}
{% if base_package_type == 'rpm' %}
{% set openvswitch_base_packages = [
'libibverbs',
'openvswitch',
'python3-netifaces',
'python3-openvswitch',
'tcpdump'
] %}
{% elif base_package_type == 'deb' %}
{% set openvswitch_base_packages = [
'openvswitch-switch',
'python3-openvswitch',
'python3-netifaces',
'tcpdump'
] %}
{% endif %}
{{ macros.install_packages(openvswitch_base_packages | customizable("packages")) }}
{% endblock %}
COPY extend_start.sh /usr/local/bin/kolla_extend_start
RUN mv /usr/sbin/tcpdump /usr/bin/tcpdump \
&& touch /usr/local/bin/kolla_openvswitch_extend_start \
&& chmod 755 /usr/local/bin/kolla_extend_start /usr/local/bin/kolla_openvswitch_extend_start
{% block openvswitch_base_footer %}{% endblock %}