From: Sage Weil Date: Tue, 5 Nov 2019 19:54:25 +0000 (-0600) Subject: mgr/orchestrator_cli: document orchestrator option X-Git-Tag: v15.1.0~578^2~2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=4c528aeb2dc1713c2f6e11ba5a19a0fe4cf32b4d;p=ceph.git mgr/orchestrator_cli: document orchestrator option Signed-off-by: Sage Weil --- diff --git a/src/pybind/mgr/orchestrator_cli/module.py b/src/pybind/mgr/orchestrator_cli/module.py index d3c5839a90b1..057dea6bfa54 100644 --- a/src/pybind/mgr/orchestrator_cli/module.py +++ b/src/pybind/mgr/orchestrator_cli/module.py @@ -22,8 +22,16 @@ import orchestrator class OrchestratorCli(orchestrator.OrchestratorClientMixin, MgrModule): MODULE_OPTIONS = [ - {'name': 'orchestrator'} + { + 'name': 'orchestrator', + 'default': None, + 'desc': 'Orchestrator backend', + 'enum_allowed': ['ssh', 'rook', 'ansible', 'deepsea', + 'test_orchestrator'], + 'runtime': True, + }, ] + NATIVE_OPTIONS = [] def __init__(self, *args, **kwargs): super(OrchestratorCli, self).__init__(*args, **kwargs)