]> git.apps.os.sepia.ceph.com Git - ceph.git/commitdiff
mgr/orch: add mds, rgw, nfs daemon types
authorMichael Fritch <mfritch@suse.com>
Wed, 29 Apr 2020 23:39:47 +0000 (17:39 -0600)
committerMichael Fritch <mfritch@suse.com>
Tue, 5 May 2020 18:54:45 +0000 (12:54 -0600)
$ ceph orch add -i nfs.yaml
Error ENOENT: unknown daemon type `nfs`

Signed-off-by: Michael Fritch <mfritch@suse.com>
src/pybind/mgr/orchestrator/module.py

index 3140de83c7a91210baf86b943f62dc57892dab8f..9120a5a58b99493b593f4491303b88e9e18535d6 100644 (file)
@@ -672,6 +672,12 @@ Usage:
             completion = self.add_node_exporter(spec)
         elif daemon_type == 'prometheus':
             completion = self.add_prometheus(spec)
+        elif daemon_type == 'mds':
+            completion = self.add_mds(spec)
+        elif daemon_type == 'rgw':
+            completion = self.add_rgw(spec)
+        elif daemon_type == 'nfs':
+            completion = self.add_nfs(spec)
         elif daemon_type == 'iscsi':
             completion = self.add_iscsi(spec)
         else: