From bb409d369769f73ef4eefc2fe026f905a57f4e6b Mon Sep 17 00:00:00 2001 From: Michael Fritch Date: Wed, 29 Apr 2020 17:39:47 -0600 Subject: [PATCH] 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) --- src/pybind/mgr/orchestrator/module.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/pybind/mgr/orchestrator/module.py b/src/pybind/mgr/orchestrator/module.py index 3140de83c7a..9120a5a58b9 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: -- 2.47.3