]> git-server-git.apps.pok.os.sepia.ceph.com Git - ceph.git/log
ceph.git
2 days agomgr/dashboard: add an option to control the dashboard crypto caller pyo3-tentacle 66794/head
John Mulligan [Fri, 25 Apr 2025 15:22:26 +0000 (11:22 -0400)]
mgr/dashboard: add an option to control the dashboard crypto caller

Add a mgr config option `crypto_caller` that lets a ceph user override
the default behavior of using the remote crypto caller. Supported
values are `internal` and `remote`.

Signed-off-by: John Mulligan <jmulligan@redhat.com>
(cherry picked from commit 27c2050e37ed2556e1b2d0e5f6631d51b506ec6f)

2 days agomgr/cephadm: always use the internal cryptocaller
John Mulligan [Fri, 25 Apr 2025 15:06:41 +0000 (11:06 -0400)]
mgr/cephadm: always use the internal cryptocaller

The cephadm modules needs to use python cryptography module for ssh (via
asyncssh) and thus there's no need to use the remote crypto caller in
cephadm. Configure cephadm to always use the internal cryptocaller.

Signed-off-by: John Mulligan <jmulligan@redhat.com>
(cherry picked from commit 2128ffa619c9a4a800fb6394503b8ecc5b16fa96)

2 days agopython-common/cryptotools: catch all failures to read cert
John Mulligan [Fri, 25 Apr 2025 15:05:46 +0000 (11:05 -0400)]
python-common/cryptotools: catch all failures to read cert

Previously, the internal crypto caller would catch (and convert) some
errors when reading the cert but not all cases. Move the logic to catch
the errors to a common location and do it once consistently.

Signed-off-by: John Mulligan <jmulligan@redhat.com>
(cherry picked from commit f6ab08783c0f121d33709a2aaecb6087c69ae3f2)

2 days agopython-common/cryptotools: create module for selecting crypto caller
John Mulligan [Thu, 24 Apr 2025 19:17:50 +0000 (15:17 -0400)]
python-common/cryptotools: create module for selecting crypto caller

Add a module to select a desired crypto caller. Update the callers
to use the crypto caller interface.

Signed-off-by: John Mulligan <jmulligan@redhat.com>
(cherry picked from commit 0eb2f4b1327e9a0da11db246fcbd0c4ed4d832f0)

2 days agopython-common/cryptotools: move internal crypto caller to new file
John Mulligan [Thu, 24 Apr 2025 18:56:58 +0000 (14:56 -0400)]
python-common/cryptotools: move internal crypto caller to new file

Signed-off-by: John Mulligan <jmulligan@redhat.com>
(cherry picked from commit 0c774d5c767ef9875250de5a95e421a6b837b85e)

2 days agopython-common/cryptotools: add caller module for base class
John Mulligan [Thu, 24 Apr 2025 18:55:38 +0000 (14:55 -0400)]
python-common/cryptotools: add caller module for base class

Signed-off-by: John Mulligan <jmulligan@redhat.com>
(cherry picked from commit c3dc34a0d55e65694a1b7f2c0d423c4f2f0ed252)

2 days agopython-common/cryptotools: unify and organize all endpoint functions
John Mulligan [Thu, 24 Apr 2025 18:36:58 +0000 (14:36 -0400)]
python-common/cryptotools: unify and organize all endpoint functions

Lightly reorganize and make the "endpoint" functions in cryptotools.py more
consistent and uniform. Use small functions for input and output
handling so that the handling is done the same way throughout. Pass a
pre-constructed crypto caller via the args to then endpoint functions.
Make generating the private key it's own named function rather than
one single (and only) function with overloaded behavior controlled by
a cli switch.

Signed-off-by: John Mulligan <jmulligan@redhat.com>
(cherry picked from commit 552d7b4373afa1a93fe47ce234560b9c8485321d)

2 days agopython-common/cryptotools: use a main function
John Mulligan [Mon, 21 Apr 2025 19:50:22 +0000 (15:50 -0400)]
python-common/cryptotools: use a main function

Use a main function to encapsulate the cli parsing rather than a block
of code in module scope.

Signed-off-by: John Mulligan <jmulligan@redhat.com>
(cherry picked from commit c98e53f1136ebef2ffeb3d191ab2fc49d9728a3d)

2 days agopython-common/cryptotools: move actual crypto opts into a class
John Mulligan [Mon, 21 Apr 2025 19:07:59 +0000 (15:07 -0400)]
python-common/cryptotools: move actual crypto opts into a class

The functions now handle the i/o but allow the crypto function class
to centralize the functions that actually use the crypto libs.

Signed-off-by: John Mulligan <jmulligan@redhat.com>
(cherry picked from commit 4e4cfa58c4b124c0b0406619cc14ced0b2422550)

2 days agopybind/mgr: fix test case in test_tls.py
John Mulligan [Wed, 23 Apr 2025 15:23:43 +0000 (11:23 -0400)]
pybind/mgr: fix test case in test_tls.py

Why violate the typing in a test? mypy never noticed this because tests
are not type checked but there seems to be no need to turn a str into
bytes to pass to a function that is typed only as taking str!

Signed-off-by: John Mulligan <jmulligan@redhat.com>
(cherry picked from commit 955143ddfb3ea6f5f7b63902a734f17d393da4d8)

2 days agomgr/dashboard: replace direct use of bcrypt in dashboard
John Mulligan [Tue, 22 Apr 2025 20:31:15 +0000 (16:31 -0400)]
mgr/dashboard: replace direct use of bcrypt in dashboard

Replace a direct usage of bycrypt with our cryptocaller wrapper.

Signed-off-by: John Mulligan <jmulligan@redhat.com>
(cherry picked from commit d2fd81eae98d8dee4f3363616ecd3241b05cf560)

2 days agopython-common/cryptotools: give the parsers more sensible names
John Mulligan [Wed, 16 Apr 2025 18:55:08 +0000 (14:55 -0400)]
python-common/cryptotools: give the parsers more sensible names

Name the parser objects after their functions and not `foo` and `bar`.

Signed-off-by: John Mulligan <jmulligan@redhat.com>
(cherry picked from commit 5d4eeff0d5d6aa59fef2a6e2055615df3f94210e)

2 days agopybind/mgr: Appropriately rename function.
Paulo E. Castro [Fri, 25 Apr 2025 22:52:39 +0000 (23:52 +0100)]
pybind/mgr: Appropriately rename function.

Signed-off-by: Paulo E. Castro <pecastro@wormholenet.com>
(cherry picked from commit 21d6e1d493dc5652b2242ef2e0dc7e1c12714d20)

