]> git.proxmox.com Git - ceph.git/blob - ceph/src/pybind/mgr/orchestrator/__init__.py
update source to Ceph Pacific 16.2.2
[ceph.git] / ceph / src / pybind / mgr / orchestrator / __init__.py
1 # flake8: noqa
2
3 from .module import OrchestratorCli
4
5 # usage: E.g. `from orchestrator import StatelessServiceSpec`
6 from ._interface import \
7 OrchResult, raise_if_exception, handle_orch_error, \
8 CLICommand, _cli_write_command, _cli_read_command, CLICommandMeta, \
9 Orchestrator, OrchestratorClientMixin, \
10 OrchestratorValidationError, OrchestratorError, NoOrchestrator, \
11 ServiceDescription, InventoryFilter, HostSpec, \
12 DaemonDescription, DaemonDescriptionStatus, \
13 OrchestratorEvent, set_exception_subject, \
14 InventoryHost, DeviceLightLoc, \
15 UpgradeStatusSpec, daemon_type_to_service, service_to_daemon_types
16
17
18 import os
19 if 'UNITTEST' in os.environ:
20 import tests