]> git.apps.os.sepia.ceph.com Git - ceph.git/log
ceph.git
12 days agomgr/dashboard: add an option to control the dashboard crypto caller 62951/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>
12 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>
12 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>
12 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>
12 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>
12 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>
12 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>
12 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>
12 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>
12 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>
12 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>
12 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>
12 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>
12 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>
12 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>
12 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>
12 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>
12 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>
12 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>
12 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>
12 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>
12 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>
12 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>
12 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>
13 days agoMerge pull request #64275 from xxhdx1985126/wip-crimson-backedn-namespace
Matan Breizman [Mon, 7 Jul 2025 11:43:47 +0000 (14:43 +0300)]
Merge pull request #64275 from xxhdx1985126/wip-crimson-backedn-namespace

crimson/osd: put PGBackend/RecoveryBackend/PGRecovery and other related classes into the crimson::osd  namespace

Reviewed-by: Xuehan Xu <xuxuehan@qianxin.com>
13 days agoMerge pull request #64262 from Matan-B/wip-matanb-crimson-abort-msg
Matan Breizman [Mon, 7 Jul 2025 11:43:03 +0000 (14:43 +0300)]
Merge pull request #64262 from Matan-B/wip-matanb-crimson-abort-msg

crimson: switch to ceph_abort_msg

Reviewed-by: Yingxin Cheng <yingxin.cheng@intel.com>
13 days agoMerge pull request #64246 from tchaikov/wip-cmake-drop-with_seastar
Matan Breizman [Mon, 7 Jul 2025 11:42:30 +0000 (14:42 +0300)]
Merge pull request #64246 from tchaikov/wip-cmake-drop-with_seastar

cmake: replace WITH_SEASTAR with WITH_CRIMSON

Reviewed-by: Matan Breizman <mbreizma@redhat.com>
13 days agoMerge pull request #63817 from mohit84/objectstore_type
Matan Breizman [Mon, 7 Jul 2025 11:38:53 +0000 (14:38 +0300)]
Merge pull request #63817 from mohit84/objectstore_type

crimson: Use osd_objectstore instead of using crimson_osd_objectstore

Reviewed-by: Matan Breizman <mbreizma@redhat.com>
13 days agoMerge pull request #64067 from VallariAg/wip-nvmeof-keepalive-alert
Vallari Agrawal [Mon, 7 Jul 2025 11:36:33 +0000 (17:06 +0530)]
Merge pull request #64067 from VallariAg/wip-nvmeof-keepalive-alert

monitoring: Add alert NVMeoFHostKeepAliveTimeout

13 days agoMerge pull request #62170 from connorfawcett/wip-online-consistency-checker-0703
Connor Fawcett [Mon, 7 Jul 2025 10:32:05 +0000 (11:32 +0100)]
Merge pull request #62170 from connorfawcett/wip-online-consistency-checker-0703

erasure-code: Add a new utility which checks the consistency of objects within an EC pool

13 days agoMerge pull request #64110 from yuvalif/wip-yuval-71402
Yuval Lifshitz [Mon, 7 Jul 2025 08:18:37 +0000 (11:18 +0300)]
Merge pull request #64110 from yuvalif/wip-yuval-71402

rgw/notifications: add http request timeout and max inflight

13 days agoMerge pull request #64328 from yuvalif/wip-yuval-71945
Yuval Lifshitz [Mon, 7 Jul 2025 07:52:21 +0000 (10:52 +0300)]
Merge pull request #64328 from yuvalif/wip-yuval-71945

doc/rgw/logging: fix journal record format

13 days agoMerge pull request #63144 from liu-chunmei/omap_noexist
Matan Breizman [Mon, 7 Jul 2025 06:31:24 +0000 (09:31 +0300)]
Merge pull request #63144 from liu-chunmei/omap_noexist

crimson/osd/pg_backend: needn't check if os.exist

Reviewed-by: Matan Breizman <mbreizma@redhat.com>
13 days agoMerge pull request #64061 from rhcs-dashboard/local-storage-class
naman munet [Mon, 7 Jul 2025 05:53:07 +0000 (11:23 +0530)]
Merge pull request #64061 from rhcs-dashboard/local-storage-class