2 days agopython-common/cryptotools: Remove ascii and utf-8 references from encode/decode.
Paulo E. Castro [Wed, 23 Apr 2025 22:38:03 +0000 (23:38 +0100)]
python-common/cryptotools: Remove ascii and utf-8 references from encode/decode.

Signed-off-by: Paulo E. Castro <pecastro@wormholenet.com>
(cherry picked from commit e364df3914094b8e1c931a09ff8d6863b6d2845f)

2 days agopython-common/cryptotools: fix error path in verify tls function
John Mulligan [Wed, 23 Apr 2025 15:25:07 +0000 (11:25 -0400)]
python-common/cryptotools: fix error path in verify tls function

The remote verify_tls function was not raising errors when it should.
Fix the function so that it always returns an object when it succeeds or
fails gracefully. Always parse that function in the crypto caller class.

Signed-off-by: John Mulligan <jmulligan@redhat.com>
(cherry picked from commit 96a7a72cf414a3dc5c8587d34e80838cc64b71a4)

2 days agopybind/mgr: Correct code to ensure cephadm/tests/test_certmgr.py passes.
Paulo E. Castro [Wed, 23 Apr 2025 21:16:12 +0000 (22:16 +0100)]
pybind/mgr: Correct code to ensure cephadm/tests/test_certmgr.py passes.

Signed-off-by: Paulo E. Castro <pecastro@wormholenet.com>
(cherry picked from commit 218d84fc15d818d2df56c92cd71aeb2aa85f1590)

2 days agopython-common/cryptotools: Always encode, Err via stderr and signal the exit.
Paulo E. Castro [Tue, 22 Apr 2025 23:07:01 +0000 (00:07 +0100)]
python-common/cryptotools: Always encode, Err via stderr and signal the exit.

Signed-off-by: Paulo E. Castro <pecastro@wormholenet.com>
(cherry picked from commit 56d508f9dc1b5503a465cb2b25838a1e81182a49)

2 days agopython-common: Correct typo in private_key naming field.
Paulo E. Castro [Mon, 21 Apr 2025 21:13:28 +0000 (22:13 +0100)]
python-common: Correct typo in private_key naming field.

Signed-off-by: Paulo E. Castro <pecastro@wormholenet.com>
(cherry picked from commit 4bcab139830eead485412219509fbe390b046aec)

2 days agopybind/mgr: update mgr_util to use cryptotools CryptoCaller class
John Mulligan [Thu, 17 Apr 2025 21:12:50 +0000 (17:12 -0400)]
pybind/mgr: update mgr_util to use cryptotools CryptoCaller class

Signed-off-by: John Mulligan <jmulligan@redhat.com>
(cherry picked from commit 2b9cf2453f13eb48e43e4eb06c78365c397c50cd)

2 days agopython-common: remove unused dir
John Mulligan [Thu, 17 Apr 2025 17:24:48 +0000 (13:24 -0400)]
python-common: remove unused dir

Signed-off-by: John Mulligan <jmulligan@redhat.com>
(cherry picked from commit 9dcfde75e460476ccb2054662e6316236326ca09)

2 days agopython-common/cryptotools: use one single dir for cryptotools
John Mulligan [Thu, 17 Apr 2025 17:23:09 +0000 (13:23 -0400)]
python-common/cryptotools: use one single dir for cryptotools

Signed-off-by: John Mulligan <jmulligan@redhat.com>
(cherry picked from commit a5861c153e3dbb5482afe87525056cf194a436ff)

2 days agopython-common/cryptotools: create CrytpoCaller interface class
John Mulligan [Wed, 16 Apr 2025 18:56:28 +0000 (14:56 -0400)]
python-common/cryptotools: create CrytpoCaller interface class

Create a class to act as a common shim between the cryptotools external
functions and the mgr. It provides common conversion mechanisms and
could possibly act as an abstraction in case we decide to make
the external function calls in different ways in the future.

Signed-off-by: John Mulligan <jmulligan@redhat.com>
(cherry picked from commit 84710f9ed414a8d81e7ebc2d21488fd5f91e51ec)

2 days agopython-common/cryptotools: use json for structured output
John Mulligan [Wed, 16 Apr 2025 18:55:47 +0000 (14:55 -0400)]
python-common/cryptotools: use json for structured output

Where possible try to use structured output in JSON for easier parsing
and interaction with the parent process.

Signed-off-by: John Mulligan <jmulligan@redhat.com>
(cherry picked from commit 6f2d92cc6d6cccf6c84af5e3a3cea26f51a73399)

2 days agopybind/mgr: Hack around the 'ImportError: PyO3 modules may only be initialized once...
Paulo E. Castro [Sat, 5 Apr 2025 20:47:55 +0000 (21:47 +0100)]
pybind/mgr: Hack around the 'ImportError: PyO3 modules may only be initialized once per interpreter process' issue.

Fixes: https://tracker.ceph.com/issues/64213
Signed-off-by: Paulo E. Castro <pecastro@wormholenet.com>
(cherry picked from commit 717d0a6f3530ad3e07f4423002810327b2addcf1)

6 days agoMerge pull request #63345 from k0ste/wip-71359-tentacle
Kefu Chai [Thu, 1 Jan 2026 14:38:48 +0000 (22:38 +0800)]
Merge pull request #63345 from k0ste/wip-71359-tentacle

tentacle: mgr/DaemonServer: fixed mistype for mgr_osd_messages

Reviewed-by: Kefu Chai <k.chai@proxmox.com>
8 days agoMerge pull request #66737 from tchaikov/tentacle-backport-pr-66732
David Galloway [Mon, 29 Dec 2025 21:23:42 +0000 (16:23 -0500)]
Merge pull request #66737 from tchaikov/tentacle-backport-pr-66732

tentacle: debian/control: add iproute2 to build dependencies

8 days agoMerge pull request #66706 from tchaikov/tentacle-backport-pr-66700
David Galloway [Mon, 29 Dec 2025 21:20:31 +0000 (16:20 -0500)]
Merge pull request #66706 from tchaikov/tentacle-backport-pr-66700

tentacle: mgr/dashboard: update teuth_ref hash in api test

13 days agodebian/control: add iproute2 to build dependencies 66737/head
Kefu Chai [Wed, 24 Dec 2025 05:55:26 +0000 (13:55 +0800)]
debian/control: add iproute2 to build dependencies

Test scripts like qa/tasks/cephfs/mount.py expect the ip command to be
available in the container environment. Without it, tests fail with:

