From 5bd7d3fc7adde6d0f87c6dcb0ce497fd94bf0601 Mon Sep 17 00:00:00 2001 From: wuchunyang Date: Wed, 10 Jun 2020 14:46:06 +0800 Subject: [PATCH] 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 (cherry picked from commit 6d71ac843e85126bfe35c9a39d64c1767d360c74) --- docker/neutron/neutron-openvswitch-agent/Dockerfile.j2 | 1 + docker/openvswitch/openvswitch-base/Dockerfile.j2 | 1 + 2 files changed, 2 insertions(+) diff --git a/docker/neutron/neutron-openvswitch-agent/Dockerfile.j2 b/docker/neutron/neutron-openvswitch-agent/Dockerfile.j2 index 1d41177e81..8d3162e06c 100644 --- a/docker/neutron/neutron-openvswitch-agent/Dockerfile.j2 +++ b/docker/neutron/neutron-openvswitch-agent/Dockerfile.j2 @@ -11,6 +11,7 @@ LABEL maintainer="{{ maintainer }}" name="{{ image_name }}" build-date="{{ build {% if base_package_type == 'rpm' %} {% set neutron_openvswitch_agent_packages = [ + 'libibverbs', 'openstack-neutron-openvswitch', 'openvswitch' ] %} diff --git a/docker/openvswitch/openvswitch-base/Dockerfile.j2 b/docker/openvswitch/openvswitch-base/Dockerfile.j2 index e35544df1a..e1d8a73f36 100644 --- a/docker/openvswitch/openvswitch-base/Dockerfile.j2 +++ b/docker/openvswitch/openvswitch-base/Dockerfile.j2 @@ -11,6 +11,7 @@ LABEL maintainer="{{ maintainer }}" name="{{ image_name }}" build-date="{{ build {% if base_package_type == 'rpm' %} {% set openvswitch_base_packages = [ + 'libibverbs', 'openvswitch', 'python3-netifaces', 'python3-openvswitch',