Skip to content

Commit

Permalink
Merge pull request ceph#54441 from phlogistonjohn/jjm-cephadm-breakup
Browse files Browse the repository at this point in the history
cephadm: break various daemon type classes out to smaller files in cephadmlib

Reviewed-by: Adam King <[email protected]>
  • Loading branch information
adk3798 authored Dec 4, 2023
2 parents a1a2252 + ed6f171 commit 1680e46
Show file tree
Hide file tree
Showing 18 changed files with 2,684 additions and 2,215 deletions.
2,126 changes: 15 additions & 2,111 deletions src/cephadm/cephadm.py

Large diffs are not rendered by default.

24 changes: 24 additions & 0 deletions src/cephadm/cephadmlib/daemons/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
from .ceph import Ceph, OSD, CephExporter
from .custom import CustomContainer
from .ingress import HAproxy, Keepalived
from .iscsi import CephIscsi
from .monitoring import Monitoring
from .nfs import NFSGanesha
from .nvmeof import CephNvmeof
from .snmp import SNMPGateway
from .tracing import Tracing

__all__ = [
'Ceph',
'CephExporter',
'CephIscsi',
'CephNvmeof',
'CustomContainer',
'HAproxy',
'Keepalived',
'Monitoring',
'NFSGanesha',
'OSD',
'SNMPGateway',
'Tracing',
]
Loading

0 comments on commit 1680e46

Please sign in to comment.