From 085a3bdc7339d9b45c2129a7f65649ecaa63e334 Mon Sep 17 00:00:00 2001 From: Niels de Vos Date: Thu, 14 Apr 2022 18:27:24 +0200 Subject: [PATCH] doc: use `.nfs` as default pool for NFS-export configs "nfs-ganesha" is the default pool for older Ceph versions, recent versions use ".nfs" (which can not be changed in the CephNFS resource). Signed-off-by: Niels de Vos --- examples/nfs/rook-nfs.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/examples/nfs/rook-nfs.yaml b/examples/nfs/rook-nfs.yaml index 18e230ad9..7c7d09a6a 100644 --- a/examples/nfs/rook-nfs.yaml +++ b/examples/nfs/rook-nfs.yaml @@ -3,12 +3,12 @@ apiVersion: ceph.rook.io/v1 kind: CephNFS metadata: name: my-nfs - namespace: default spec: # For Ceph v15, the rados block is required. It is ignored for Ceph v16. rados: - # Ceph v16 always uses/expects "nfs-ganesha" - pool: nfs-ganesha + # some versions of Ceph v16 always uses/expects "nfs-ganesha" more recent + # versions always use ".nfs" + pool: .nfs # RADOS namespace where NFS client recovery data is stored in the pool. # fixed value for Ceph v16: the name of this CephNFS object namespace: my-nfs