From: Michael Fritch Date: Wed, 29 Apr 2020 23:39:47 +0000 (-0600) Subject: mgr/orch: add mds, rgw, nfs daemon types X-Git-Tag: v15.2.4~73^2~55 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=bb409d369769f73ef4eefc2fe026f905a57f4e6b;p=ceph.git mgr/orch: add mds, rgw, nfs daemon types $ ceph orch add -i nfs.yaml Error ENOENT: unknown daemon type `nfs` Signed-off-by: Michael Fritch (cherry picked from commit e4c817eb474ef2f8a5798ae6cb72ec25771c444e) --- diff --git a/src/pybind/mgr/orchestrator/module.py b/src/pybind/mgr/orchestrator/module.py index 3140de83c7a9..9120a5a58b99 100644 --- a/src/pybind/mgr/orchestrator/module.py +++ b/src/pybind/mgr/orchestrator/module.py @@ -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: