Skip to content

Commit 5ca0d94

Browse files
authored
Merge pull request #220 from stackhpc/upstream/xena-2023-05-01
Synchronise xena with upstream
2 parents 43a9f6e + ab72fd7 commit 5ca0d94

File tree

2 files changed

+8
-3
lines changed

2 files changed

+8
-3
lines changed

docker/glance/glance-api/Dockerfile.j2

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,13 @@ LABEL maintainer="{{ maintainer }}" name="{{ image_name }}" build-date="{{ build
88
{% import "macros.j2" as macros with context %}
99

1010
{% if base_package_type == 'rpm' %}
11-
{% set glance_api_packages = ['qemu-img'] %}
11+
{% set glance_api_packages = [
12+
'device-mapper-multipath',
13+
'qemu-img'
14+
] %}
1215
{% elif base_package_type == 'deb' %}
1316
{% set glance_api_packages = [
17+
'multipath-tools',
1418
'nfs-common',
1519
'qemu-utils'
1620
] %}

docker/ovsdpdk/ovsdpdk/Dockerfile.j2

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,9 @@ RUN echo 'image not yet available for {{ base_distro }}' \
1919
{% elif base_package_type == 'deb' %}
2020

2121
{% set ovs_dpdk_packages = [
22-
'openvswitch-switch-dpdk',
23-
'crudini'
22+
'crudini',
23+
'libdpdk-dev',
24+
'openvswitch-switch-dpdk'
2425
] %}
2526

2627
{{ macros.install_packages(ovs_dpdk_packages | customizable("packages")) }}

0 commit comments

Comments
 (0)