Skip to content

Commit 50868ec

Browse files
vlad-belogrudovmmalchuk
authored andcommitted
Add multipath to cinder-volume
Cinder-volume container can operate on multipath devices but fails to do so due to absent multipath package for several images. This fix explicitely adds multipath to the image. Closes-Bug: #1970541 Change-Id: I14af40078508b06e46866b77ab200228ec827a0d (cherry picked from commit b9aa913)
1 parent 779aa83 commit 50868ec

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

docker/cinder/cinder-volume/Dockerfile.j2

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ LABEL maintainer="{{ maintainer }}" name="{{ image_name }}" build-date="{{ build
99

1010
{% if base_package_type == 'rpm' %}
1111
{% set cinder_volume_packages = [
12+
'device-mapper-multipath',
1213
'nfs-utils',
1314
'nvmetcli',
1415
'python3-rtslib',
@@ -24,6 +25,7 @@ LABEL maintainer="{{ maintainer }}" name="{{ image_name }}" build-date="{{ build
2425
{% elif base_package_type == 'deb' %}
2526
{% set cinder_volume_packages = [
2627
'lsscsi',
28+
'multipath-tools',
2729
'nfs-common',
2830
'nvme-cli',
2931
'sysfsutils',

0 commit comments

Comments
 (0)