From: Tomer Haskalovitch Date: Tue, 24 Feb 2026 11:35:39 +0000 (+0200) Subject: mgr/nvmeof: intergrate module into build and debian pkg X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=901ec98b4146b9e2f2d2b4ab257a2d1a5b903d9f;p=ceph.git mgr/nvmeof: intergrate module into build and debian pkg Fixes: https://tracker.ceph.com/issues/74702 Signed-off-by: Tomer Haskalovitch --- diff --git a/ceph.spec.in b/ceph.spec.in index 18cd57b2683..f0f6a50c56d 100644 --- a/ceph.spec.in +++ b/ceph.spec.in @@ -2015,6 +2015,7 @@ fi %{_datadir}/ceph/mgr/telemetry %{_datadir}/ceph/mgr/test_orchestrator %{_datadir}/ceph/mgr/volumes +%{_datadir}/ceph/mgr/nvmeof %files mgr-rook %{_datadir}/ceph/mgr/rook diff --git a/debian/ceph-mgr-modules-core.install b/debian/ceph-mgr-modules-core.install index 90359a8e3e7..17ed984b02f 100644 --- a/debian/ceph-mgr-modules-core.install +++ b/debian/ceph-mgr-modules-core.install @@ -25,3 +25,4 @@ usr/share/ceph/mgr/telegraf usr/share/ceph/mgr/telemetry usr/share/ceph/mgr/test_orchestrator usr/share/ceph/mgr/volumes +usr/share/ceph/mgr/nvmeof diff --git a/src/pybind/mgr/CMakeLists.txt b/src/pybind/mgr/CMakeLists.txt index 9e900f859d7..d4032eb1dd7 100644 --- a/src/pybind/mgr/CMakeLists.txt +++ b/src/pybind/mgr/CMakeLists.txt @@ -27,6 +27,7 @@ set(mgr_modules devicehealth diskprediction_local # hello is an example for developers, not for user + nvmeof influx insights iostat diff --git a/src/pybind/mgr/tox.ini b/src/pybind/mgr/tox.ini index c2deb627261..35d7f972d00 100644 --- a/src/pybind/mgr/tox.ini +++ b/src/pybind/mgr/tox.ini @@ -93,6 +93,7 @@ commands = -m devicehealth \ -m diskprediction_local \ -m hello \ + -m nvmeof \ -m influx \ -m iostat \ -m localpool \ @@ -146,6 +147,7 @@ modules = devicehealth \ diskprediction_local \ hello \ + nvmeof \ iostat \ localpool \ mgr_module.py \