]> git-server-git.apps.pok.os.sepia.ceph.com Git - ceph.git/log
ceph.git
5 days agocommon/options: fix heap-use-after-free by using never-destroyed static 66895/head
Kefu Chai [Tue, 13 Jan 2026 01:19:17 +0000 (09:19 +0800)]
common/options: fix heap-use-after-free by using never-destroyed static

The config schema map was using string_view keys that pointed to the
name field of Option objects stored in the global ceph_options vector.
When the vector is destroyed during program exit, the Option objects
are freed, but background threads (like BlueStore::MempoolThread) may
still be accessing config options, causing use-after-free.

ASan reported:
  READ of size 19 at 0x503000047c80 thread T411
    #12 md_config_t::find_option(std::string_view) const config.cc:261
    #17 BlueStore::MempoolThread::entry() BlueStore.cc:5591

  0x503000047c80 is located 0 bytes inside of 20-byte region
  freed by thread T0 here:
    #7 Option::~Option() options.h:15
    #13 std::vector<Option>::~vector() stl_vector.h:730
    #14 __run_exit_handlers stdlib/exit.c:113

  previously allocated by thread T0 here:
    #7 Option::Option(Option const&) options.h:15
    #18 build_options() build_options.cc:44

Fix by converting ceph_options from a global variable to a function
get_ceph_options() that returns a reference to a static pointer that
is never destroyed. This ensures the Option objects remain valid for
the lifetime of the program, even during exit when background threads
may still be accessing them.

This preserves the memory efficiency of using string_view keys in the
schema map while fixing the lifetime issue.

Signed-off-by: Kefu Chai <k.chai@proxmox.com>
6 days agoMerge pull request #66803 from rhcs-dashboard/empty-data-message
Afreen Misbah [Mon, 12 Jan 2026 20:07:46 +0000 (01:37 +0530)]
Merge pull request #66803 from rhcs-dashboard/empty-data-message

mgr/dashboard: empty-data-message

Reviewed-by: Afreen Misbah <afreen@ibm.com>
Reviewed-by: Nizamudeen A <nia@redhat.com>
Reviewed-by: Aashish Sharma <aasharma@redhat.com>
Reviewed-by: Naman Munet <nmunet@redhat.com>
6 days agoMerge pull request #66714 from Hezko/nvme-cli-ver-remove
Afreen Misbah [Mon, 12 Jan 2026 16:00:44 +0000 (21:30 +0530)]
Merge pull request #66714 from Hezko/nvme-cli-ver-remove

mgr/dashboard: remove not needed 'cli_version' field from gw info com…

Reviewed-by: Nizamudeen A <nia@redhat.com>
6 days agoMerge pull request #66783 from Hezko/nvme-cli-json-indent
Afreen Misbah [Mon, 12 Jan 2026 15:59:40 +0000 (21:29 +0530)]
Merge pull request #66783 from Hezko/nvme-cli-json-indent

mgr/dashboard: add indentation to the json output of nvmeof cli commands

Reviewed-by: Nizamudeen A <nia@redhat.com>
6 days agoMerge pull request #66792 from Hezko/nvme-cli-fix-help-for-cmnds
Afreen Misbah [Mon, 12 Jan 2026 15:59:19 +0000 (21:29 +0530)]
Merge pull request #66792 from Hezko/nvme-cli-fix-help-for-cmnds

mgr/dashboard: fix ns add and resize commands help

Reviewed-by: Nizamudeen A <nia@redhat.com>
6 days agoMerge pull request #65941 from VallariAg/wip-vallari-cephadm-refresh
Adam King [Mon, 12 Jan 2026 15:58:13 +0000 (10:58 -0500)]
Merge pull request #65941 from VallariAg/wip-vallari-cephadm-refresh

qa: add 'refresh' config to cephadm.wait_for_service

Reviewed-by: Adam King <adking@redhat.com>
6 days agoMerge pull request #66810 from afreen23/full-tearsheet
Afreen Misbah [Mon, 12 Jan 2026 15:46:23 +0000 (21:16 +0530)]
Merge pull request #66810 from afreen23/full-tearsheet

mgr/dashboard: Add full page tearsheet component

Reviewed-by: Aashish Sharma <aasharma@redhat.com>
6 days agoMerge pull request #66752 from afreen23/generic-wizard
Afreen Misbah [Mon, 12 Jan 2026 15:45:28 +0000 (21:15 +0530)]
Merge pull request #66752 from afreen23/generic-wizard

mgr/dashboard: Add generic wizard component

Reviewed-by: Aashish Sharma <aasharma@redhat.com>
6 days agoMerge pull request #66845 from galsalomon66/fix_crash_upon_empty_connection_pool
Gal Salomon [Mon, 12 Jan 2026 14:52:33 +0000 (16:52 +0200)]
Merge pull request #66845 from galsalomon66/fix_crash_upon_empty_connection_pool

rgw/d4n: passing the dpp to RedisPool::acquire to fix nullptr crash

6 days agoMerge pull request #66852 from tchaikov/wip-rgw-dbstore-fix-leaks
Kefu Chai [Mon, 12 Jan 2026 14:03:38 +0000 (22:03 +0800)]
Merge pull request #66852 from tchaikov/wip-rgw-dbstore-fix-leaks

rgw/dbstore: fix memory leaks in unittest_dbstore_tests

Reviewed-by: Soumya Koduri <skoduri@redhat.com>
6 days agoMerge pull request #66848 from tchaikov/wip-cmake-unittest_global_doublefree
Kefu Chai [Mon, 12 Jan 2026 14:00:28 +0000 (22:00 +0800)]
Merge pull request #66848 from tchaikov/wip-cmake-unittest_global_doublefree

cmake: guard unittest_global_doublefree with WITH_LIBCEPHFS

Reviewed-by: John Mulligan <jmulligan@redhat.com>
Reviewed-by: Brad Hubbard <bhubbard@redhat.com>
6 days agomgr/dashboard: empty-data-message 66803/head
Sagar Gopale [Tue, 6 Jan 2026 07:56:42 +0000 (13:26 +0530)]
mgr/dashboard: empty-data-message

Fixes: https://tracker.ceph.com/issues/74324
Signed-off-by: Sagar Gopale <sagar.gopale@ibm.com>
6 days agoMerge pull request #66734 from imran-imtiaz/dashboard
Imran Imtiaz [Mon, 12 Jan 2026 06:36:35 +0000 (06:36 +0000)]
Merge pull request #66734 from imran-imtiaz/dashboard

mgr/dashboard: add rollback/update API endpoints for consistency group snapshots

7 days agoMerge pull request #66773 from dsseng/fedora-44-compat-fixes
Ilya Dryomov [Sun, 11 Jan 2026 21:18:32 +0000 (22:18 +0100)]
Merge pull request #66773 from dsseng/fedora-44-compat-fixes

src: make enums castable and build with Python 3.14 on Fedora >= 43

Reviewed-by: Kefu Chai <tchaikov@gmail.com>
Reviewed-by: Ilya Dryomov <idryomov@gmail.com>
7 days agoMerge pull request #66457 from NitzanMordhai/wip-nitzan-pg-scrub-standalone-test...
NitzanMordhai [Sun, 11 Jan 2026 12:40:26 +0000 (14:40 +0200)]
Merge pull request #66457 from NitzanMordhai/wip-nitzan-pg-scrub-standalone-test-hang

test/ceph-helpers: Pass timeout and add timeout for commands in test_pg_scrub

7 days agoMerge pull request #66858 from bluikko/wip-doc-cephadm-improvements8
bluikko [Sun, 11 Jan 2026 08:51:54 +0000 (15:51 +0700)]
Merge pull request #66858 from bluikko/wip-doc-cephadm-improvements8

doc/cephadm: small improvements to troubleshooting.rst

7 days agoMerge pull request #66859 from bluikko/wip-doc-cephadm-improvements9
bluikko [Sun, 11 Jan 2026 08:51:33 +0000 (15:51 +0700)]
Merge pull request #66859 from bluikko/wip-doc-cephadm-improvements9

doc/cephadm: small improvements to upgrade.rst

7 days agoMerge pull request #66862 from bluikko/wip-doc-cephadm-improvements7
bluikko [Sun, 11 Jan 2026 08:51:22 +0000 (15:51 +0700)]
Merge pull request #66862 from bluikko/wip-doc-cephadm-improvements7

doc/cephadm: small improvements continued

8 days agoMerge pull request #66849 from tchaikov/wip-unittest_ecbackend-alignment
Kefu Chai [Sat, 10 Jan 2026 09:10:04 +0000 (17:10 +0800)]
Merge pull request #66849 from tchaikov/wip-unittest_ecbackend-alignment

test/osd: fix buffer alignment issue in unittest_ecbackend

Reviewed-by: Alex Ainscow <aainscow@uk.ibm.com>
8 days agoMerge pull request #66830 from bluikko/wip-doc-cephadm-improvements
bluikko [Sat, 10 Jan 2026 04:29:59 +0000 (11:29 +0700)]
Merge pull request #66830 from bluikko/wip-doc-cephadm-improvements

doc/cephadm: small improvements

9 days agoMerge pull request #66827 from zdover23/wip-doc-2026-01-08-rgw_usage_log_key_transition
Zac Dover [Sat, 10 Jan 2026 00:32:36 +0000 (10:32 +1000)]
Merge pull request #66827 from zdover23/wip-doc-2026-01-08-rgw_usage_log_key_transition

doc/rgw: correct typo in rgw_usage_log_key_transition

Reviewed-by: Anthony D'Atri <anthony.datri@gmail.com>
9 days agoMerge pull request #66826 from zdover23/wip-doc-2026-01-08-rgw-rgw_multi_obj_del_max_aio
Zac Dover [Sat, 10 Jan 2026 00:32:15 +0000 (10:32 +1000)]
Merge pull request #66826 from zdover23/wip-doc-2026-01-08-rgw-rgw_multi_obj_del_max_aio

doc/radosgw: expose rgw_multi_obj_max_aio info

Reviewed-by: Anthony D'Atri <anthony.datri@gmail.com>
9 days agosrc/mgr: make enum statically castable 66773/head
Dmitrii Sharshakov [Thu, 1 Jan 2026 12:33:41 +0000 (13:33 +0100)]
src/mgr: make enum statically castable

Fix the following compiler error:

in-class initializer for static data member is not a constant expression

Co-authored-by: Ilya Dryomov <idryomov@gmail.com>
Signed-off-by: Dmitrii Sharshakov <d3dx12.xx@gmail.com>
9 days agorbd: make enums statically castable
Dmitrii Sharshakov [Thu, 1 Jan 2026 12:32:07 +0000 (13:32 +0100)]
rbd: make enums statically castable

Fix the following compiler error:

in-class initializer for static data member is not a constant expression

Co-authored-by: Ilya Dryomov <idryomov@gmail.com>
Signed-off-by: Dmitrii Sharshakov <d3dx12.xx@gmail.com>
9 days agodoc/cephadm: small improvements continued 66862/head
Ville Ojamo [Fri, 9 Jan 2026 09:45:59 +0000 (16:45 +0700)]
doc/cephadm: small improvements continued

Fix invalid section title and add a label for ref.
Link to the new label instead of telling which section to read.
Remove a sentence no longer relevant with config db.

Remove stray spaces, add newlines per style, fix capitalization.
Use privileged prompt when necessary.

Signed-off-by: Ville Ojamo <14869000+bluikko@users.noreply.github.com>
9 days agodoc/cephadm: small improvements to upgrade.rst 66859/head
Ville Ojamo [Fri, 9 Jan 2026 10:21:13 +0000 (17:21 +0700)]
doc/cephadm: small improvements to upgrade.rst

Reorganize and split long text paragraphs.
Add a label for ref instead of using section title name.
Fix word capitalization and minor changes to words.

Use title case consistently in section titles.
Use double backticks consistently for literal strings.
Use confval role instead of literal inline for config keys in text.
Improve markup. Improve prompt usage.

Delete spaces at end of lines. Wrap long lines.

Signed-off-by: Ville Ojamo <14869000+bluikko@users.noreply.github.com>
9 days agodoc/cephadm: small improvements to troubleshooting.rst 66858/head
Ville Ojamo [Fri, 9 Jan 2026 09:59:41 +0000 (16:59 +0700)]
doc/cephadm: small improvements to troubleshooting.rst

Programmatically add fsid to example script instead of telling user to add it.
Re-organize CLI example and output that was all on the same line.

Use title case consistently in section titles.
Use the standard style section title levels markup and preceding newlines.
Use double backticks consistently for literal strings.
Improve markup. Improve prompt usage.

Fix word capitalization and minor changes to words.

Delete spaces at end of lines.