mgr/dashboard: Local Storage Class - create and list

13 days agoMerge pull request #63378 from Matan-B/wip-matanb-readme-build-types
Matan Breizman [Sun, 6 Jul 2025 13:16:54 +0000 (16:16 +0300)]
Merge pull request #63378 from Matan-B/wip-matanb-readme-build-types

README: add Build Types section

Reviewed-by: Ilya Dryomov <idryomov@gmail.com>
Reviewed-by: Anthony D'Atri <anthonyeleven@users.noreply.github.com>
13 days agodoc/README: add Build Types section 63378/head
Matan Breizman [Tue, 20 May 2025 09:12:18 +0000 (09:12 +0000)]
doc/README: add Build Types section

Originated from: https://tracker.ceph.com/issues/71360

Signed-off-by: Matan Breizman <mbreizma@redhat.com>
2 weeks agoAdds a new command-line utility which can check the consistency of objects within... 62170/head
Connor Fawcett [Tue, 24 Jun 2025 11:45:06 +0000 (12:45 +0100)]
Adds a new command-line utility which can check the consistency of objects within an erasure coded pool.
A new test-only inject tells the EC backend to return both data and parity shards to the client so that they can
be checked for consistency by the new tool.

Supports both optimized and unoptimized EC pools.

Signed-off-by: Connor Fawcett <connorfa@uk.ibm.com>
2 weeks agomgr/dashboard: Local Storage Class - create and list 64061/head
Dnyaneshwari [Thu, 22 May 2025 07:08:25 +0000 (12:38 +0530)]
mgr/dashboard: Local Storage Class - create and list
Fixes: https://tracker.ceph.com/issues/71460
Signed-off-by: Dnyaneshwari Talwekar <dtalwekar@redhat.com>
2 weeks agoMerge pull request #64252 from xxhdx1985126/wip-seastore-lba-bottom-up-search
Yingxin Cheng [Fri, 4 Jul 2025 06:03:54 +0000 (14:03 +0800)]
Merge pull request #64252 from xxhdx1985126/wip-seastore-lba-bottom-up-search

crimson/os/seastore/btree: bottom-up search capability

Reviewed-by: Yingxin Cheng <yingxin.cheng@intel.com>
2 weeks agoMerge pull request #64318 from xxhdx1985126/wip-seastore-omap-leaf-node-rewrite
Yingxin Cheng [Fri, 4 Jul 2025 06:01:55 +0000 (14:01 +0800)]
Merge pull request #64318 from xxhdx1985126/wip-seastore-omap-leaf-node-rewrite

crimson/os/seastore/omap_manager: fix OMapLeafNode rewrite type error

Reviewed-by: Yingxin Cheng <yingxin.cheng@intel.com>
2 weeks agoMerge pull request #64109 from xxhdx1985126/wip-71794
Yingxin Cheng [Fri, 4 Jul 2025 03:21:55 +0000 (11:21 +0800)]
Merge pull request #64109 from xxhdx1985126/wip-71794

crimson/os/seastore/lba/btree_lba_manager: never downcast reserved ptrs

Reviewed-by: Yingxin Cheng <yingxin.cheng@intel.com>
2 weeks agoMerge pull request #63779 from zdover23/wip-doc-2025-06-06-mgr-telemetry-63735-followup
Zac Dover [Thu, 3 Jul 2025 22:10:30 +0000 (08:10 +1000)]
Merge pull request #63779 from zdover23/wip-doc-2025-06-06-mgr-telemetry-63735-followup

doc/mgr: edit telemetry.rst

Reviewed-by: Anthony D'Atri <anthony.datri@gmail.com>
2 weeks agoMerge pull request #61989 from rhcs-dashboard/edit-topic
afreen23 [Thu, 3 Jul 2025 19:00:58 +0000 (00:30 +0530)]
Merge pull request #61989 from rhcs-dashboard/edit-topic

mgr/dashboard: Add RGW CRUD topic in dashboard

Reviewed-by: Afreen Misbah <afreen@ibm.com>
Reviewed-by: Nizamudeen A <nia@redhat.com>
Reviewed-by: Naman Munet <nmunet@redhat.com>
2 weeks agoMerge pull request #61286 from Jayaprakash-ibm/discard_queue_overutilized
Jaya Prakash [Thu, 3 Jul 2025 14:07:28 +0000 (19:37 +0530)]
Merge pull request #61286 from Jayaprakash-ibm/discard_queue_overutilized

blk:Warning added for discard queue overflow

Reviewed-by: Adam Kupczyk <akupczyk@ibm.com>
2 weeks agoMerge pull request #44283 from mkogan1/wip-rgw-radosgw-admin-cert
Casey Bodley [Thu, 3 Jul 2025 14:04:26 +0000 (10:04 -0400)]
Merge pull request #44283 from mkogan1/wip-rgw-radosgw-admin-cert

rgw: allow specifying ssl certificate for radosgw-admin operations

Reviewed-by: Casey Bodley <cbodley@redhat.com>
2 weeks agoMerge pull request #62949 from joscollin/wip-test-mirroring-fix
Jos Collin [Thu, 3 Jul 2025 13:22:05 +0000 (18:52 +0530)]
Merge pull request #62949 from joscollin/wip-test-mirroring-fix

qa: setup mount_b in test_mirroring.py

Reviewed-by: Venky Shankar <vshankar@redhat.com>
Reviewed-by: Rishabh Dave <ridave@redhat.com>
2 weeks agoMerge pull request #64319 from zdover23/wip-doc-2025-07-03-tr58092-radosgw-config-ref
Zac Dover [Thu, 3 Jul 2025 13:02:58 +0000 (23:02 +1000)]
Merge pull request #64319 from zdover23/wip-doc-2025-07-03-tr58092-radosgw-config-ref

doc/radosgw: add rgw_enable_lc_threads & rgw_enable_gc_threads

Reviewed-by: Casey Bodley <cbodely@redhat.com>
2 weeks agoMerge pull request #62842 from joscollin/wip-B68001-B68446
Jos Collin [Thu, 3 Jul 2025 12:02:57 +0000 (17:32 +0530)]
Merge pull request #62842 from joscollin/wip-B68001-B68446

qa: fix multi-fs tests in test_mds_metrics.py

Reviewed-by: Venky Shankar <vshankar@redhat.com>
Reviewed-by: Neeraj Pratap Singh <neesingh@redhat.com>
2 weeks agodoc/rgw/logging: fix journal record format 64328/head
Yuval Lifshitz [Thu, 3 Jul 2025 10:24:30 +0000 (10:24 +0000)]
doc/rgw/logging: fix journal record format

Fixes: https://tracker.ceph.com/issues/71945
Signed-off-by: Yuval Lifshitz <ylifshit@ibm.com>
2 weeks agoMerge pull request #64245 from leonidc/delete_gw_fix
leonidc [Thu, 3 Jul 2025 09:32:31 +0000 (12:32 +0300)]
Merge pull request #64245 from leonidc/delete_gw_fix

nvmeofgw:

2 weeks agoMinor cleanup to ensure make check passes 61286/head
Jaya Prakash [Thu, 3 Jul 2025 07:51:46 +0000 (07:51 +0000)]
Minor cleanup to ensure make check passes

Signed-off-by: Jaya Prakash <jayaprakash@ibm.com>
2 weeks agomon: Integrate discard queue overflow into pg health warnings
Jaya Prakash [Thu, 3 Jul 2025 07:15:52 +0000 (07:15 +0000)]
mon: Integrate discard queue overflow into pg health warnings

Added a health warning mechanism to monitor the discard queue for potential overload
Emits a warning if the accumulated discarded bytes in the queue exceed the configured threshold
Introduced a debugging tool to simulate slow discard operations by adding a configurable delay

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

Signed-off-by: Jaya Prakash <jayaprakash@ibm.com>
2 weeks agocommon/options: Added bdev_discard_max_bytes and bdev_debug_discard_sleep options
Jaya Prakash [Thu, 3 Jul 2025 07:09:11 +0000 (07:09 +0000)]
common/options: Added bdev_discard_max_bytes and bdev_debug_discard_sleep options

Added a health warning mechanism to monitor the discard queue for potential overload
Emits a warning if the accumulated discarded bytes in the queue exceed the configured threshold
Introduced a debugging tool to simulate slow discard operations by adding a configurable delay

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

Signed-off-by: Jaya Prakash <jayaprakash@ibm.com>
2 weeks agoblk:Warning added for discard queue overflow
Jaya Prakash [Thu, 9 Jan 2025 16:14:05 +0000 (21:44 +0530)]
blk:Warning added for discard queue overflow

Added a health warning mechanism to monitor the discard queue for potential overload
Emits a warning if the accumulated discarded bytes in the queue exceed the configured threshold
Introduced a debugging tool to simulate slow discard operations by adding a configurable delay

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

Signed-off-by: Jaya Prakash <jayaprakash@ibm.com>
2 weeks agoMerge pull request #64306 from zdover23/wip-doc-2025-07-02-tr23594-rados-ops-user...
Zac Dover [Thu, 3 Jul 2025 06:52:57 +0000 (16:52 +1000)]
Merge pull request #64306 from zdover23/wip-doc-2025-07-02-tr23594-rados-ops-user-management

doc/rados/ops: add caps restore command

Reviewed-by: Anthony D'Atri <anthony.datri@gmail.com>
2 weeks agodoc/radosgw: add rgw_enable_lc_threads & rgw_enable_gc_threads 64319/head
Zac Dover [Thu, 3 Jul 2025 06:45:31 +0000 (16:45 +1000)]
doc/radosgw: add rgw_enable_lc_threads & rgw_enable_gc_threads

Add rgw_enable_lc_threads and rgw_enable_gc_threads to
doc/radosgw/config-ref.rst.

Fixes: https://tracker.ceph.com/issues/58092
Signed-off-by: Zac Dover <zac.dover@proton.me>
2 weeks agocrimson/os/seastore/omap_manager: fix OMapLeafNode rewrite type error 64318/head
Xuehan Xu [Thu, 3 Jul 2025 04:38:09 +0000 (12:38 +0800)]
crimson/os/seastore/omap_manager: fix OMapLeafNode rewrite type error

Fixes: https://tracker.ceph.com/issues/71939
Signed-off-by: Xuehan Xu <xuxuehan@qianxin.com>
2 weeks agoMerge pull request #62943 from rhcs-dashboard/tieiring-allow-read
naman munet [Thu, 3 Jul 2025 06:18:41 +0000 (11:48 +0530)]
Merge pull request #62943 from rhcs-dashboard/tieiring-allow-read

mgr/dashboard: Tieiring - allow read through

2 weeks agoMerge pull request #64238 from tchaikov/wip-test-ec-fix-stack-use-after-scope
Kefu Chai [Thu, 3 Jul 2025 04:41:33 +0000 (12:41 +0800)]
Merge pull request #64238 from tchaikov/wip-test-ec-fix-stack-use-after-scope

test/erasure-code: fix stack-use-after-scope by replacing initializer_list with array

Reviewed-by: Adam Emerson <aemerson@redhat.com>
2 weeks agoMerge pull request #64250 from tchaikov/wip-cmake-boost-1.88
Kefu Chai [Thu, 3 Jul 2025 04:29:06 +0000 (12:29 +0800)]
Merge pull request #64250 from tchaikov/wip-cmake-boost-1.88

cmake/modules/FindBoost: add support for Boost 1.88.0

Reviewed-by: Adam Emerson <aemerson@redhat.com>
2 weeks agoMerge pull request #64228 from phlogistonjohn/jjm-lab-extras
David Galloway [Thu, 3 Jul 2025 01:36:27 +0000 (21:36 -0400)]
Merge pull request #64228 from phlogistonjohn/jjm-lab-extras

install-deps.sh: enable lab extras on el10 builders

2 weeks agoMerge pull request #63359 from zdover23/wip-doc-2025-05-20-restore-63351-document_HTT...
Zac Dover [Thu, 3 Jul 2025 00:43:18 +0000 (10:43 +1000)]
Merge pull request #63359 from zdover23/wip-doc-2025-05-20-restore-63351-document_HTTP_X_AMZ_DELETE_IF_UNMODIFIED_SINCE

doc/radosgw/s3: Document delete-if-unmodified-since

Reviewed-by: Anthony D'Atri <anthony.datri@gmail.com>
2 weeks agodoc/radosgw/s3: Document delete-if-unmodified-since 63359/head
Anthony D'Atri [Mon, 19 May 2025 14:14:00 +0000 (10:14 -0400)]
doc/radosgw/s3: Document delete-if-unmodified-since

Signed-off-by: Anthony D'Atri <anthonyeleven@users.noreply.github.com>
(cherry picked from commit 3381041d190fd48cf9f6d53f679f1737028cccf4)

2 weeks agodoc/rados/ops: add caps restore command 64306/head
Zac Dover [Wed, 2 Jul 2025 12:29:48 +0000 (22:29 +1000)]
doc/rados/ops: add caps restore command

Add a command that restores caps to client.admin after they have been
accidentally destroyed or removed.

Fixes: https://tracker.ceph.com/issues/23594
Signed-off-by: Zac Dover <zac.dover@proton.me>
2 weeks agoMerge pull request #64296 from Naveenaidu/wip-naveen-introduce-fix-config-ok-command...
Naveen Naidu [Wed, 2 Jul 2025 10:16:54 +0000 (15:46 +0530)]
Merge pull request #64296 from Naveenaidu/wip-naveen-introduce-fix-config-ok-command-logic

.github/workflows/scripts/config-diff-post-comment.js: fix config check ok logic

2 weeks agocrimson/os/seastore/btree: only compile debug-purposed methods in debug 64252/head
Xuehan Xu [Sun, 29 Jun 2025 09:38:37 +0000 (17:38 +0800)]
crimson/os/seastore/btree: only compile debug-purposed methods in debug
builds

Signed-off-by: Xuehan Xu <xuxuehan@qianxin.com>
2 weeks agocrimson/os/seastore/fixed_kv_btree: remove unused constructors
Xuehan Xu [Fri, 6 Jun 2025 12:39:00 +0000 (20:39 +0800)]
crimson/os/seastore/fixed_kv_btree: remove unused constructors

Signed-off-by: Xuehan Xu <xuxuehan@qianxin.com>
2 weeks agomgr/dashboard: Add RGW CRUD topic in dashboard 61989/head
pujaoshahu [Thu, 9 Jan 2025 05:14:43 +0000 (10:44 +0530)]
mgr/dashboard: Add RGW CRUD topic in dashboard

Fixes: https://tracker.ceph.com/issues/699654
Signed-off-by: pujaoshahu <pshahu@redhat.com>
2 weeks agocrimson: switch to ceph_abort_msg 64262/head
Matan Breizman [Mon, 30 Jun 2025 09:44:24 +0000 (09:44 +0000)]
crimson: switch to ceph_abort_msg

ceph_abort doesn't print a message. Use ceph_abort_msg instead.
Most of the instances are not printing useful information but some are:
  ceph_abort_msg("seastore device size setting is too small");

```
  ::ceph::__ceph_abort( __FILE__, __LINE__, __CEPH_ASSERT_FUNCTION, "abort() called")

  ::ceph::__ceph_abort( __FILE__, __LINE__, __CEPH_ASSERT_FUNCTION, msg)
```

Signed-off-by: Matan Breizman <mbreizma@redhat.com>
2 weeks agoMerge pull request #64215 from Hezko/nvmeof-cli-migrate-prs
afreen23 [Wed, 2 Jul 2025 08:34:36 +0000 (14:04 +0530)]
Merge pull request #64215 from Hezko/nvmeof-cli-migrate-prs

mgr/dashboard: NVMeoF CLI migrate prs

Reviewed-by: Afreen Misbah <afreen@ibm.com>
Reviewed-by: Ernesto Puerta <epuertat@redhat.com>
2 weeks agonvmeofgw: fixing GW delete issues 64245/head
Leonid Chernin [Tue, 24 Jun 2025 13:00:49 +0000 (16:00 +0300)]
nvmeofgw: fixing GW delete issues
1.fixing the issue when gw is deleted based on invalid subsystem info
2. in function track_deleting_gws: break from loop only if
  delete was really done
        3. fix published rebalance index - publish ana-group instead of
  index
        4. do not dump gw-id string after gw was removed

Fixes: https://tracker.ceph.com/issues/71896
Signed-off-by: Leonid Chernin <leonidc@il.ibm.com>
2 weeks agoMerge pull request #64260 from tchaikov/wip-osdc-iwyu
Kefu Chai [Wed, 2 Jul 2025 06:06:57 +0000 (14:06 +0800)]
Merge pull request #64260 from tchaikov/wip-osdc-iwyu

osdc: remove unused rados.h include from error_code.h

Reviewed-by: Ronen Friedman <rfriedma@redhat.com>
2 weeks agoMerge pull request #64087 from NitzanMordhai/wip-nitzan-aio-pool-eio-flag-mutex-left
SrinivasaBharathKanta [Wed, 2 Jul 2025 05:30:48 +0000 (11:00 +0530)]
Merge pull request #64087 from NitzanMordhai/wip-nitzan-aio-pool-eio-flag-mutex-left

test/librados/aio_cxx: Fix potential mutex destruction failure on Pool EIOFlag

2 weeks ago.github/workflows/scripts/config-diff-post-comment.js: fix config check ok logic 64296/head
Naveen Naidu [Wed, 2 Jul 2025 04:52:02 +0000 (10:22 +0530)]
.github/workflows/scripts/config-diff-post-comment.js: fix config check ok logic

currently, whenever a "config diff tool output" comment is created it
also has the string `/config check ok` string in it. The next time the
test run it see's this text and assumes that the user has commented it.
We fix the logic to makes sure that we ignore such cases.

Signed-off-by: Naveen Naidu <naveennaidu479@gmail.com>
2 weeks agoMerge pull request #62239 from rhcs-dashboard/xmlsec-fail-main
Nizamudeen A [Wed, 2 Jul 2025 04:40:43 +0000 (10:10 +0530)]
Merge pull request #62239 from rhcs-dashboard/xmlsec-fail-main

mgr/dashboard: use system packages when running tox

2 weeks agoMerge pull request #63889 from shreya-subramanian/perf_counters_clean
Samuel Just [Wed, 2 Jul 2025 01:40:34 +0000 (18:40 -0700)]
Merge pull request #63889 from shreya-subramanian/perf_counters_clean

osd: Added perf counters for full and incremental maps

Reviewed-by: Samuel Just <sjust@redhat.com>
2 weeks agoMerge pull request #61535 from kinazarov1999/import-stdin-progress
Ilya Dryomov [Tue, 1 Jul 2025 18:48:09 +0000 (20:48 +0200)]
Merge pull request #61535 from kinazarov1999/import-stdin-progress

rbd: add --estimated-size option for import from stdin

Reviewed-by: Ilya Dryomov <idryomov@gmail.com>
2 weeks agoMerge pull request #61468 from Nordix/fix-69610-sunnat 63818/head
Adam King [Tue, 1 Jul 2025 14:23:02 +0000 (10:23 -0400)]
Merge pull request #61468 from Nordix/fix-69610-sunnat

mgr/prometheus: Make prometheus TLS config work with Rook orchestrator

Reviewed-by: Redouane Kachach <rkachach@ibm.com>
2 weeks agoMerge pull request #64255 from bluikko/doc-config-ceph-conf-improvements-rados
Anthony D'Atri [Tue, 1 Jul 2025 13:24:18 +0000 (09:24 -0400)]
Merge pull request #64255 from bluikko/doc-config-ceph-conf-improvements-rados

doc/rados/configuration: Small improvements in ceph-conf.rst

2 weeks agomgr/dashboard: migrate nvmeof pr #1346 to new cli 64215/head
Tomer Haskalovitch [Thu, 26 Jun 2025 10:25:53 +0000 (13:25 +0300)]
mgr/dashboard: migrate nvmeof pr #1346 to new cli

Signed-off-by: Tomer Haskalovitch <tomer.haska@ibm.com>
2 weeks agomgr/dashboard: migrate nvmeof pr #1335 to new cli
Tomer Haskalovitch [Thu, 26 Jun 2025 10:00:22 +0000 (13:00 +0300)]
mgr/dashboard: migrate nvmeof pr #1335 to new cli

Signed-off-by: Tomer Haskalovitch <tomer.haska@ibm.com>
2 weeks agomgr/dashboard: migrate nvmeof pr #1327 to new cli
Tomer Haskalovitch [Thu, 26 Jun 2025 09:53:05 +0000 (12:53 +0300)]
mgr/dashboard: migrate nvmeof pr #1327 to new cli

Signed-off-by: Tomer Haskalovitch <tomer.haska@ibm.com>
2 weeks agomgr/dashboard: migrate nvmeof pr #1233 to new cli
Tomer Haskalovitch [Wed, 25 Jun 2025 19:08:16 +0000 (22:08 +0300)]
mgr/dashboard: migrate nvmeof pr #1233 to new cli

Signed-off-by: Tomer Haskalovitch <tomer.haska@ibm.com>
2 weeks agomgr/dashboard: migrate nvmeof pr #1277 to new cli
Tomer Haskalovitch [Wed, 25 Jun 2025 09:05:53 +0000 (12:05 +0300)]
mgr/dashboard: migrate nvmeof pr #1277 to new cli

Signed-off-by: Tomer Haskalovitch <tomer.haska@ibm.com>
2 weeks agomgr/dashboard: migrate nvmeof pr #1308 to new cli
Tomer Haskalovitch [Mon, 23 Jun 2025 21:00:58 +0000 (00:00 +0300)]
mgr/dashboard: migrate nvmeof pr #1308 to new cli

Signed-off-by: Tomer Haskalovitch <tomer.haska@ibm.com>
2 weeks agomgr/dashboard: migrate nvmeof pr #1238 to new cli
Tomer Haskalovitch [Mon, 23 Jun 2025 20:23:05 +0000 (23:23 +0300)]
mgr/dashboard: migrate nvmeof pr #1238 to new cli

Signed-off-by: Tomer Haskalovitch <tomer.haska@ibm.com>
2 weeks agocrimson/osd: put PGBackend/RecoveryBackend/PGRecovery and other related 64275/head
Xuehan Xu [Tue, 1 Jul 2025 09:06:16 +0000 (17:06 +0800)]
crimson/osd: put PGBackend/RecoveryBackend/PGRecovery and other related
classes into the crimson::osd  namespace

Signed-off-by: Xuehan Xu <xuxuehan@qianxin.com>
2 weeks agomgr/dashboard: catch protobuf error due to mismatch in version 62239/head
Nizamudeen A [Thu, 26 Jun 2025 07:25:22 +0000 (12:55 +0530)]
mgr/dashboard: catch protobuf error due to mismatch in version

Signed-off-by: Nizamudeen A <nia@redhat.com>
2 weeks agomgr/dashboard: unpin grpcio deps
Nizamudeen A [Thu, 26 Jun 2025 04:51:34 +0000 (10:21 +0530)]
mgr/dashboard: unpin grpcio deps

Fixes: https://tracker.ceph.com/issues/70411
Signed-off-by: Nizamudeen A <nia@redhat.com>
2 weeks agomgr/dashboard: sitepackages only for py3
Nizamudeen A [Mon, 17 Mar 2025 05:10:21 +0000 (10:40 +0530)]
mgr/dashboard: sitepackages only for py3