```
  /bin/bash: line 1: ip: command not found

  File "/ceph/qa/tasks/cephfs/mount.py", line 96, in cleanup_stale_netnses_and_bridge
    p = remote.run(args=['ip', 'netns', 'list'],
  ...
  teuthology.exceptions.CommandFailedError: Command failed with status 127: 'ip netns list'
```

Add iproute2 to the debian package build dependencies when the
<pkg.ceph.check> build profile is enabled. This ensures the package is
available during container-based builds, since buildcontainer-setup.sh
→ script/run-make.sh → install-deps.sh → debian/control → generated
dependency package chain respects build profiles configured via
`FOR_MAKE_CHECK` and `WITH_CRIMSON` environment variables set in
Dockerfile.build.

Signed-off-by: Kefu Chai <k.chai@proxmox.com>
(cherry picked from commit 599922aa582bbaa6fa8c8e274b780fabafb10a9b)

2 weeks agomgr/dashboard: update teuth_ref hash in api test 66706/head
Nizamudeen A [Fri, 19 Dec 2025 12:41:05 +0000 (18:11 +0530)]
mgr/dashboard: update teuth_ref hash in api test

update the hash to the latest commit where Kefu addressed the distutils
error.

Signed-off-by: Nizamudeen A <nia@redhat.com>
(cherry picked from commit 36fb920c5e88f7da24d0c7289d7e6bafd8b367d2)

2 weeks agoMerge pull request #66672 from ceph/apt-mirror-tentacle
David Galloway [Fri, 19 Dec 2025 03:50:50 +0000 (22:50 -0500)]
Merge pull request #66672 from ceph/apt-mirror-tentacle

tentacle: install-deps: Replace apt-mirror

2 weeks agoinstall-deps: Replace apt-mirror 66672/head
David Galloway [Tue, 16 Dec 2025 22:08:00 +0000 (17:08 -0500)]
install-deps: Replace apt-mirror

apt-mirror.front.sepia.ceph.com has happened to always work because we set up CNAMEs to gitbuilder.ceph.com.

That host is making its way to a new home upstate (literally and figuratively) so we'll get rid of the front subdomain since it's publicly accessible anyway and add TLS while we're at it.

Signed-off-by: David Galloway <david.galloway@ibm.com>
(cherry picked from commit 0b0c73ad860b20912c862b5376057153a5adab40)

3 weeks agoMerge pull request #66543 from aainscow/wip-74129-tentacle
Laura Flores [Mon, 15 Dec 2025 17:14:33 +0000 (11:14 -0600)]
Merge pull request #66543 from aainscow/wip-74129-tentacle

tentacle: osd: Fix fast EC truncate to whole stripe

Reviewed-by: Bill Scales <bill_scales@uk.ibm.com>
Reviewed-by: Radosław Zarzyński <Radoslaw.Adam.Zarzynski@ibm.com>
3 weeks agoMerge pull request #66592 from NitzanMordhai/wip-nitzan-pickup-object-corpus-20.2...
NitzanMordhai [Mon, 15 Dec 2025 11:09:57 +0000 (13:09 +0200)]
Merge pull request #66592 from NitzanMordhai/wip-nitzan-pickup-object-corpus-20.2.0-380-gdbcbbd3f281-tentacle

tentacle: pickup object corpus 20.2.0 380 gdbcbbd3f281

3 weeks agoMerge pull request #66590 from tchaikov/wip-66528-tentacle
Kefu Chai [Fri, 12 Dec 2025 14:26:16 +0000 (22:26 +0800)]
Merge pull request #66590 from tchaikov/wip-66528-tentacle

tentacle: debian/control: record python3-packaging dependency for ceph-volume

Reviewed-by: Guillaume Abrioux <gabrioux@ibm.com>
4 weeks agodoc/dev: update release checklist ceph-object-corpus 66592/head
Nitzan Mordechai [Wed, 10 Dec 2025 13:27:51 +0000 (13:27 +0000)]
doc/dev: update release checklist ceph-object-corpus

Signed-off-by: Nitzan Mordechai <nmordech@ibm.com>
4 weeks agoceph-object-corpus: pick up 20.2.0-380-gdbcbbd3f281
Nitzan Mordechai [Wed, 10 Dec 2025 13:25:55 +0000 (13:25 +0000)]
ceph-object-corpus: pick up 20.2.0-380-gdbcbbd3f281
ceph-object-corpus submodule

Signed-off-by: Nitzan Mordechai <nmordech@ibm.com>
4 weeks agodebian/control: record python3-packaging dependency for ceph-volume 66590/head
Thomas Lamprecht [Wed, 31 Jul 2024 07:48:08 +0000 (09:48 +0200)]
debian/control: record python3-packaging dependency for ceph-volume

Commit 0985e201 added `from packaging import version` to
ceph_volume/util/encryption.py. On Debian and its derivatives, the
packaging module is provided by the python3-packaging package.

Add python3-packaging to ceph-volume's runtime dependencies to ensure
this import is satisfied.

Signed-off-by: Thomas Lamprecht <t.lamprecht@proxmox.com>
Signed-off-by: Max R. Carrara <m.carrara@proxmox.com>
(cherry picked from commit a6ab6c63853d071f7383b0ce51d278de92fc3960)

4 weeks agoMerge pull request #65964 from ifed01/wip-ifed-fix-70390-tent
Adam Kupczyk [Tue, 9 Dec 2025 20:31:18 +0000 (21:31 +0100)]
Merge pull request #65964 from ifed01/wip-ifed-fix-70390-tent

tentacle: os/bluestore: cumulative patch to fix extent map resharding and around

4 weeks agoosd: Fix fast EC truncate to whole stripe 66543/head
Alex Ainscow [Sat, 6 Dec 2025 10:14:08 +0000 (10:14 +0000)]
osd: Fix fast EC truncate to whole stripe

WritePlanObj has a key-not-found exception on truncates to exact
stripe lengths.

I have recreated in a unit test as well as on a real system.

It is a concern that ceph_test_rados and ceph_test_rados_io_sequence
never hit this pattern naturally.

Signed-off-by: Alex Ainscow <aainscow@uk.ibm.com>
(cherry picked from commit 6075be4821e4a03b56c871a3b35fbd3375ee16e6)

4 weeks agoMerge pull request #66481 from rhcs-dashboard/wip-74029-tentacle
Afreen Misbah [Fri, 5 Dec 2025 09:19:09 +0000 (14:49 +0530)]
Merge pull request #66481 from rhcs-dashboard/wip-74029-tentacle

tentacle: mgr/dashboard: service creation fails if service name is same as sevice type

