From 341eb6980c3a290f3633616bef0f32152a51b41f Mon Sep 17 00:00:00 2001 From: Daniel Pereira Date: Wed, 10 Feb 2021 15:44:28 -0300 Subject: [PATCH] Update cinder directives build file Currently, cinder docker image doesn't contain nfs mount helpers installed, so trying to mount a NFS volume on a cinder-backup container fails. In order to enable support for NFS backend on cinder-backup, we need to install the nfs-utils package on cinder image, so that cinder-backup is able to mount NFS volumes. Task: 41796 Story: 2008613 Change-Id: Ib8e4675069292dc43f98ff55c25626a19ed37b12 Signed-off-by: Daniel Pereira --- openstack/python-cinder/centos/stx-cinder.dev_docker_image | 2 +- openstack/python-cinder/centos/stx-cinder.stable_docker_image | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/openstack/python-cinder/centos/stx-cinder.dev_docker_image b/openstack/python-cinder/centos/stx-cinder.dev_docker_image index 0c2b9050..a0508f33 100644 --- a/openstack/python-cinder/centos/stx-cinder.dev_docker_image +++ b/openstack/python-cinder/centos/stx-cinder.dev_docker_image @@ -2,7 +2,7 @@ BUILDER=loci LABEL=stx-cinder PROJECT=cinder PROJECT_REPO=https://opendev.org/openstack/cinder.git +DIST_PACKAGES="nfs-utils" PIP_PACKAGES="pycrypto python-swiftclient pylint" PROFILES="fluent cinder lvm ceph qemu" PYTHON3=yes - diff --git a/openstack/python-cinder/centos/stx-cinder.stable_docker_image b/openstack/python-cinder/centos/stx-cinder.stable_docker_image index f3c43e47..3de5f830 100644 --- a/openstack/python-cinder/centos/stx-cinder.stable_docker_image +++ b/openstack/python-cinder/centos/stx-cinder.stable_docker_image @@ -3,6 +3,7 @@ LABEL=stx-cinder PROJECT=cinder PROJECT_REPO=https://opendev.org/openstack/cinder.git PROJECT_REF=stable/ussuri +DIST_PACKAGES="nfs-utils" PIP_PACKAGES="pycrypto python-swiftclient pylint" PROFILES="fluent cinder lvm ceph qemu" PYTHON3=yes