Signed-off-by: Ville Ojamo <14869000+bluikko@users.noreply.github.com>
9 days agoMerge pull request #66774 from ronen-fr/wip-rf-rstcheck
Ronen Friedman [Fri, 9 Jan 2026 15:25:04 +0000 (17:25 +0200)]
Merge pull request #66774 from ronen-fr/wip-rf-rstcheck

pybind/mgr/dashboard: dashboard/requirements-lint.txt: re-pin rsscheck

Reviewed-by: Kefu Chai <tchaikov@gmail.com>
Reviewed-by: Ernesto Puerta <epuertat@redhat.com>
9 days agoMerge pull request #66841 from bluikko/wip-doc-cephadm-improvements6
bluikko [Fri, 9 Jan 2026 11:50:43 +0000 (18:50 +0700)]
Merge pull request #66841 from bluikko/wip-doc-cephadm-improvements6

doc/cephadm: small improvements to operations.rst

9 days agoMerge pull request #66836 from bluikko/wip-doc-cephadm-improvements4
bluikko [Fri, 9 Jan 2026 08:14:59 +0000 (15:14 +0700)]
Merge pull request #66836 from bluikko/wip-doc-cephadm-improvements4

doc/cephadm: small improvements to install.rst

9 days agoMerge pull request #66835 from bluikko/wip-doc-cephadm-improvements3
bluikko [Fri, 9 Jan 2026 07:12:05 +0000 (14:12 +0700)]
Merge pull request #66835 from bluikko/wip-doc-cephadm-improvements3

doc/cephadm: small improvements to host-management.rst

9 days agoMerge pull request #66833 from bluikko/wip-doc-cephadm-improvements2
bluikko [Fri, 9 Jan 2026 07:05:13 +0000 (14:05 +0700)]
Merge pull request #66833 from bluikko/wip-doc-cephadm-improvements2

doc/cephadm: small improvements to services/index.rst

9 days agoMerge pull request #66670 from ThomasLamprecht/systemd-fix-ceph-volume@-service-install
Kefu Chai [Fri, 9 Jan 2026 05:41:32 +0000 (13:41 +0800)]
Merge pull request #66670 from ThomasLamprecht/systemd-fix-ceph-volume@-service-install

systemd services: fix configuring ceph-volume@ service to use correct path to executable

Reviewed-by: Kefu Chai <k.chai@proxmox.com>
9 days agorgw/dbstore: fix memory leaks in unittest_dbstore_tests 66852/head
Kefu Chai [Fri, 9 Jan 2026 04:40:39 +0000 (12:40 +0800)]
rgw/dbstore: fix memory leaks in unittest_dbstore_tests

Fix memory leaks detected by AddressSanitizer in unittest_dbstore_tests.
The test was failing with ASan enabled due to SQLObjectOp objects not
being properly cleaned up.

ASan reported the following leaks:

  Direct leak of 200 byte(s) in 1 object(s) allocated from:
    #0 operator new(unsigned long)
    #1 SQLGetBucket::Execute(DoutPrefixProvider const*, rgw::store::DBOpParams*)
       /src/rgw/driver/dbstore/sqlite/sqliteDB.cc:1689
    #2 rgw::store::DB::ProcessOp(DoutPrefixProvider const*, ...)
       /src/rgw/driver/dbstore/common/dbstore.cc:258

  Direct leak of 200 byte(s) in 1 object(s) allocated from:
    #0 operator new(unsigned long)
    #1 SQLInsertBucket::Execute(DoutPrefixProvider const*, rgw::store::DBOpParams*)
       /src/rgw/driver/dbstore/sqlite/sqliteDB.cc:1433
    #2 rgw::store::DB::ProcessOp(DoutPrefixProvider const*, ...)
       /src/rgw/driver/dbstore/common/dbstore.cc:258

  SUMMARY: AddressSanitizer: 460550 byte(s) leaked in 1823 allocation(s).

Root cause: The DB::Destroy() method had an early return when the db
pointer was NULL, preventing cleanup of the objectmap which stores
SQLObjectOp pointers. These objects were allocated during test execution
but never freed.

Changes:
- Modified DB::Destroy() to always clean up objectmap even when db is NULL
- Added explicit delete in objectmapDelete() for consistency
- Added lsan suppression for SQLite internal allocations (indirect leaks)

After the fix, all direct leaks are eliminated. Only indirect leaks from
SQLite's internal memory management remain, which are now suppressed.

Test results:
- Before: 460,550 bytes leaked (including 2 direct leaks of 200 bytes each)
- After: 0 direct leaks, unittest_dbstore_tests passes with ASan

Signed-off-by: Kefu Chai <k.chai@proxmox.com>
9 days agocmake: guard unittest_global_doublefree with WITH_LIBCEPHFS 66848/head
Kefu Chai [Thu, 8 Jan 2026 23:43:13 +0000 (07:43 +0800)]
cmake: guard unittest_global_doublefree with WITH_LIBCEPHFS

The unittest_global_doublefree test detects double-free issues in
global static variables when an executable links both librados and
libcephfs. However, it was incorrectly guarded by WITH_CEPHFS (which
controls the server-side cephfs components) instead of WITH_LIBCEPHFS
(which controls the client library it actually depends on).

This causes build failures when building with WITH_LIBCEPHFS enabled
but WITH_CEPHFS disabled:

```
    /usr/bin/ld: cannot find -lcephfs: No such file or directory
```

Change the guard to WITH_LIBCEPHFS to match the actual dependency.

While this scenario is uncommon (most users enable WITH_CEPHFS), the
fix correctly aligns the build logic with the test's dependencies.

Signed-off-by: Kefu Chai <k.chai@proxmox.com>
9 days agotest/osd: fix buffer alignment issue in unittest_ecbackend 66849/head
Kefu Chai [Fri, 9 Jan 2026 01:25:28 +0000 (09:25 +0800)]
test/osd: fix buffer alignment issue in unittest_ecbackend

The create_buf() function in TestECBackend.cc had two issues that
caused test failures when running with ASan enabled:

1. Infinite loop potential: When std::rand() % 5 returned 0, len_to_add
   would be 0, causing an infinite loop if the buffer hadn't reached
   the target length yet.

2. Memory alignment issue: Using append_zero() doesn't guarantee that
   the resulting buffer's memory address is aligned to EC_ALIGN_SIZE
   (4096 bytes). The is_aligned() check verifies that all buffers in
   the bufferlist have their data pointers properly aligned, not just
   that the length is a multiple of the alignment size.