Reviewed-by: Naman Munet <nmunet@redhat.com>
4 weeks agoMerge pull request #66350 from rhcs-dashboard/wip-73913-tentacle
Afreen Misbah [Thu, 4 Dec 2025 14:32:58 +0000 (20:02 +0530)]
Merge pull request #66350 from rhcs-dashboard/wip-73913-tentacle

tentacle: mgr/dashboard: replace bootstrap badges with carbon tags

Reviewed-by: Afreen Misbah <afreen@ibm.com>
4 weeks agoMerge pull request #66156 from joscollin/wip-73743-tentacle
Neeraj Pratap Singh [Thu, 4 Dec 2025 12:10:30 +0000 (17:40 +0530)]
Merge pull request #66156 from joscollin/wip-73743-tentacle

tentacle: client: fix dump_mds_requests to valid json format

4 weeks agotentacle mgr/dashboard: replace bootstrap badges with carbon tags 66350/head
pujaoshahu [Wed, 16 Oct 2024 15:57:58 +0000 (21:27 +0530)]
tentacle mgr/dashboard: replace bootstrap badges with carbon tags

Fixes: https://tracker.ceph.com/issues/68252
Signed-off-by: pujaoshahu <pshahu@redhat.com>
(cherry picked from commit a0da67cb7f0e6066cb1fd0ba164564dc13bb688b)

  Conflicts:
        src/pybind/mgr/dashboard/frontend/src/app/ceph/cluster/cluster.module.ts
        src/pybind/mgr/dashboard/frontend/src/app/ceph/rgw/rgw-sync-primary-zone/rgw-sync-primary-zone.component.html
        src/pybind/mgr/dashboard/frontend/src/app/core/navigation/navigation.module.ts
        src/pybind/mgr/dashboard/frontend/src/app/core/navigation/navigation/navigation.component.html
        src/pybind/mgr/dashboard/frontend/src/app/shared/components/card/card.component.html
        src/pybind/mgr/dashboard/frontend/src/app/shared/components/components.module.ts
        src/pybind/mgr/dashboard/frontend/src/app/shared/components/select-badges/select-badges.component.html
        src/pybind/mgr/dashboard/frontend/src/app/shared/datatable/table/table.component.scss
        src/pybind/mgr/dashboard/frontend/src/styles.scss

5 weeks agomgr/dashboard: service creation fails if service name is same as service type 66481/head
Naman Munet [Fri, 21 Nov 2025 04:41:44 +0000 (10:11 +0530)]
mgr/dashboard: service creation fails if service name is same as service type

Fixes: https://tracker.ceph.com/issues/73948
Signed-off-by: Naman Munet <naman.munet@ibm.com>
(cherry picked from commit 57d081d6b5efcbeac6c60e73d50aa5f1f8cab560)

5 weeks agoMerge pull request #66276 from rhcs-dashboard/wip-73755-tentacle
afreen23 [Tue, 2 Dec 2025 13:15:19 +0000 (18:45 +0530)]
Merge pull request #66276 from rhcs-dashboard/wip-73755-tentacle

tentacle: mgr/dashboard : fix - about model tooltip issue

Reviewed-by: Afreen Misbah <afreen@ibm.com>
5 weeks agoMerge pull request #66351 from rhcs-dashboard/wip-73950-tentacle
afreen23 [Tue, 2 Dec 2025 13:14:54 +0000 (18:44 +0530)]
Merge pull request #66351 from rhcs-dashboard/wip-73950-tentacle

tentacle: mgr/dashboard: rgw accounts form group mode disable option is not working

Reviewed-by: Afreen Misbah <afreen@ibm.com>
5 weeks agoMerge pull request #66401 from afreen23/wip-73976-tentacle
afreen23 [Tue, 2 Dec 2025 13:04:46 +0000 (18:34 +0530)]
Merge pull request #66401 from afreen23/wip-73976-tentacle

tentacle: mgr/dashboard: Carbonize the Change Password Form

Reviewed-by: Nizamudeen A <nia@redhat.com>
5 weeks agomgr/dashboard: Carbonize the Change Password Form 66401/head
Afreen Misbah [Tue, 21 Oct 2025 16:37:46 +0000 (22:07 +0530)]
mgr/dashboard: Carbonize the Change Password Form

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

-  using carbon based stylings, typography and components
-  used grid layout for form arrangement
-  breadcrumb is slightly off, which needs to be fixed by applying grid layout to the app shell

Signed-off-by: Afreen Misbah <afreen@ibm.com>
(cherry picked from commit 2d43f598b8f4ffa3392632c25265794ea7110933)

5 weeks agoMerge pull request #66464 from cbodley/wip-doc-release-os-recommendation-tentacle
Casey Bodley [Mon, 1 Dec 2025 21:57:31 +0000 (16:57 -0500)]
Merge pull request #66464 from cbodley/wip-doc-release-os-recommendation-tentacle

tentacle: doc: add Tentacle to os recommendations

Reviewed-by: Ilya Dryomov <idryomov@gmail.com>
5 weeks agodoc: remove redundant note about tested container hosts 66464/head
Casey Bodley [Mon, 1 Dec 2025 17:53:59 +0000 (12:53 -0500)]
doc: remove redundant note about tested container hosts

Signed-off-by: Casey Bodley <cbodley@redhat.com>
(cherry picked from commit c77be615ebede6d948c94a3ef618e53dc79c9920)

5 weeks agodoc: remove old distros from os recommendations
Casey Bodley [Mon, 1 Dec 2025 17:53:42 +0000 (12:53 -0500)]
doc: remove old distros from os recommendations

Signed-off-by: Casey Bodley <cbodley@redhat.com>
(cherry picked from commit 86b0a158d076d3fd11e1300cc14dc7e767d0180f)

5 weeks agodoc: remove os recommendations for eol releases
Casey Bodley [Wed, 26 Nov 2025 16:06:16 +0000 (11:06 -0500)]
doc: remove os recommendations for eol releases

Signed-off-by: Casey Bodley <cbodley@redhat.com>
(cherry picked from commit 39974503b2fbb0118890e2826e8d91fa23f1d3be)

5 weeks agodoc/dev: add os-recommendations.rst to release checklist
Casey Bodley [Wed, 26 Nov 2025 15:44:14 +0000 (10:44 -0500)]
doc/dev: add os-recommendations.rst to release checklist

Signed-off-by: Casey Bodley <cbodley@redhat.com>
(cherry picked from commit 97c24aaaa844b4b5d59228c11e9cdb759a8212f2)

5 weeks agodoc: add Tentacle to os recommendations
Casey Bodley [Wed, 26 Nov 2025 15:41:31 +0000 (10:41 -0500)]
doc: add Tentacle to os recommendations

Signed-off-by: Casey Bodley <cbodley@redhat.com>
(cherry picked from commit 459df3293a6ac374394980d880a76b74b9652b4a)

5 weeks agodoc: remove Octopus and Centos7 from os recommendations
Casey Bodley [Wed, 26 Nov 2025 15:36:53 +0000 (10:36 -0500)]
doc: remove Octopus and Centos7 from os recommendations

cleanup to prepare for tentacle

Signed-off-by: Casey Bodley <cbodley@redhat.com>
(cherry picked from commit 5ad48c95e1477930b3d8598917785039412876c4)

5 weeks agodoc: Update os-recommendations.rst to remove empty rows
Joseph Mundackal [Thu, 9 Oct 2025 17:09:26 +0000 (13:09 -0400)]
doc: Update os-recommendations.rst to remove empty rows

- Removing rows in tables without any supported versions

Signed-off-by: Joseph Mundackal <jmundackal@bloomberg.net>
(cherry picked from commit ab30d60998b926b546cf6ef424ef70498f5d3163)

5 weeks agoMerge pull request #65605 from adamemerson/wip-70916-tentacle
Yuri Weinstein [Mon, 1 Dec 2025 18:37:25 +0000 (10:37 -0800)]
Merge pull request #65605 from adamemerson/wip-70916-tentacle

tentacle: test/neorados: Catch timeouts in Poll test

Reviewed-by: Radoslaw Zarzynski <rzarzyns@redhat.com>
6 weeks agoMerge pull request #66324 from ljflores/wip-73932-tentacle
Laura Flores [Fri, 21 Nov 2025 21:32:21 +0000 (15:32 -0600)]
Merge pull request #66324 from ljflores/wip-73932-tentacle

tentacle: mon: ceph pg repeer should propose a correctly sized pg temp.

Reviewed-by: Radoslaw Zarzynski <rzarzyns@redhat.com>
6 weeks agomgr/dashboard: rgw accounts form group mode disable option is not working 66351/head
Naman Munet [Wed, 19 Nov 2025 14:58:25 +0000 (20:28 +0530)]
mgr/dashboard: rgw accounts form group mode disable option is not working

Fixes: https://tracker.ceph.com/issues/73926
Signed-off-by: Naman Munet <naman.munet@ibm.com>
(cherry picked from commit 89005c0f29ccad9a8bab37dba94f4559e135a238)

6 weeks agoMerge pull request #66334 from jmundack/wip-73920-tentacle
Radoslaw Zarzynski [Fri, 21 Nov 2025 11:10:00 +0000 (12:10 +0100)]
Merge pull request #66334 from jmundack/wip-73920-tentacle

tentacle: test/ceph_assert.cc: Disable core files

Reviewed-by: Radoslaw Zarzynski <rzarzyns@redhat.com>
6 weeks agoMerge pull request #66306 from afreen23/wip-73896-tentacle
afreen23 [Fri, 21 Nov 2025 10:07:18 +0000 (15:37 +0530)]
Merge pull request #66306 from afreen23/wip-73896-tentacle

tentacle: mgr/dashboard: Remove illegible texts from the dashboard

Reviewed-by: Afreen Misbah <afreen@ibm.com>
6 weeks agoMerge pull request #66256 from tchaikov/wip-tentacle-bp-pr-65936
Kefu Chai [Fri, 21 Nov 2025 09:36:41 +0000 (17:36 +0800)]
Merge pull request #66256 from tchaikov/wip-tentacle-bp-pr-65936

tentacle: cephadm, debian/rules: Use system packages for cephadm bundled dependencies

Reviewed-by: John Mulligan <jmulligan@redhat.com>
6 weeks agoMerge pull request #66248 from tchaikov/wip-tentacle-bp-pr-65935
Kefu Chai [Fri, 21 Nov 2025 08:46:59 +0000 (16:46 +0800)]
Merge pull request #66248 from tchaikov/wip-tentacle-bp-pr-65935

tentacle: debian/control: Add libxsimd-dev build dependency for vendored Arrow

Reviewed-by: Casey Bodley <cbodley@redhat.com>
6 weeks agoMerge pull request #66302 from rhcs-dashboard/wip-73882-tentacle
afreen23 [Fri, 21 Nov 2025 07:17:53 +0000 (12:47 +0530)]
Merge pull request #66302 from rhcs-dashboard/wip-73882-tentacle

tentacle: mgr/dashboard: Carbonize multisite sync policy forms

Reviewed-by: Afreen Misbah <afreen@ibm.com>
6 weeks agotest/ceph_assert.cc: Disable core files 66334/head
Bob Ham [Thu, 10 Apr 2025 12:24:22 +0000 (12:24 +0000)]
test/ceph_assert.cc: Disable core files

Without this, core files are produced which subsequently cause
failures in other tests, specifically smoke.sh and safe-to-destroy.sh.

Fixes: bfa83df6d33ee2238f1389ca4518592b5c4fb267
Signed-off-by: Bob Ham <bham12@bloomberg.net>
test/ceph_assert.cc: Update line numbers

Signed-off-by: Bob Ham <bham12@bloomberg.net>
(cherry picked from commit 430a9aad5538f7f2e7aa0595220b4cae78d252a3)

6 weeks agoMerge pull request #66102 from shraddhaag/wip-73686-tentacle
Shraddha Agrawal [Thu, 20 Nov 2025 12:28:06 +0000 (17:58 +0530)]
Merge pull request #66102 from shraddhaag/wip-73686-tentacle

tentacle: tasks/cbt_performance: Tolerate exceptions during performance data up…

6 weeks agotasks/cbt_performance: Tolerate exceptions during performance data updates 66102/head
Nitzan Mordechai [Wed, 22 Oct 2025 05:41:56 +0000 (05:41 +0000)]
tasks/cbt_performance: Tolerate exceptions during performance data updates

If an exception occurs during the POST request to update CBT performance,
log the error instead of failing the entire job. This ensures that
intermittent update failures do not block the main workflow.

Fixes: https://tracker.ceph.com/issues/68843
Signed-off-by: Nitzan Mordechai <nmordech@ibm.com>
(cherry picked from commit b47880f82de436776acab7ff13fb5e6496e49170)

6 weeks agomon: ceph pg repeer should propose a correctly sized pg temp. 66324/head
Alex Ainscow [Wed, 19 Nov 2025 11:32:14 +0000 (11:32 +0000)]
mon: ceph pg repeer should propose a correctly sized pg temp.

Fixes: https://tracker.ceph.com/issues/73897
Signed-off-by: Alex Ainscow <aainscow@uk.ibm.com>
(cherry picked from commit a3cc500a543d1c2fb9e1d55c144e0a041e3d1f80)

6 weeks agoMerge pull request #65830 from soumyakoduri/wip-skoduri-tentacle 66329/head
J. Eric Ivancich [Wed, 19 Nov 2025 18:16:45 +0000 (13:16 -0500)]
Merge pull request #65830 from soumyakoduri/wip-skoduri-tentacle

[rgw][tentacle] backport of cloud-restore related PRs

Reviewed-by: J. Eric Ivancich <ivancich@redhat.com>
7 weeks agomgr/dashboard: Remove illegible texts from the dashboard 66306/head
Afreen Misbah [Mon, 17 Nov 2025 17:18:58 +0000 (22:48 +0530)]
mgr/dashboard: Remove illegible texts from the dashboard

Signed-off-by: Afreen Misbah <afreen@ibm.com>
(cherry picked from commit d4969e18310b707a0611409461dd85683af06249)

7 weeks agoMerge pull request #66295 from rhcs-dashboard/wip-73876-tentacle
afreen23 [Tue, 18 Nov 2025 12:16:50 +0000 (17:46 +0530)]
Merge pull request #66295 from rhcs-dashboard/wip-73876-tentacle

tentacle: mgr/dashboard : Remove subalerts details for multiple subalerts

Reviewed-by: Afreen Misbah <afreen@ibm.com>
7 weeks agoMerge pull request #66271 from rhcs-dashboard/wip-73855-tentacle
afreen23 [Tue, 18 Nov 2025 07:25:20 +0000 (12:55 +0530)]
Merge pull request #66271 from rhcs-dashboard/wip-73855-tentacle

tentacle: mgr/dashboard : Fixed warning icon colour issue with carbon colour

Reviewed-by: Afreen Misbah <afreen@ibm.com>
7 weeks agoMerge pull request #66284 from afreen23/wip-73869-tentacle
afreen23 [Tue, 18 Nov 2025 07:24:55 +0000 (12:54 +0530)]
Merge pull request #66284 from afreen23/wip-73869-tentacle

tentacle: mgr/dashboard: Set max subsystem count to 512 rather than 4096

Reviewed-by: Nizamudeen A <nia@redhat.com>
7 weeks agoMerge pull request #66209 from rhcs-dashboard/wip-73803-tentacle
Nizamudeen A [Tue, 18 Nov 2025 03:36:57 +0000 (09:06 +0530)]
Merge pull request #66209 from rhcs-dashboard/wip-73803-tentacle

tentacle: mgr/cephadm: update grafana conf for disconnected environment

Reviewed-by: Ankush Behl <cloudbehl@gmail.com>
7 weeks agomgr/dashboard: Carbonize multisite sync policy forms 66302/head
Naman Munet [Fri, 31 Oct 2025 17:38:49 +0000 (23:08 +0530)]
mgr/dashboard: Carbonize multisite sync policy forms

Fixes: https://tracker.ceph.com/issues/73164
Signed-off-by: Naman Munet <naman.munet@ibm.com>
(cherry picked from commit 495f9b74965ea255776b9f4605f7a2df0016bcfd)

 Conflicts:
src/pybind/mgr/dashboard/frontend/src/app/ceph/rgw/rgw-multisite-sync-flow-modal/rgw-multisite-sync-flow-modal.component.html
src/pybind/mgr/dashboard/frontend/src/app/ceph/rgw/rgw-multisite-sync-pipe-modal/rgw-multisite-sync-pipe-modal.component.html
src/pybind/mgr/dashboard/frontend/src/app/ceph/rgw/rgw-multisite-sync-pipe-modal/rgw-multisite-sync-pipe-modal.component.spec.ts

7 weeks agoMerge pull request #66164 from VinayBhaskar-V/wip-73737-tentacle
Yuri Weinstein [Mon, 17 Nov 2025 19:51:31 +0000 (11:51 -0800)]
Merge pull request #66164 from VinayBhaskar-V/wip-73737-tentacle

tentacle: rbd-mirror: allow incomplete demote snapshot to sync after rbd-mirror daemon restart

Reviewed-by: Ilya Dryomov <idryomov@redhat.com>
7 weeks agomgr/dashboard : Remove subalerts details for multiple subalerts 66295/head
Abhishek Desai [Sun, 9 Nov 2025 19:18:20 +0000 (00:48 +0530)]
mgr/dashboard : Remove subalerts details for multiple subalerts
fixes : https://tracker.ceph.com/issues/73766
Signed-off-by: Abhishek Desai <abhishek.desai1@ibm.com>
(cherry picked from commit d6ba31e800648a03f1e62e6f0425391b74f09d67)

7 weeks agomgr/dashboard: Set max subsystem count to 512 rather than 4096 66284/head
Afreen Misbah [Mon, 17 Nov 2025 05:01:45 +0000 (10:31 +0530)]
mgr/dashboard: Set max subsystem count to 512 rather than 4096

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

- regression from https://github.com/ceph/ceph/pull/64477/files
- removing frontend valdations as this values are volatiel and require changes every release. Nvmeof is seeting these and validating as well.

Signed-off-by: Afreen Misbah <afreen@ibm.com>
(cherry picked from commit d29084085bab52ef6eba224d35b58c44b6157ef6)

7 weeks agoMerge pull request #65544 from guits/wip-72981-tentacle
Guillaume Abrioux [Mon, 17 Nov 2025 15:36:30 +0000 (16:36 +0100)]
Merge pull request #65544 from guits/wip-72981-tentacle

tentacle: ceph-volume: support additional dmcrypt params

7 weeks agomgr/dashboard : fix - about model tooltip issue 66276/head
Devika Babrekar [Mon, 17 Nov 2025 10:24:51 +0000 (15:54 +0530)]
mgr/dashboard : fix - about model tooltip issue
fixes : https://tracker.ceph.com/issues/73753
Signed-off-by: Devika Babrekar <devika.babrekar@ibm.com>
(cherry picked from commit ea060de8481ec7b5163fcb2d6512e2e7dca569ae)

7 weeks agoMerge pull request #65098 from idryomov/wip-72544-tentacle
Ilya Dryomov [Mon, 17 Nov 2025 08:25:37 +0000 (09:25 +0100)]
Merge pull request #65098 from idryomov/wip-72544-tentacle

tentacle: pybind/rados: Add list_lockers() and break_lock() to Rados Python interface

