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 <ndevos@redhat.com>
This commit is contained in:
Niels de Vos 2022-04-14 18:27:24 +02:00 committed by mergify[bot]
parent 1818529a4c
commit 085a3bdc73

View File

@ -3,12 +3,12 @@ apiVersion: ceph.rook.io/v1
kind: CephNFS kind: CephNFS
metadata: metadata:
name: my-nfs name: my-nfs
namespace: default
spec: spec:
# For Ceph v15, the rados block is required. It is ignored for Ceph v16. # For Ceph v15, the rados block is required. It is ignored for Ceph v16.
rados: rados:
# Ceph v16 always uses/expects "nfs-ganesha" # some versions of Ceph v16 always uses/expects "nfs-ganesha" more recent
pool: nfs-ganesha # versions always use ".nfs"
pool: .nfs
# RADOS namespace where NFS client recovery data is stored in the pool. # RADOS namespace where NFS client recovery data is stored in the pool.
# fixed value for Ceph v16: the name of this CephNFS object # fixed value for Ceph v16: the name of this CephNFS object
namespace: my-nfs namespace: my-nfs