Fix by:
- Changing std::rand() % 5 to std::rand() % 5 + 1 to ensure we always
  allocate 1-5 pages worth of data, avoiding the infinite loop
- Replacing append_zero() with buffer::create_page_aligned() followed
  by memset() and append(), which ensures each buffer has its data
  pointer aligned to page boundaries (4096 bytes)

This ensures the test passes consistently with ASan enabled.

Signed-off-by: Kefu Chai <k.chai@proxmox.com>
10 days agoMerge pull request #66786 from sungjoon-koh/wip-rocksdb-fix-liburing-libs
Kefu Chai [Fri, 9 Jan 2026 00:17:46 +0000 (08:17 +0800)]
Merge pull request #66786 from sungjoon-koh/wip-rocksdb-fix-liburing-libs

cmake: fix liburing path passed to rocksdb

Reviewed-by: Kefu Chai <k.chai@proxmox.com>
10 days agorgw/d4n: passing the dpp to RedisPool::acquire to fix nullptr crash 66845/head
gal salomon [Thu, 8 Jan 2026 18:46:55 +0000 (18:46 +0000)]
rgw/d4n: passing the dpp to RedisPool::acquire to fix nullptr crash

Fix segfault when Redis connection pool is exhausted by passing the DoutPrefixProvider parameter through redis_exec_cp() to acquire(),
preventing null reference in maybe_warn_about_blocking()

Signed-off-by: gal salomon <gal.salomon@gmail.com>
10 days agoMerge pull request #66772 from ronen-fr/wip-rf-gtsversion
Ronen Friedman [Thu, 8 Jan 2026 16:06:50 +0000 (18:06 +0200)]
Merge pull request #66772 from ronen-fr/wip-rf-gtsversion

scripts/build/ceph.spec.in: fix rhel version checks

Reviewed-by: Kefu Chai <kchai@redhat.com>
Reviewed-by: Ilya Dryomov <idryomov@gmail.com>
10 days agomgr/dashboard: add CRUD API endpoints for consistency group snapshots 2/2 66734/head
Imran Imtiaz [Wed, 24 Dec 2025 10:14:53 +0000 (10:14 +0000)]
mgr/dashboard: add CRUD API endpoints for consistency group snapshots 2/2

Signed-off-by: Imran Imtiaz <imran.imtiaz@uk.ibm.com>
Fixes: https://tracker.ceph.com/issues/74275
Create a consistency group dashboard API endpoint to:

- rollback
- update

Signed-off-by: Imran Imtiaz <imran.imtiaz@uk.ibm.com>
10 days agodoc/cephadm: small improvements to operations.rst 66841/head
Ville Ojamo [Thu, 8 Jan 2026 09:44:26 +0000 (16:44 +0700)]
doc/cephadm: small improvements to operations.rst

Remove "*" around CLI command placeholders that was rendered in literal strings.
Leave only the usual "<placeholder>" string.

Use title case consistently in section titles.
Add links to more information.
Move a label about logs to the right section.
Use double backticks consistently for literal strings.
Use confval role instead of literal inline for config keys in text.

Fix word capitalization and minor changes to words.
Use Monitor, Manager, etc. instead of MON, MGR, etc.
Improve markup. Improve prompt usage.
Fix duplicate text and remove an unnecessary section.

Delete spaces at end of lines. Add full stops or colons.

Signed-off-by: Ville Ojamo <14869000+bluikko@users.noreply.github.com>
10 days agodoc/cephadm: small improvements to install.rst 66836/head
Ville Ojamo [Thu, 8 Jan 2026 07:55:00 +0000 (14:55 +0700)]
doc/cephadm: small improvements to install.rst

Remove "*" around CLI command placeholders that was rendered in literal strings.
Leave only the usual "<placeholder>" string.

Use title case consistently in section titles.

Use confval role instead of literal inline for config keys in text.
Improve markup.
Use ref instead of full URL for intradocs link.
Remove unused external link definition.
Fix double prompts in SSH cert auth section.

Fix word capitalization and minor changes to words.
Use Monitor, Manager, etc. instead of MON, MGR, etc.
Fix hyphenation.
Use underscores in config key name.
SSH cert auth uses a signed public, not private, key.

Delete spaces at end of lines. Add full stops or colons.

Signed-off-by: Ville Ojamo <14869000+bluikko@users.noreply.github.com>
10 days agodoc/cephadm: small improvements to host-management.rst 66835/head
Ville Ojamo [Thu, 8 Jan 2026 07:26:20 +0000 (14:26 +0700)]
doc/cephadm: small improvements to host-management.rst

Remove "*" around CLI command placeholders that was rendered in literal strings.
Leave only the usual "<placeholder>" string.

Use title case consistently in section titles.
Add links to more information.
Use double backticks consistently for literal strings.
Use confval role instead of literal inline for config keys in text.
Improve markup.

Fix word capitalization and minor changes to words.
Use Monitor, Manager, etc. instead of MON, MGR, etc.
Reword to "a command of the following form" where suitable.
Fix hyphenation.
Clarify three sentences.
SSH cert auth uses a signed public, not private, key.

Delete spaces at end of lines. Add full stops or colons.

Signed-off-by: Ville Ojamo <14869000+bluikko@users.noreply.github.com>
10 days agodoc/cephadm: small improvements to services/index.rst 66833/head
Ville Ojamo [Thu, 8 Jan 2026 06:13:51 +0000 (13:13 +0700)]
doc/cephadm: small improvements to services/index.rst

Remove "*" around CLI command placeholders that was rendered in literal strings.
Leave only the usual "<placeholder>" string.

Use the standard style section title preceding newlines.
Use double backticks consistently for literal strings.
Rewrap only excessively long lines only in certain places to avoid excessive diff.
Use confval role instead of literal inline for config keys in text.
Improve markup.

Fix word capitalization and minor changes to words.
Use Monitor, Manager, etc. instead of MON, MGR, etc.
Reword to "a command of the following form" where suitable.
Remove repetition in admonition about daemon status refresh.

Delete spaces at end of lines. Add full stops or colons.

Signed-off-by: Ville Ojamo <14869000+bluikko@users.noreply.github.com>
10 days agodoc/cephadm: small improvements 66830/head
Ville Ojamo [Thu, 8 Jan 2026 05:38:35 +0000 (12:38 +0700)]
doc/cephadm: small improvements

Remove "*" around CLI command placeholders that was rendered in literal strings.
Leave only the usual "<placeholder>" string.

