Merge "Don't override nfs protocols w/ CephFS"

This commit is contained in:
Zuul
2025-02-26 12:26:51 +00:00
committed by Gerrit Code Review
3 changed files with 8 additions and 2 deletions

View File

@@ -1612,7 +1612,6 @@ class NFSClusterProtocolHelper(NFSProtocolHelperMixin, ganesha.NASHelperBase):
"pseudo": self._get_export_pseudo_path(share, sub_name=sub_name),
"squash": "none",
"security_label": True,
"protocols": [4],
"fsal": {
"name": "CEPH",
"fs_name": self.volname,

View File

@@ -1885,7 +1885,6 @@ class NFSClusterProtocolHelperTestCase(test.TestCase):
"pseudo": "ganesha:/foo/bar",
"squash": "none",
"security_label": True,
"protocols": [4],
"fsal": {
"name": "CEPH",
"fs_name": volname,

View File

@@ -0,0 +1,8 @@
---
fixes:
- |
`Launchpad bug 2099273 <https://bugs.launchpad.net/manila/+bug/2099273>`
has been addressed by removing the NFS protocol override within the
request sent to the Ceph Manager API. This allows users to mount shares
exported by the Ceph NFS service with any NFS protocol version exposed by
that service.