]> git.apps.os.sepia.ceph.com Git - ceph.git/commitdiff
doc/mgr/nfs: Add commands to check the statuses 45843/head
authorRamana Raja <rraja@redhat.com>
Sun, 10 Apr 2022 18:21:24 +0000 (14:21 -0400)
committerRamana Raja <rraja@redhat.com>
Wed, 27 Apr 2022 16:12:36 +0000 (12:12 -0400)
.. of NFS and ingress services after creating/deleting a NFS cluster.
The `nfs cluster info` command is not sufficient to show that the
NFS cluster is created/deleted as expected.

Signed-off-by: Ramana Raja <rraja@redhat.com>
doc/mgr/nfs.rst

index 777e2ee8173b20cda0e62f59d47d7eaed6de52c4..a30bd2db13340219a13bc111259dd481dca86e83 100644 (file)
@@ -76,6 +76,17 @@ service.
 For more details, refer :ref:`orchestrator-cli-placement-spec` but keep
 in mind that specifying the placement via a YAML file is not supported.
 
+Deployment of NFS daemons and the ingress service is asynchronous: the
+command may return before the services have completely started. You may
+wish to check that these services do successfully start and stay running.
+When using cephadm orchestration, these commands check service status:
+
+.. code:: bash
+
+    $ ceph orch ls --service_name=nfs.<cluster_id>
+    $ ceph orch ls --service_name=ingress.nfs.<cluster_id>
+
+
 Ingress
 -------
 
@@ -128,6 +139,18 @@ Delete NFS Ganesha Cluster
 
 This deletes the deployed cluster.
 
+
+Removal of NFS daemons and the ingress service is asynchronous: the
+command may return before the services have been completely deleted. You may
+wish to check that these services are no longer reported. When using cephadm
+orchestration, these commands check service status:
+
+.. code:: bash
+
+    $ ceph orch ls --service_name=nfs.<cluster_id>
+    $ ceph orch ls --service_name=ingress.nfs.<cluster_id>
+
+
 Updating an NFS Cluster
 -----------------------