Use title case consistently in section titles.
Use the standard style section title levels markup and preceding newlines.
Add links to more information.
Use double backticks consistently for literal strings.
Rewrap only excessively long lines only in certain places to avoid excessive diff.
Improve markup.

Fix word capitalization and minor changes to words.
Use Monitor, Manager, etc. instead of MON, MGR, etc.
Reword to "a command of the following form" where suitable.

Delete spaces at end of lines. Add full stops or colons.

Signed-off-by: Ville Ojamo <14869000+bluikko@users.noreply.github.com>
10 days agoMerge pull request #66728 from tchaikov/wip-intrusive-ptr
Kefu Chai [Thu, 8 Jan 2026 05:00:25 +0000 (13:00 +0800)]
Merge pull request #66728 from tchaikov/wip-intrusive-ptr

common: fix TrackedOp intrusive_ptr compatibility with boost 1.89+

Reviewed-by: Patrick Donnelly <pdonnell@redhat.com>
10 days agodoc/rgw: correct typo in rgw_usage_log_key_transition 66827/head
Zac Dover [Thu, 8 Jan 2026 03:33:23 +0000 (13:33 +1000)]
doc/rgw: correct typo in rgw_usage_log_key_transition

s/Hhandle/Handle/ in "rgw_usage_log_key_transition" in
src/common/options/rgw.yaml.in.

Signed-off-by: Zac Dover <zac.dover@clyso.com>
10 days agodoc/radosgw: expose rgw_multi_obj_max_aio info 66826/head
Zac Dover [Thu, 8 Jan 2026 03:14:23 +0000 (13:14 +1000)]
doc/radosgw: expose rgw_multi_obj_max_aio info

Expose the confval information for the confval "rgw_multi_obj_max_aio"
so that it can be seen in the "Ceph Object Gateway Config Reference".

Signed-off-by: Zac Dover <zac.dover@clyso.com>
11 days agoMerge pull request #66814 from bluikko/wip-doc-fix-directives
bluikko [Wed, 7 Jan 2026 13:57:05 +0000 (20:57 +0700)]
Merge pull request #66814 from bluikko/wip-doc-fix-directives

doc: fix most invalid directives missing a second colon

11 days agoMerge pull request #66604 from rhcs-dashboard/fix-69690-main
Aashish Sharma [Wed, 7 Jan 2026 11:00:27 +0000 (16:30 +0530)]
Merge pull request #66604 from rhcs-dashboard/fix-69690-main

monitoring: fix CephPgImbalance alert rule expression

Reviewed-by: Ankush Behl <ankush.behl@ibm.com>
11 days agoMerge PR #65495 into main
Venky Shankar [Wed, 7 Jan 2026 10:33:36 +0000 (16:03 +0530)]
Merge PR #65495 into main

* refs/pull/65495/head:

Reviewed-by: Venky Shankar <vshankar@redhat.com>
Reviewed-by: Milind Changire <mchangir@redhat.com>
11 days agoMerge pull request #66806 from bluikko/wip-doc-dev-health-checks-improvements
bluikko [Wed, 7 Jan 2026 10:09:38 +0000 (17:09 +0700)]
Merge pull request #66806 from bluikko/wip-doc-dev-health-checks-improvements

doc/dev: Improvements to health-reports.rst (1 of 2)

11 days agoMerge pull request #66809 from bluikko/wip-doc-radosgw-qat-accel-link
bluikko [Wed, 7 Jan 2026 10:09:20 +0000 (17:09 +0700)]
Merge pull request #66809 from bluikko/wip-doc-radosgw-qat-accel-link

doc/radosgw: Fix link to Intel QAT in qat-accel.rst

11 days agoMerge pull request #66718 from tchaikov/wip-cmake-crimson-option
Kefu Chai [Wed, 7 Jan 2026 08:24:39 +0000 (16:24 +0800)]
Merge pull request #66718 from tchaikov/wip-cmake-crimson-option

cmake: clarify WITH_CRIMSON help text

Reviewed-by: Matan Breizman <mbreizma@redhat.com>
11 days agoMerge pull request #66808 from bluikko/wip-doc-rados-erasure-code-isa-link
bluikko [Wed, 7 Jan 2026 07:24:54 +0000 (14:24 +0700)]
Merge pull request #66808 from bluikko/wip-doc-rados-erasure-code-isa-link

doc/rados: Fix link to Intel ISA-L in erasure-code-isa.rst

11 days agoMerge pull request #66782 from Hezko/nvme-fix-no-gw-typo
Aashish Sharma [Wed, 7 Jan 2026 06:21:54 +0000 (11:51 +0530)]
Merge pull request #66782 from Hezko/nvme-fix-no-gw-typo

mgr/dashboard: fix typo in error when gw does not exist

Reviewed-by: Aashish Sharma <aasharma@redhat.com>
12 days agomgr/dashboard: add indentation to the json output of nvmeof cli commands 66783/head
Tomer Haskalovitch [Sun, 4 Jan 2026 09:01:32 +0000 (11:01 +0200)]
mgr/dashboard: add indentation to the json output of nvmeof cli commands

Signed-off-by: Tomer Haskalovitch <tomer.haska@ibm.com>
12 days agoscripts/build/ceph.spec.in: fix rhel version checks 66772/head
Ronen Friedman [Thu, 1 Jan 2026 14:35:33 +0000 (14:35 +0000)]
scripts/build/ceph.spec.in: fix rhel version checks

Fixing multiple instances in this file where
the RHEL version is checked - without properly
ensuring that the OS is indeed RHEL.

0%{?rhel} is only defined on RHEL systems, and
is '0' otherwise. That resulted, for example, in
Fedora 43 having 'gts_version' incorrectly
set to '13'.

Signed-off-by: Ronen Friedman <rfriedma@redhat.com>
12 days agomgr/dashboard: Add full page tearsheet component 66810/head
Afreen Misbah [Tue, 6 Jan 2026 10:47:16 +0000 (16:17 +0530)]
mgr/dashboard: Add full page tearsheet component

Fixes https://tracker.ceph.com/issues/74327

-  added "full" page tearsheet
-  the full page tearsheet uses a cancel confirmation modal hence added that as well
-  as per latest carbon guidelines for tearsheet https://carbondesignsystem.com/community/patterns/create-flows/#anatomy-of-a-full-page
-  not added - influencer title and toggle (should be added as per reqs)

Signed-off-by: Afreen Misbah <afreen@ibm.com>
12 days agodoc: fix most invalid directives missing a second colon 66814/head
Ville Ojamo [Tue, 6 Jan 2026 14:59:34 +0000 (21:59 +0700)]
doc: fix most invalid directives missing a second colon

Add the second colon to RST markup that was missing it. Some very
important admonitions were not rendered at all because of the syntax
error.

"Most" because the two remaining occurrences are fixed elsewhere.

Signed-off-by: Ville Ojamo <14869000+bluikko@users.noreply.github.com>
12 days agomgr/dashboard: Add generic wizard component 66752/head
Afreen Misbah [Mon, 29 Dec 2025 04:51:36 +0000 (10:21 +0530)]
mgr/dashboard: Add generic wizard component

Fixes https://tracker.ceph.com/issues/74291

- made on top of carbon modal
- carbon design system used - wide tearsheet
- added a step component as well to support navigation code
- added unit tests

Signed-off-by: Afreen Misbah <afreen@ibm.com>
12 days agodoc/radosgw: Fix link to Intel QAT in qat-accel.rst 66809/head
Ville Ojamo [Tue, 6 Jan 2026 10:26:50 +0000 (17:26 +0700)]
doc/radosgw: Fix link to Intel QAT in qat-accel.rst

Fix broken link as reported in doc bugs pad.

Signed-off-by: Ville Ojamo <14869000+bluikko@users.noreply.github.com>
12 days agodoc/dev: Improvements to health-reports.rst (1 of 2) 66806/head
Ville Ojamo [Tue, 6 Jan 2026 09:22:29 +0000 (16:22 +0700)]
doc/dev: Improvements to health-reports.rst (1 of 2)

Try to improve language of the document. Completely rewrite sections
where possible without confirming nuances from the source.

Use Monitor, Manager; add articles and fix typos/missing letters, etc.

1 of 2, second part should add back diagrams, text about them and reflow
text.

Signed-off-by: Ville Ojamo <14869000+bluikko@users.noreply.github.com>
12 days agoMerge pull request #66682 from tchaikov/wip-cmake-seastar.a
Kefu Chai [Tue, 6 Jan 2026 12:37:12 +0000 (20:37 +0800)]
Merge pull request #66682 from tchaikov/wip-cmake-seastar.a

cmake: build static seastar for release builds

Reviewed-by: Matan Breizman <mbreizma@redhat.com>
12 days agosystemd services: fix installing ceph-volume@ 66670/head
Thomas Lamprecht [Wed, 17 Dec 2025 16:28:11 +0000 (17:28 +0100)]
systemd services: fix installing ceph-volume@

The ceph-volume@ service uses the @CMAKE_INSTALL_PREFIX@, so we cannot
just install it directly like the target units, but need to process it
like all other units that are referring to actual executables that
reside in build-target dependent paths.

Fixes: 68c72c5dff5 ("systemd: use CMake install prefix in templates")
Reported-by: Daniel Herzig <d.herzig@proxmox.com>
Reported-by: Aaron Lauterer <a.lauterer@proxmox.com>
Signed-off-by: Thomas Lamprecht <t.lamprecht@proxmox.com>
12 days agodoc/rados: Fix link to Intel ISA-L in erasure-code-isa.rst 66808/head
Ville Ojamo [Tue, 6 Jan 2026 10:14:59 +0000 (17:14 +0700)]
doc/rados: Fix link to Intel ISA-L in erasure-code-isa.rst

Fix broken link as reported in doc bugs pad.

Signed-off-by: Ville Ojamo <14869000+bluikko@users.noreply.github.com>
12 days agocmake: clarify WITH_CRIMSON help text 66718/head
Kefu Chai [Tue, 23 Dec 2025 03:19:12 +0000 (11:19 +0800)]
cmake: clarify WITH_CRIMSON help text

The help text for WITH_CRIMSON previously read "Build seastar
components", which referenced the underlying C++ framework rather
than the user-facing functionality. This was confusing because users
care about Ceph features, not implementation details.

Change the help text to reference "Crimson" directly and explicitly
state the default value, making the option's purpose clearer to users.

Signed-off-by: Kefu Chai <tchaikov@gmail.com>
12 days agoMerge pull request #66781 from gbregman/main
Gil Bregman [Tue, 6 Jan 2026 07:25:55 +0000 (09:25 +0200)]
Merge pull request #66781 from gbregman/main

mgr/cephadm: Change the default of max hosts per namespace in NVMEoF to 16

13 days agodo_cmake.sh: support Fedora 43+ with Python 3.14
Dmitrii Sharshakov [Thu, 1 Jan 2026 12:29:26 +0000 (13:29 +0100)]
do_cmake.sh: support Fedora 43+ with Python 3.14

Fedora 43 changes system Python version to 3.14. Update do_cmake.sh

Tested on Fedora Rawhide as of Jan 1 2026

Ref: https://fedoraproject.org/wiki/Changes/Python3.14

Signed-off-by: Dmitrii Sharshakov <d3dx12.xx@gmail.com>
13 days agoMerge pull request #66485 from shraddhaag/wip-shraddhaag-74052
Matan Breizman [Mon, 5 Jan 2026 15:46:26 +0000 (17:46 +0200)]
Merge pull request #66485 from shraddhaag/wip-shraddhaag-74052

qa: exclude crimson from random-objectstore

Reviewed-by: Matan Breizman <mbreizma@redhat.com>
13 days agoMerge pull request #66599 from hasan4791/issue-74181
Kefu Chai [Mon, 5 Jan 2026 14:22:14 +0000 (22:22 +0800)]
Merge pull request #66599 from hasan4791/issue-74181

cmake: Define BITS_PER_LONG for ppc64le target

Reviewed-by: Kefu Chai <k.chai@proxmox.com>
13 days agoMerge pull request #66787 from bluikko/wip-doc-remove-pip-sphinxcontrib-seqdiag
bluikko [Mon, 5 Jan 2026 13:02:08 +0000 (20:02 +0700)]
Merge pull request #66787 from bluikko/wip-doc-remove-pip-sphinxcontrib-seqdiag

doc: Remove sphinxcontrib-seqdiag Python package from RTD builds

13 days agoMerge pull request #66195 from rhcs-dashboard/cephfs-mirroring-listing
Nizamudeen A [Mon, 5 Jan 2026 09:47:56 +0000 (15:17 +0530)]
Merge pull request #66195 from rhcs-dashboard/cephfs-mirroring-listing

mgr/dashboard: Cephfs Mirroring Listing

Reviewed-by: Afreen Misbah <afreen@ibm.com>
Reviewed-by: Pedro Gonzalez Gomez <pegonzal@redhat.com>
Reviewed-by: Naman Munet <nmunet@redhat.com>
Reviewed-by: Ankush Behl <cloudbehl@gmail.com>
13 days agopybind/mgr/dashboard/tox.ini: use up-to-date rstcheck invocations 66774/head
Ronen Friedman [Sun, 4 Jan 2026 13:12:30 +0000 (15:12 +0200)]
pybind/mgr/dashboard/tox.ini: use up-to-date rstcheck invocations

As we have upgraded to rstcheck >= 6.0.0, we must now use
the new command-line options.

Signed-off-by: Ronen Friedman <rfriedma@redhat.com>
13 days agopybind/mgr/dashboard/requirements-lint.txt: re-pin rstcheck
Ronen Friedman [Thu, 1 Jan 2026 15:23:31 +0000 (15:23 +0000)]
pybind/mgr/dashboard/requirements-lint.txt: re-pin rstcheck

As the requested Wheel for 'rstcheck==3.3.1' is not available
for Fedora 43:

Fedora 43 ships with Python 3.14 as the default interpreter.
rstcheck 3.3.1 doesn't support Python 3.14 (see supported
versions at https://pypi.org/project/rstcheck/3.3.1/)
rstcheck 6.2.0 was the first version to add Python 3.14 support
(release info: https://pypi.org/project/rstcheck/6.2.0/)

Signed-off-by: Ronen Friedman <rfriedma@redhat.com>
13 days agoMerge pull request #66733 from tchaikov/wip-cram
Kefu Chai [Mon, 5 Jan 2026 08:51:02 +0000 (16:51 +0800)]
Merge pull request #66733 from tchaikov/wip-cram

test/run-cli-tests: install wheel before cram to fix build failure

Reviewed-by: Ronen Friedman <rfriedma@redhat.com>
13 days agomgr/dashboard: fix ns add and resize commands help 66792/head
Tomer Haskalovitch [Mon, 5 Jan 2026 07:32:30 +0000 (09:32 +0200)]
mgr/dashboard: fix ns add and resize commands help

Signed-off-by: Tomer Haskalovitch <tomer.haska@ibm.com>
13 days agoMerge pull request #66784 from bluikko/wip-doc-sphinx-warnings-202601
bluikko [Mon, 5 Jan 2026 07:19:40 +0000 (14:19 +0700)]
Merge pull request #66784 from bluikko/wip-doc-sphinx-warnings-202601

doc/dev: Fix Sphinx complaints in msgr2.rst

13 days agoMerge pull request #66785 from bluikko/wip-doc-sphinx-warnings-202601b
bluikko [Mon, 5 Jan 2026 07:18:59 +0000 (14:18 +0700)]
Merge pull request #66785 from bluikko/wip-doc-sphinx-warnings-202601b

doc/rados: Fix Sphinx warnings in troubleshooting/log-and-debug.rst

13 days agodoc: Remove sphinxcontrib-seqdiag Python package from RTD builds 66787/head
Ville Ojamo [Mon, 5 Jan 2026 06:10:45 +0000 (13:10 +0700)]
doc: Remove sphinxcontrib-seqdiag Python package from RTD builds

This is a proactive PR to avoid breaking docs builds when Setuptools 81
starts to be used in the RTD builds process.

The sphnixcontrib-seqdiag Python package is not compatible with
Setuptools 81 or later due to use of pkg_resources:
https://setuptools.pypa.io/en/latest/pkg_resources.html

Setuptools 81 release should be imminent, with the Python deprecation
warning stating pkg_resources "removal as early as 2025-11-30".

Seqdiag seems to be unmaintained with the latest update at Pypi in
the year 2021 and also no updates to the seqdiag git repo.

There are no seqdiag directives left in the docs after last seqdiags
were removed in PR #52308.

Two other options would exist for fixing the situation (see PR for
discussion) but this seems to be the suitable one.

Signed-off-by: Ville Ojamo <14869000+bluikko@users.noreply.github.com>
13 days agocmake: fix liburing path passed to rocksdb 66786/head
sungjoon_koh [Mon, 5 Jan 2026 06:09:00 +0000 (15:09 +0900)]
cmake: fix liburing path passed to rocksdb

Signed-off-by: sungjoon_koh <sungjoon_koh@linecorp.com>
13 days agodoc/rados: Fix Sphinx warnings in troubleshooting/log-and-debug.rst 66785/head
Ville Ojamo [Mon, 5 Jan 2026 05:46:08 +0000 (12:46 +0700)]
doc/rados: Fix Sphinx warnings in troubleshooting/log-and-debug.rst

Possibly controversial Sphinx fixes:

Fix two Sphinx warnings about more than one confval directive.
Remove the dupe confval directives from log-and-debug.rst and leave only
in mon-config-ref.rst because it has the only copy of a related clog
configuration value mon_health_to_clog_tick_interval.

Signed-off-by: Ville Ojamo <14869000+bluikko@users.noreply.github.com>
13 days agodoc/dev: Fix Sphinx complaints in msgr2.rst 66784/head
Ville Ojamo [Mon, 5 Jan 2026 05:26:58 +0000 (12:26 +0700)]
doc/dev: Fix Sphinx complaints in msgr2.rst

Uncontroversial Sphinx fixes:

Fix Sphinx warning about section title underline too short.
No change in rendering.

Fix Sphinx critical about section title underline at wrong level.
Fixes the title rendering and makes it visible.

Signed-off-by: Ville Ojamo <14869000+bluikko@users.noreply.github.com>
13 days agoMerge pull request #66680 from rhcs-dashboard/dashboard-zonegroup-consistency
Aashish Sharma [Mon, 5 Jan 2026 04:42:30 +0000 (10:12 +0530)]
Merge pull request #66680 from rhcs-dashboard/dashboard-zonegroup-consistency

mgr/dashboard: rename 'Zone Group' labels to 'Zonegroup'

Reviewed-by: Aashish Sharma <aasharma@redhat.com>
2 weeks agomgr/cephadm: Change the default of max hosts per namespace in NVMEoF to 16. 66781/head
Gil Bregman [Sun, 4 Jan 2026 14:26:50 +0000 (16:26 +0200)]
mgr/cephadm: Change the default of max hosts per namespace in NVMEoF to 16.

Fixes: https://tracker.ceph.com/issues/74310
Signed-off-by: Gil Bregman <gbregman@il.ibm.com>
2 weeks agomgr/dashboard: fix typo in error when gw does not exist 66782/head
Tomer Haskalovitch [Sun, 4 Jan 2026 08:33:53 +0000 (10:33 +0200)]
mgr/dashboard: fix typo in error when gw does not exist

Signed-off-by: Tomer Haskalovitch <tomer.haska@ibm.com>
2 weeks agoMerge pull request #66766 from tchaikov/wip-options-log-to-stderr
Kefu Chai [Fri, 2 Jan 2026 01:46:42 +0000 (09:46 +0800)]
Merge pull request #66766 from tchaikov/wip-options-log-to-stderr

common/options: document log_to_stderr's conditional default value

Reviewed-by: John Mulligan <jmulligan@redhat.com>
2 weeks agocommon/options: document log_to_stderr's conditional default value 66766/head
Kefu Chai [Wed, 31 Dec 2025 09:01:43 +0000 (17:01 +0800)]
common/options: document log_to_stderr's conditional default value

The default value of `log_to_stderr` varies depending on whether Ceph
runs as a daemon or a library. Previously, this was only documented via
the `default` property, which led to confusion when debugging client
applications.

For example, when debugging a CephFS client, setting `debug <subsystem> = 5`
in the configuration file doesn't produce visible debug logs as expected.
This occurs because `common_preinit()` overrides `log_to_stderr` to `false`
when Ceph runs as a library, preventing logs from appearing on stderr.

This commit adds clarification to the `long_desc` field to document this
conditional behavior and help users understand why debug output may not
appear in client scenarios.

Signed-off-by: Kefu Chai <k.chai@proxmox.com>
2 weeks agomgr/dashboard: Cephfs Mirroring Listing 66195/head
Pedro Gonzalez Gomez [Thu, 20 Nov 2025 14:09:03 +0000 (15:09 +0100)]
mgr/dashboard: Cephfs Mirroring Listing

Fixes: https://tracker.ceph.com/issues/73781
Signed-off-by: Dnyaneshwari Talwekar <dtalweka@redhat.com>
2 weeks agoMerge pull request #66747 from datdenkikniet/more-docs
Anthony D'Atri [Tue, 30 Dec 2025 22:54:48 +0000 (17:54 -0500)]
Merge pull request #66747 from datdenkikniet/more-docs

doc/dev: improve formatting and clarify documentation

2 weeks agoMerge pull request #66583 from rhcs-dashboard/fix-74171-main
Aashish Sharma [Tue, 30 Dec 2025 11:12:13 +0000 (16:42 +0530)]
Merge pull request #66583 from rhcs-dashboard/fix-74171-main

mgr/dashboard: carbonise multi-cluster forms

Reviewed-by: Abhishek Desai <abhishek.desai1@ibm.com>
2 weeks agomgr/dashboard: fix multi-cluster context switcher 66583/head
Aashish Sharma [Wed, 10 Dec 2025 10:41:50 +0000 (16:11 +0530)]
mgr/dashboard: fix multi-cluster context switcher

The multi-cluster context switcher stopped working because of a
regression caused by this PR https://github.com/ceph/ceph/pull/66034.
This PR tends to fix this issue

Signed-off-by: Aashish Sharma <aasharma@redhat.com>
2 weeks agomgr/dashboard: carbonise multi-cluster forms
Aashish Sharma [Wed, 10 Dec 2025 07:12:40 +0000 (12:42 +0530)]
mgr/dashboard: carbonise multi-cluster forms

Fixes: https://tracker.ceph.com/issues/74171
Signed-off-by: Aashish Sharma <aasharma@redhat.com>
2 weeks agoMerge pull request #66755 from anthonyeleven/updateslackinvite
Anthony D'Atri [Tue, 30 Dec 2025 04:20:43 +0000 (23:20 -0500)]
Merge pull request #66755 from anthonyeleven/updateslackinvite

doc/start: Update Slack invite URL in get-involved.rst

2 weeks agodoc/start: Update Slack invite URL in get-involved.rst 66755/head
Anthony D'Atri [Mon, 29 Dec 2025 18:43:00 +0000 (13:43 -0500)]
doc/start: Update Slack invite URL in get-involved.rst

Signed-off-by: Anthony D'Atri <anthonyeleven@users.noreply.github.com>
2 weeks agoMerge pull request #66713 from rhcs-dashboard/upgrade-angular
Nizamudeen A [Mon, 29 Dec 2025 11:27:23 +0000 (16:57 +0530)]
Merge pull request #66713 from rhcs-dashboard/upgrade-angular

mgr/dashboard: upgrade angular to 19

2 weeks agoMerge pull request #66638 from afreen23/fix-host-ip
Afreen Misbah [Mon, 29 Dec 2025 11:02:52 +0000 (16:32 +0530)]
Merge pull request #66638 from afreen23/fix-host-ip

mgr/dashboard: Fix display of IP address in host page

Reviewed-by: Nizamudeen A <nia@redhat.com>
2 weeks ago'mgr/dashboard: Fix display of IP address in host page 66638/head
Afreen Misbah [Mon, 15 Dec 2025 15:53:44 +0000 (21:23 +0530)]
'mgr/dashboard: Fix display of IP address in host page

- Hosts data is getting merged with hosts' facts which is not sending address hence not getting displayed in UI
- The value is empty hence in the API
- Caused by https://github.com/ceph/ceph/pull/65102

Fixes https://tracker.ceph.com/issues/74222

Signed-off-by: Afreen Misbah <afreen@ibm.com>
2 weeks agoMerge pull request #66100 from rhcs-dashboard/68263-carbonize-pools-form
Afreen Misbah [Mon, 29 Dec 2025 06:29:53 +0000 (11:59 +0530)]
Merge pull request #66100 from rhcs-dashboard/68263-carbonize-pools-form

mgr/dasboard : Carbonize pools form

Reviewed-by: Afreen Misbah <afreen@ibm.com>
3 weeks agomgr/dashboard: remove not needed 'cli_version' field from gw info command 66714/head
Tomer Haskalovitch [Mon, 15 Dec 2025 11:14:36 +0000 (13:14 +0200)]
mgr/dashboard: remove not needed 'cli_version' field from gw info command

Signed-off-by: Tomer Haskalovitch <tomer.haska@ibm.com>