Signed-off-by: Nizamudeen A <nia@redhat.com>
2 weeks agoRevert "mgr/dashboard: pin lxml to fix run-dashboard-tox-make-check failure"
Nizamudeen A [Thu, 13 Mar 2025 06:47:41 +0000 (12:17 +0530)]
Revert "mgr/dashboard: pin lxml to fix run-dashboard-tox-make-check failure"

This reverts commit 1f84505f1232dd8445df1a2a819fa000062d3934.

Signed-off-by: Nizamudeen A <nia@redhat.com>
2 weeks agomgr/dashboard: disable saml2 tests when the dep is not there
Nizamudeen A [Wed, 12 Mar 2025 08:32:10 +0000 (14:02 +0530)]
mgr/dashboard: disable saml2 tests when the dep is not there

Signed-off-by: Nizamudeen A <nia@redhat.com>
2 weeks agoMerge pull request #64239 from tchaikov/wip-doc-mgr-crash
Kefu Chai [Tue, 1 Jul 2025 07:59:14 +0000 (15:59 +0800)]
Merge pull request #64239 from tchaikov/wip-doc-mgr-crash

doc/mgr/crash.rst: remove outdated module enabling instructions

Reviewed-by: Zac Dover <zac.dover@proton.me>
2 weeks agocrimson/os/seastore/FixedKVBtree: return the iterator when removing mapping
Xuehan Xu [Thu, 25 Jan 2024 07:05:33 +0000 (15:05 +0800)]
crimson/os/seastore/FixedKVBtree: return the iterator when removing mapping

Signed-off-by: Xuehan Xu <xuxuehan@qianxin.com>
2 weeks agocrimson/os/seastore/FixedKVBtree: introduce partial iterator
Zhang Song [Sat, 1 Mar 2025 11:48:28 +0000 (19:48 +0800)]
crimson/os/seastore/FixedKVBtree: introduce partial iterator

Signed-off-by: Zhang Song <zhangsong02@qianxin.com>
Signed-off-by: Xuehan Xu <xuxuehan@qianxin.com>
2 weeks agocrimson/os/seastore/btree: fix indention of handle_merge
Xuehan Xu [Tue, 17 Jun 2025 07:54:09 +0000 (15:54 +0800)]
crimson/os/seastore/btree: fix indention of handle_merge

Signed-off-by: Xuehan Xu <xuxuehan@qianxin.com>
2 weeks agocrimson/os/seastore/btree: make "check_split" asynchronous
Xuehan Xu [Wed, 11 Jun 2025 11:04:06 +0000 (19:04 +0800)]
crimson/os/seastore/btree: make "check_split" asynchronous

This is a preparation for btree's make_partial_iter

Signed-off-by: Xuehan Xu <xuxuehan@qianxin.com>
2 weeks agocrimson/os/seastore/linked_tree_node: add get_parent_node for retrieving
Xuehan Xu [Wed, 23 Apr 2025 03:40:14 +0000 (11:40 +0800)]
crimson/os/seastore/linked_tree_node: add get_parent_node for retrieving
accessible parents

Signed-off-by: Xuehan Xu <xuxuehan@qianxin.com>
2 weeks agocrimson/os/seastore/cache: add maybe_wait_accessible() for lba bottom-up
Xuehan Xu [Wed, 11 Jun 2025 07:26:23 +0000 (15:26 +0800)]
crimson/os/seastore/cache: add maybe_wait_accessible() for lba bottom-up
search

Signed-off-by: Xuehan Xu <xuxuehan@qianxin.com>
2 weeks agoMerge pull request #64065 from tchaikov/wip-test-mon-election-fix-leaks
Kefu Chai [Tue, 1 Jul 2025 04:31:34 +0000 (12:31 +0800)]
Merge pull request #64065 from tchaikov/wip-test-mon-election-fix-leaks

test/mon/test_election: fix memory leaks of Owner and ConnectionTracker

Reviewed-by: Ronen Friedman <rfriedma@redhat.com>
Reviewed-by: Kamoltat Sirivadhna <ksirivad@redhat.com>