From bf6b466b55e5a9602e5b75ba8e226cbe2dcb040e Mon Sep 17 00:00:00 2001 From: Corey Bryant Date: Thu, 24 Feb 2022 12:25:20 -0500 Subject: [PATCH] Use snapshot_support=True for manila share type The extra specs of a manila share type need to match the share service's capabilities. [1] [1] https://docs.openstack.org/manila/pike/admin/shared-file-systems-troubleshoot.html#id2 Closes-Bug: #1962204 --- zaza/openstack/charm_tests/manila_ganesha/setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zaza/openstack/charm_tests/manila_ganesha/setup.py b/zaza/openstack/charm_tests/manila_ganesha/setup.py index a804958..c4edd97 100644 --- a/zaza/openstack/charm_tests/manila_ganesha/setup.py +++ b/zaza/openstack/charm_tests/manila_ganesha/setup.py @@ -42,5 +42,5 @@ def setup_ganesha_share_type(manila_client=None): extra_specs={ 'vendor_name': 'Ceph', 'storage_protocol': 'NFS', - 'snapshot_support': False, + 'snapshot_support': True, })