From da33e18ac83ff4696dcc599f46c12f007ba54856 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rados=C5=82aw=20Piliszek?= Date: Tue, 8 Mar 2022 16:23:26 +0100 Subject: [PATCH] Install glusterfs-client in Debuntu Closes-Bug: #1964140 Change-Id: I4658a06b077d096ab9f2cb5070e39c98b5a27254 --- docker/manila/manila-share/Dockerfile.j2 | 2 ++ releasenotes/notes/bug-1964140-57b433329bab067e.yaml | 6 ++++++ 2 files changed, 8 insertions(+) create mode 100644 releasenotes/notes/bug-1964140-57b433329bab067e.yaml diff --git a/docker/manila/manila-share/Dockerfile.j2 b/docker/manila/manila-share/Dockerfile.j2 index 04ddbf4ec5..68e8534557 100644 --- a/docker/manila/manila-share/Dockerfile.j2 +++ b/docker/manila/manila-share/Dockerfile.j2 @@ -22,6 +22,7 @@ LABEL maintainer="{{ maintainer }}" name="{{ image_name }}" build-date="{{ build {% set manila_share_packages = [ 'manila-share', 'ceph-common', + 'glusterfs-client', 'python3-cephfs', 'python3-rados', 'python3-rbd', @@ -42,6 +43,7 @@ LABEL maintainer="{{ maintainer }}" name="{{ image_name }}" build-date="{{ build {% elif base_package_type == 'deb' %} {% set manila_share_packages = [ 'ceph-common', + 'glusterfs-client', 'python3-cephfs', 'python3-rados', 'python3-rbd', diff --git a/releasenotes/notes/bug-1964140-57b433329bab067e.yaml b/releasenotes/notes/bug-1964140-57b433329bab067e.yaml new file mode 100644 index 0000000000..8869ab6420 --- /dev/null +++ b/releasenotes/notes/bug-1964140-57b433329bab067e.yaml @@ -0,0 +1,6 @@ +--- +fixes: + - | + Installs ``glusterfs-client`` in Debian and Ubuntu ``manila-share`` images + to support GlusterFS across supported distributions. + `LP#1964140 `__