Reviewed-by: Bill Scales <bill_scales@uk.ibm.com>
7 weeks agomgr/dashboard : Fixed warning icon colour issue with carbon colour 66271/head
Abhishek Desai [Mon, 10 Nov 2025 06:10:34 +0000 (11:40 +0530)]
mgr/dashboard : Fixed warning icon colour issue with carbon colour
fixes : https://tracker.ceph.com/issues/73769
Signed-off-by: Abhishek Desai <abhishek.desai1@ibm.com>
(cherry picked from commit 6ee90df0035d1ce501d17b1bc65e13d29b7b8835)

 Conflicts:
src/pybind/mgr/dashboard/frontend/src/app/core/navigation/navigation/navigation.component.html

7 weeks agodebian: Use system packages for cephadm bundled dependencies 66256/head
Kefu Chai [Tue, 21 Oct 2025 03:25:00 +0000 (11:25 +0800)]
debian: Use system packages for cephadm bundled dependencies

Configure the Debian build to use CEPHADM_BUNDLED_DEPENDENCIES=deb,
which instructs the cephadm build script to bundle dependencies from
system-installed Debian packages instead of downloading from PyPI.

This change addresses build failures in restricted network environments
where Debian build tools do not permit internet access. By leveraging
the Debian package support added in commit 9378a2988e1, the build now
uses python3-markupsafe, python3-jinja2, and python3-yaml packages
that are already installed as build dependencies.

This approach mirrors the existing RPM packaging workflow, ensuring
consistent behavior across different distribution package formats.

Signed-off-by: Kefu Chai <k.chai@proxmox.com>
(cherry picked from commit 25680021ee2422f8b8b4075b3ab77af39126eecc)

7 weeks agocephadm/tests: Add tests for deb bundled dependencies
Kefu Chai [Tue, 21 Oct 2025 03:26:25 +0000 (11:26 +0800)]
cephadm/tests: Add tests for deb bundled dependencies

Add container definitions and test cases for building cephadm with
Debian package dependencies. The new test_cephadm_build_from_debs
function mirrors the existing RPM test structure, verifying that:

- Build succeeds when required Debian packages are installed
- Build fails when packages are missing
- Bundled packages are correctly identified as sourced from 'deb'
- All expected packages (Jinja2, MarkupSafe, PyYAML) are included
- The zipapp contains expected package directories

Test environments include Ubuntu 22.04 and 24.04 with and without
the required python3-jinja2, python3-yaml, and python3-markupsafe
packages.

Signed-off-by: Kefu Chai <k.chai@proxmox.com>
(cherry picked from commit f670dce5d0b819f2fb105339d8611509e81a0355)

7 weeks agocephadm/build: Add Debian package support for bundled dependencies
Kefu Chai [Tue, 14 Oct 2025 13:04:42 +0000 (21:04 +0800)]
cephadm/build: Add Debian package support for bundled dependencies

Extends the cephadm build script to support bundling dependencies from
Debian packages in addition to pip and RPM packages. This allows building
cephadm on Debian-based distributions using system packages.

Key changes:
- Add 'deb' to DependencyMode enum to enable Debian package mode
- Implement _setup_deb() to configure Debian dependency requirements
- Add _install_deb_deps() to orchestrate Debian package installation
- Add _gather_deb_package_dirs() to parse Debian package file listings
  and locate Python package directories (handles both site-packages and
  dist-packages directories used by Debian)
- Add _deps_from_deb() to extract Python dependencies from installed
  Debian packages using dpkg/apt-cache tools
- Fix variable reference bug in _install_deps() (deps.mode -> config.deps_mode)

The Debian implementation follows a similar pattern to the existing RPM
support, using dpkg-query and dpkg -L to locate installed packages and
their files, with special handling for Debian naming conventions
(e.g., PyYAML -> python3-yaml).

Signed-off-by: Kefu Chai <k.chai@proxmox.com>
(cherry picked from commit 3ff9b0c24e33debe95a0a0c6b42da30be788871c)

7 weeks agocephadm: fix zip_root_entries population in version command
Kefu Chai [Mon, 10 Nov 2025 04:11:08 +0000 (12:11 +0800)]
cephadm: fix zip_root_entries population in version command

The 'cephadm version --verbose' command was returning an empty
zip_root_entries list because it relied on the private '_files'
attribute of zipimport.zipimporter, which is not reliably populated
across Python versions.

This commit fixes the issue by using the zipfile module to properly
read the archive contents via the loader.archive path. This ensures
that zip_root_entries is correctly populated with the root-level
directories in the zipapp.

This fix is necessary for the cephadm build tests to properly validate
that all expected packages and modules are included in the built zipapp.

Signed-off-by: Kefu Chai <k.chai@proxmox.com>
(cherry picked from commit 2c68c1496dbb7cd01bf783e31510940445040a34)

7 weeks agocephadm/tests: fix _dist_info function logic error
Kefu Chai [Mon, 10 Nov 2025 04:10:46 +0000 (12:10 +0800)]
cephadm/tests: fix _dist_info function logic error

The _dist_info helper function had a logic error where it was checking
if 'entry.startswith(entry)' instead of 'entry.startswith(name)'. This
caused the function to always evaluate incorrectly when checking for
.dist-info or .egg-info entries in the zipapp.

This bug was preventing the test assertions from properly validating
that package metadata directories are included in the built cephadm
zipapp.

Fixes a bug introduced in commit 31c8010faa4.

Signed-off-by: Kefu Chai <k.chai@proxmox.com>
(cherry picked from commit 2fadd34104652940844eb914ff3b0b53cb5ff190)

7 weeks agoMerge pull request #66091 from rhcs-dashboard/wip-73680-tentacle
afreen23 [Thu, 13 Nov 2025 08:35:18 +0000 (14:05 +0530)]
Merge pull request #66091 from rhcs-dashboard/wip-73680-tentacle

tentacle: mgr/dashboard: fix icon alignment in navigation header

Reviewed-by: Afreen Misbah <afreen@ibm.com>
7 weeks agodebian/control: Add libxsimd-dev build dependency for vendored Arrow 66226/head 66248/head
Kefu Chai [Wed, 15 Oct 2025 07:46:26 +0000 (15:46 +0800)]
debian/control: Add libxsimd-dev build dependency for vendored Arrow

In commit e8460cbd, we introduced the "pkg.ceph.arrow" build profile to
support building with system Arrow packages. However, neither Debian nor
Ubuntu currently ships Arrow packages.

Since WITH_RADOSGW_SELECT_PARQUET is always enabled in debian/rules,
Arrow support is required for all builds. When the pkg.ceph.arrow profile
is not selected, the build uses vendored Arrow. With the recent change to
use AUTO mode for xsimd detection, Arrow will attempt to find system xsimd
>= 9.0.1. Adding libxsimd-dev as a build dependency ensures it's available
for Arrow to detect and use, reducing build time on supported distributions.

On distributions with insufficient xsimd versions (< 9.0.1), Arrow will
automatically fall back to its bundled version.

Signed-off-by: Kefu Chai <k.chai@proxmox.com>
(cherry picked from commit 929b47f83880683b376b9dcc0060938447f11c88)

7 weeks agocmake/BuildArrow: Use AUTO mode for xsimd dependency detection
Kefu Chai [Wed, 15 Oct 2025 07:46:22 +0000 (15:46 +0800)]
cmake/BuildArrow: Use AUTO mode for xsimd dependency detection

Arrow requires xsimd >= 9.0.1 according to arrow/cpp/thirdparty/versions.txt.
Previously, we unconditionally set -Dxsimd_SOURCE=BUNDLED, forcing the use
of Arrow's vendored xsimd regardless of system package availability.

This commit changes to -Dxsimd_SOURCE=AUTO, which allows Arrow's
resolve_dependency mechanism to automatically:
1. Try to find system xsimd package
2. Check if version >= 9.0.1
3. Use system version if found and sufficient
4. Fall back to bundled version otherwise

This reduces build time and dependencies on systems with sufficient xsimd,
while maintaining compatibility with older distributions.

Distribution availability:
- Ubuntu Noble (24.04): libxsimd-dev 12.1.1 (✓ will use system)
- Ubuntu Jammy (22.04): libxsimd-dev 7.6.0 (✗ will use bundled)
- Debian Trixie (13): libxsimd-dev 13.2.0 (✓ will use system)
- CentOS Stream 9: xsimd-devel 7.4.9 (✗ will use bundled)

Signed-off-by: Kefu Chai <k.chai@proxmox.com>
(cherry picked from commit 2defde30e4c61cd9f33196b91ac16505928ce774)

5 months agomgr/DaemonServer: fixed mistype for mgr_osd_messages 63345/head
Konstantin Shalygin [Thu, 5 Dec 2024 09:23:37 +0000 (12:23 +0300)]
mgr/DaemonServer: fixed mistype for mgr_osd_messages

Triple 's' to double 's', as option name

Signed-off-by: Konstantin Shalygin <k0ste@k0ste.ru>
(cherry picked from commit 618025908cc0389bbf0d237e0b124240e3c13aa4)

5 months agoMerge pull request #64442 from ronen-fr/wip-rf-noempty-64429-tentacle
SrinivasaBharathKanta [Fri, 18 Jul 2025 03:26:28 +0000 (08:56 +0530)]
Merge pull request #64442 from ronen-fr/wip-rf-noempty-64429-tentacle

tentacle: qa/standalone/scrub: fix "scrubbed in 0ms" in osd-scrub-test.sh

5 months agoMerge pull request #64419 from ljflores/wip-72023-tentacle
SrinivasaBharathKanta [Fri, 18 Jul 2025 03:26:17 +0000 (08:56 +0530)]
Merge pull request #64419 from ljflores/wip-72023-tentacle

tentacle: qa/tasks: generalize stuck pg ignorelist entry

5 months agoMerge pull request #64414 from ljflores/wip-72052-tentacle
Laura Flores [Thu, 17 Jul 2025 20:19:58 +0000 (15:19 -0500)]
Merge pull request #64414 from ljflores/wip-72052-tentacle

tentacle: Optimised EC: Ignore snapshot scrubbing on non-primary shards

5 months agoMerge pull request #64556 from zdover23/wip-doc-2025-07-17-backport-64537-to-tentacle...
Anthony D'Atri [Thu, 17 Jul 2025 13:32:23 +0000 (09:32 -0400)]
Merge pull request #64556 from zdover23/wip-doc-2025-07-17-backport-64537-to-tentacle-take-two

tentacle: doc/radosgw: Improve formatting and language in bucket_logging.rst

5 months agodoc/radosgw: Improve formatting and language in bucket_logging.rst 64556/head
Ville Ojamo [Wed, 16 Jul 2025 07:14:26 +0000 (14:14 +0700)]
doc/radosgw: Improve formatting and language in bucket_logging.rst

Trim trailing extra line characters around main title.

Add missing full stops in list items.

Use double backticks for configuration options, data etc.

Linkify reference to REST API.

No hyphen in "regular expression".

Fix section hierarchy by moving "Log Records" up 2 levels and try to
make the section title more consistent with another section title.

Try to improve partial sentences and try to simplify one sentence.

Remove whitespace at otherwise empty line.

Signed-off-by: Ville Ojamo <14869000+bluikko@users.noreply.github.com>
(cherry picked from commit a19834c2bbdef6feb7b4bf5266d40f4d427a8247)

5 months agoMerge pull request #64515 from afreen23/wip-72146-tentacle
afreen23 [Thu, 17 Jul 2025 09:16:01 +0000 (14:46 +0530)]
Merge pull request #64515 from afreen23/wip-72146-tentacle

tentacle: mgr/dashboard: Fix smb module enablement

Reviewed-by: Pedro Gonzalez Gomez <pegonzal@redhat.com>
5 months agoMerge pull request #63773 from zdover23/wip-doc-2025-06-06-backport-63740-to-tentacle
Zac Dover [Thu, 17 Jul 2025 06:35:27 +0000 (16:35 +1000)]
Merge pull request #63773 from zdover23/wip-doc-2025-06-06-backport-63740-to-tentacle

tentacle: doc/mgr: edit telemetry (3 of x)

Reviewed-by: Anthony D'Atri <anthony.datri@gmail.com>
5 months agoMerge pull request #64546 from zdover23/wip-doc-2025-07-17-backport-64532-to-tentacle
Zac Dover [Thu, 17 Jul 2025 06:34:46 +0000 (16:34 +1000)]
Merge pull request #64546 from zdover23/wip-doc-2025-07-17-backport-64532-to-tentacle

tentacle: doc/radosgw: edit "Lifecycle Settings"

Reviewed-by: Anthony D'Atri <anthony.datri@gmail.com>
5 months agodoc/mgr: edit telemetry (3 of x) 63773/head
Zac Dover [Thu, 5 Jun 2025 02:24:08 +0000 (12:24 +1000)]
doc/mgr: edit telemetry (3 of x)

Improve the English and the formatting in doc/mgr/telemetry.rst. This
follows up on https://github.com/ceph/ceph/pull/63476.

This commit edits the third hundred lines in doc/mgr/telemetry.rst.

Signed-off-by: Zac Dover <zac.dover@proton.me>
(cherry picked from commit 3ce61e065121e07e2c37097f1fe6736bdf985e8e)