From e2ce11d9da1d523ae6a154e42a27bb5a1f01dc12 Mon Sep 17 00:00:00 2001 From: Kobi Ginon Date: Mon, 18 May 2026 16:45:32 +0300 Subject: [PATCH] cephadm: disable UDP in samples/nfs.json for test_cephadm Ganesha test_cephadm.sh deploys NFS through cephadm _orch deploy using src/cephadm/samples/nfs.json. That sample is separate from the mgr ganesha.conf.j2 template, which already sets Enable_UDP = false. Without that setting, Ganesha on Rocky 10 (ceph-ci image) fails during startup with "Cannot register NFS V3 on UDP", so test_cephadm.sh never sees ganesha.nfsd listening on port 2049. Add Protocols = 3, 4 and Enable_UDP = false to NFS_CORE_PARAM so the sample matches the orchestrator defaults. Fixes: https://tracker.ceph.com/issues/76295 Signed-off-by: Kobi Ginon --- src/cephadm/samples/nfs.json | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/cephadm/samples/nfs.json b/src/cephadm/samples/nfs.json index 4c52dfa52195..fee16c05ce69 100644 --- a/src/cephadm/samples/nfs.json +++ b/src/cephadm/samples/nfs.json @@ -4,6 +4,8 @@ "files": { "ganesha.conf": [ "NFS_CORE_PARAM {", + " Protocols = 3, 4;", + " Enable_UDP = false;", " allow_set_io_flusher_fail = true;", "}", "", -- 2.47.3