Skip to content

Commit 1680e46

Browse files
authored
Merge pull request ceph#54441 from phlogistonjohn/jjm-cephadm-breakup
cephadm: break various daemon type classes out to smaller files in cephadmlib Reviewed-by: Adam King <[email protected]>
2 parents a1a2252 + ed6f171 commit 1680e46

File tree

18 files changed

+2684
-2215
lines changed

18 files changed

+2684
-2215
lines changed

src/cephadm/cephadm.py

Lines changed: 15 additions & 2111 deletions
Large diffs are not rendered by default.
Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
from .ceph import Ceph, OSD, CephExporter
2+
from .custom import CustomContainer
3+
from .ingress import HAproxy, Keepalived
4+
from .iscsi import CephIscsi
5+
from .monitoring import Monitoring
6+
from .nfs import NFSGanesha
7+
from .nvmeof import CephNvmeof
8+
from .snmp import SNMPGateway
9+
from .tracing import Tracing
10+
11+
__all__ = [
12+
'Ceph',
13+
'CephExporter',
14+
'CephIscsi',
15+
'CephNvmeof',
16+
'CustomContainer',
17+
'HAproxy',
18+
'Keepalived',
19+
'Monitoring',
20+
'NFSGanesha',
21+
'OSD',
22+
'SNMPGateway',
23+
'Tracing',
24+
]

0 commit comments

Comments
 (0)