From 5ddd1f60839c0a1c01abcb55417a1fb6a19fdca6 Mon Sep 17 00:00:00 2001 From: Goutham Pacha Ravi Date: Mon, 10 Aug 2020 16:38:28 -0700 Subject: [PATCH] Fix glusterfs config option The manila glusterfs option "glusterfs_native_path_to_private_key" is a deprecated name for "glusterfs_path_to_private_key" [1] and the fallback is being removed in manila. [2] [1] https://opendev.org/openstack/manila/src/commit/99725abba1a7b0182e36dff761a1920153afbf3f/manila/share/drivers/glusterfs/common.py#L41-L42 [2] https://review.opendev.org/745206/ Change-Id: I8e2eb3e0a19aa7968ad5a6a49272e70b47b063b8 Signed-off-by: Goutham Pacha Ravi --- .../modules/packstack/manifests/manila/backend/glusternative.pp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packstack/puppet/modules/packstack/manifests/manila/backend/glusternative.pp b/packstack/puppet/modules/packstack/manifests/manila/backend/glusternative.pp index c385d31b5..f41086e91 100644 --- a/packstack/puppet/modules/packstack/manifests/manila/backend/glusternative.pp +++ b/packstack/puppet/modules/packstack/manifests/manila/backend/glusternative.pp @@ -2,7 +2,7 @@ class packstack::manila::backend::glusternative () { manila::backend::glusternative{ 'glusternative': glusterfs_servers => hiera('CONFIG_MANILA_GLUSTERFS_SERVERS'), - glusterfs_native_path_to_private_key => hiera('CONFIG_MANILA_GLUSTERFS_NATIVE_PATH_TO_PRIVATE_KEY'), + glusterfs_path_to_private_key => hiera('CONFIG_MANILA_GLUSTERFS_NATIVE_PATH_TO_PRIVATE_KEY'), glusterfs_volume_pattern => hiera('CONFIG_MANILA_GLUSTERFS_VOLUME_PATTERN'), }