From: Kobi Ginon Date: Mon, 18 May 2026 13:45:32 +0000 (+0300) Subject: cephadm: disable UDP in samples/nfs.json for test_cephadm Ganesha X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=e2ce11d9da1d523ae6a154e42a27bb5a1f01dc12;p=ceph.git 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 --- 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;", "}", "",