Commit Graph

163119 Commits

Author SHA1 Message Date
Jaya Prakash
793b757d3d common/options: restrict spillover configuration options to valid ranges
Fixes: https://tracker.ceph.com/issues/78492

Signed-off-by: Jaya Prakash <jayaprakash@ibm.com>
2026-07-21 15:21:47 +00:00
Sridhar Seshasayee
b74a7f9db7
Merge pull request #70357 from sseshasa/wip-fix-ok-to-upgrade-min-pg-errmsg
mgr/DaemonServer: Make an ok-to-upgrade error message more generic

Reviewed-by: Nitzan Mordechai <nmordech@ibm.com>
2026-07-21 19:38:18 +05:30
Afreen Misbah
64e8dc794d
Merge pull request #69924 from syedali237/dashboard/notif-dest
mgr/dashboard : migrated notification destination tabs to resource pages

Reviewed-by: Afreen Misbah <afreen@ibm.com>
Reviewed-by: Abhishek Desai <abhishek.desai1@ibm.com>
2026-07-21 19:13:29 +05:30
Afreen Misbah
0077832b38
Merge pull request #70244 from rhcs-dashboard/fix-e2e
Reviewed-by: Afreen Misbah <afreen@ibm.com>
2026-07-21 18:11:52 +05:30
Afreen Misbah
e197383c91
Merge pull request #70214 from rhcs-dashboard/fix-78232-main
Reviewed-by: Afreen Misbah <afreen@ibm.com>
2026-07-21 17:24:27 +05:30
Afreen Misbah
dde3f89434
Merge pull request #70344 from rhcs-dashboard/fix-78423-main
mgr/dashboard: fix rgw service form realm/zg/zone selection

Reviewed-by: Afreen Misbah <afreen@ibm.com>
2026-07-21 17:02:45 +05:30
Aashish Sharma
125bb2235e
Merge pull request #70216 from rhcs-dashboard/fix-78233-main
mgr/dashboard: set MOTD fails on FIPS enabled systems

Reviewed-by: Afreen Misbah <afreen@ibm.com>
2026-07-21 15:03:15 +05:30
Afreen Misbah
8d446a82e1
Merge pull request #69830 from rhcs-dashboard/77815-smb-rate-limiting
Reviewed-by: Afreen Misbah <afreen@ibm.com>
Reviewed-by: Pedro Gonzalez Gomez <pegonzal@redhat.com>
Reviewed-by: Sagar Gopale <sagar.gopale@ibm.com>
2026-07-21 14:41:23 +05:30
Afreen Misbah
8176a0ec08
Merge pull request #69430 from rhcs-dashboard/77369-ec-profile-creation-form-simplification
Reviewed-by: Afreen Misbah <afreen@ibm.com>
Reviewed-by: Sagar Gopale <sagar.gopale@ibm.com>
2026-07-21 14:41:15 +05:30
Afreen Misbah
5f0c1234dc
Merge pull request #69639 from rhcs-dashboard/77570-disabling-multisite-actions-dropdown-for-readonly-user
Reviewed-by: Afreen Misbah <afreen@ibm.com>
Reviewed-by: Sagar Gopale <sagar.gopale@ibm.com>
2026-07-21 14:41:07 +05:30
Syed Ali Ul Hasan
5293360de7 mgr/dashboard: migrated notif dest table tabs to resource pages
- Fixes: https://tracker.ceph.com/issues/77541

Signed-off-by: Syed Ali Ul Hasan <syedaliulhasan19@gmail.com>
2026-07-21 14:39:59 +05:30
baum
c77c5eb8db
Merge pull request #69650 from baum/nvmeof-host-maintenance
cephadm: disable/enable NVMe-oF gateways during host maintenance
2026-07-21 14:09:24 +07:00
Naman Munet
3aa2b17a04 mgr/dashboard: fix dashboard cephadm e2e
fixes: https://tracker.ceph.com/issues/78279

Signed-off-by: Naman Munet <naman.munet@ibm.com>
2026-07-21 12:02:06 +05:30
Aashish Sharma
7927cf51e0 mgr/dashboard: set MOTD fails on FIPS enabled systems
Root cause: On FIPS-compliant systems, the OpenSSL provider rejects hashlib.md5() calls that lack the usedforsecurity=False flag, because MD5 is not an approved algorithm for security-sensitive use. This causes the MOTD set command โ€” and the /api/motd create endpoint โ€” to raise a ValueError and crash whenever a new MOTD is saved.

Fix: Pass usedforsecurity=False to hashlib.md5(). This tells the FIPS provider that MD5 is being used only as a non-cryptographic checksum (to detect whether a user has already dismissed a specific MOTD message), which is a legitimate use-case that FIPS allows.

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

Signed-off-by: Aashish Sharma <aasharma@redhat.com>
2026-07-21 11:48:28 +05:30
Aashish Sharma
7dfb439308 mgr/dashboard: fix rgw service form realm/zg/zone selection
Fixes: https://tracker.ceph.com/issues/78423

Signed-off-by: Aashish Sharma <aasharma@redhat.com>
2026-07-21 11:04:38 +05:30
Sridhar Seshasayee
afd0b924e2 mgr/DaemonServer: Make an ok-to-upgrade error message more generic
When no OSDs within a CRUSH bucket can be found to upgrade, the earlier error
message indicated the minimum number of PGs affected if any OSD was removed
from the set. For e.g.,

"Error EBUSY: unsafe to upgrade osd(s) at this time (at least X PG(s) will
become offline if any OSD out of the Y in CRUSH bucket 'foo' is stopped)"

This was inaccurate in some cases because the number of PGs affected is
determined only from the last tested OSD in the CRUSH bucket based on the sort
order (i.e., OSD with least number of PGs per OSD). Based on the CRUSH rules
and placement, this doesn't mean that the least number of PGs are affected if
this OSD is stopped. There may be other OSDs in the set that affect a smaller
number of PGs if made offline.

But with the way ok-to-upgrade logic uses the convergence factor, not all OSDs
would be tested for the offline pg check. Therefore, it is not possible to
accurately determine the minimum number affected PGs.

In view of the above, the error message is modified as shown below to be
slightly more generic but still convey the reason:

"Error EBUSY: unsafe to upgrade osd(s) at this time (one or more PG(s) will
become offline if any OSD out of the Y in CRUSH bucket 'foo' is stopped)"

Fixes: https://tracker.ceph.com/issues/78425
Signed-off-by: Sridhar Seshasayee <sridhar.seshasayee@ibm.com>
2026-07-21 10:43:28 +05:30
Aashish Sharma
b6b591dcce python-common/rgw: fix get_realm_tokens returning empty result for realms with a secondary zone
Issue: The Export Multi-site Realm Token feature in the Dashboard showed no token and no realm details for any realm that had a secondary zone configured (i.e. the realm had been replicated to another cluster). The API endpoint GET /api/rgw/realm/get_realm_tokens returned an empty list or raised a 500 Internal Server Error.

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

Signed-off-by: Aashish Sharma <aasharma@redhat.com>
2026-07-21 10:33:08 +05:30
Igor Fedotov
ec92d36e6e
Merge pull request #69030 from ifed01/wip-ifed-better-slow-ops-dump
os/bluestore,kv/rocksdbstore: more information about slow KV ops

Reviewed-by: Adam Kupczyk <akupczyk@ibm.com>
2026-07-21 01:25:16 +03:00
Jaya Prakash
42bf941429
Merge pull request #69971 from Jayaprakash-ibm/wip-fix-kerneldevice-aio-stop
blk/kernel : skip AIO thread for devices with size < block_size

Reviewed-by: Adam Kupczyk <akupczyk@ibm.com>
Reviewed-by: Igor Fedotov <igor.fedotov@croit.io>
2026-07-21 00:02:19 +05:30
Jaya Prakash
9598f49fda
Merge pull request #69271 from aclamk/aclamk-bs-fix-unsharing-on-remove
bluestore: Fix unsharing blobs on remove

Reviewed-by: Igor Fedotov <igor.fedotov@croit.io>
Reviewed-by: Jaya Prakash <jayaprakash@ibm.com>
2026-07-21 00:01:39 +05:30
Jaya Prakash
ee78db3ec0
Merge pull request #69633 from Prachi-Lasurkar/wip-77331-both_fragmentation_and_score_have_the_same_label
os/bluestore: Rename allocator score output label

Reviewed-by: Jaya Prakash <jayaprakash@ibm.com>
2026-07-21 00:00:20 +05:30
Jaya Prakash
998c16a0eb
Merge pull request #70217 from Jayaprakash-ibm/wip-discard-during-file-migration
os/bluestore: use _release_pending_allocations() during file migration

Reviewed-by: Adam Kupczyk <akupczyk@ibm.com>
Reviewed-by: Igor Fedotov <igor.fedotov@croit.io>
2026-07-20 23:59:43 +05:30
Afreen Misbah
04fff85bf0
Merge pull request #70191 from rhcs-dashboard/feat-unread-notification
mgr/dashboard: redesign notifications page for unread notifications

Reviewed-by: Devika Babrekar <devika.babrekar@ibm.com>
2026-07-20 22:09:56 +05:30
Gabriel Benhanokh
fc4249596a
Merge pull request #70310 from benhanokh/dedup_handle_notify_bug_fix
rgw/dedup: protects handle_notify processing of URGENT_MSG_RESTART agโ€ฆ
2026-07-20 17:06:38 +03:00
Patrick Donnelly
bf9608037b
Merge PR #70190 into main
* refs/pull/70190/head:
	script/ptl-tool: add automatic HTTP retry adapter to requests session

Reviewed-by: Yuri Weinstein <yweins@redhat.com>
2026-07-20 09:46:19 -04:00
bluikko
0a1cfbc8ca
Merge pull request #70330 from bluikko/wip-doc-sphinx-warnings-nfs
doc/mgr: fix Sphinx warnings in nfs.rst
2026-07-20 20:45:04 +07:00
Patrick Donnelly
56ae3a65e5
Merge PR #70258 into main
* refs/pull/70258/head:
	.github/workflows/pr-checklist: run only on main

Reviewed-by: Yuri Weinstein <yweins@redhat.com>
2026-07-20 09:31:04 -04:00
Anthony D'Atri
9b761f07ee
Merge pull request #69011 from bluikko/wip-doc-man-ceph-monitor
doc/man: use Monitor consistently in ceph.rst
2026-07-20 07:48:06 -04:00
Venky Shankar
0d256f8062 Merge PR #52147 into main
* refs/pull/52147/head:
	PendingReleaseNotes: add an note about dmclock based scheduler for MDS
	doc/config-ref: mention about MDS dmclock configurations
	qa: use dmclock with fs:workload
	mds: add MDS dmClock scheduler for subvolume QoS support

Reviewed-by: Venky Shankar <vshankar@redhat.com>
Reviewed-by: Robin H. Johnson <robbat2@orbis-terrarum.net>
2026-07-20 16:58:23 +05:30
Ville Ojamo
f71c97ea20 doc/mgr: fix Sphinx warnings in nfs.rst
Signed-off-by: Ville Ojamo <git2233+ceph@ojamo.eu>
2026-07-20 16:58:17 +07:00
SrinivasaBharathKanta
179b4aeed1
Merge pull request #69833 from NitzanMordhai/wip-nitzan-ceph-daemon-adding-timeout
pybind/ceph_daemon: add 10s timeout to admin socket client
2026-07-20 13:54:10 +05:30
Yuval Lifshitz
6a73f21660
Merge pull request #69200 from sujay-d07/rgw-kafka-gssapi-implementation
rgw/kafka: Adding missing support for GSSAPI bucket notification endpoint and relevant tests for it
2026-07-20 10:27:44 +03:00
Venky Shankar
192b4306b9
Merge pull request #69169 from dparmar18/i61482
mgr/nfs: warn when deprecated export/cluster delete commands are run

Reviewed-by: Venky Shankar <vshankar@redhat.com>
2026-07-20 12:19:47 +05:30
Hezko
314d194dcb
Merge pull request #70246 from Hezko/fix-force-param-err
pybind: Fix CLI error message when using force parameter if it doesn't exist
2026-07-20 01:15:02 +03:00
leonidc
1cdfb58f24
Merge pull request #67286 from leonidc/nvme-gw-show-all
nvmeofgw: introduce nvme-gw show-all
2026-07-19 13:47:10 +03:00
benhanokh
b4f1a63bfa rgw/dedup: protects handle_notify processing of URGENT_MSG_RESTART against bad messages
Tracker: https://ibm-ceph.atlassian.net/browse/IBMCEPH-16929

Signed-off-by: benhanokh <gbenhano@redhat.com>
2026-07-19 10:26:47 +03:00
leonidc
42b8bc661d
Merge pull request #69616 from leonidc/beacon_timer_in_gw_created
nvmeofgw: arm beacon timeouts for GWs in Created state
2026-07-19 09:41:00 +03:00
leonidc
f72cb692d6
Merge pull request #69490 from leonidc/fix_relocation_stretched
nvmeofgw: stretched cluster fix relocate
2026-07-19 09:40:38 +03:00
Patrick Donnelly
0d531d898c
Merge PR #70264 into main
* refs/pull/70264/head:
	debian/rules: Also exclude librgw and radosgw from dwz

Reviewed-by: Patrick Donnelly <pdonnell@ibm.com>
2026-07-18 21:35:14 -04:00
Patrick Donnelly
9afe94d201
Merge PR #70268 into main
* refs/pull/70268/head:
	common/lockdep: explicitly export g_lockdep visibility

Reviewed-by: Ilya Dryomov <idryomov@redhat.com>
2026-07-18 14:29:24 -04:00
Xuehan Xu
2c45b4a90c
Merge pull request #70068 from xxhdx1985126/wip-seastore-new-trans-cc
crimson/os/seastore/transaction: new conflict/no_conflict trans synchronization

Reviewed-by: Matan Breizman <mbreizma@redhat.com>
2026-07-18 17:31:47 +08:00
David Galloway
e92c0dfd58
Merge pull request #68911 from djgalloway/wip-63336
doc: sign-debs script for release process
2026-07-17 19:52:12 -04:00
Afreen Misbah
36ceca6b08 mgr/dashboard: redesign notifications page with master-detail layout
-  revamped UX
-  shows unread notifications
-  added back button
-  added clear all, and single notification delete

Fixes: https://tracker.ceph.com/issues/78209
Signed-off-by: Afreen Misbah <afreen@ibm.com>
2026-07-18 02:34:55 +05:30
David Galloway
a5fc039e7a
Merge pull request #70296 from djgalloway/wip-container-rocky10
container: default FROM_IMAGE to Rocky Linux 10
2026-07-17 15:57:48 -04:00
David Galloway
194e58aa9b container: default FROM_IMAGE to Rocky Linux 10
Since tentacle, the preferred base image for ceph containers has been
Rocky Linux 10, and the CI tag-naming logic in build.sh already assumes
rockylinux-10 is the default fromtag for every branch except reef and
squid.  The actual build default was never flipped, though: anything
that ran build.sh without FROM_IMAGE set (e.g. the release container
job in ceph-build) still got a CentOS Stream 9 base.

Flip the Containerfile ARG and the build.sh fallback to
docker.io/rockylinux/rockylinux:10 so umbrella and later build from
Rocky 10 by default.  Builds that want a different base can still pass
FROM_IMAGE explicitly, as the CI pipeline does.

Signed-off-by: David Galloway <david.galloway@ibm.com>
2026-07-17 14:34:44 -04:00
Shilpa Jagannath
3a64c5588d
Merge pull request #69293 from smanjara/wip-datalog-ec
rgw: fix log_remove() -EIO on non-existent FIFO shards
2026-07-17 10:13:17 -07:00
Patrick Donnelly
2ff0eaa28f
common/lockdep: explicitly export g_lockdep visibility
Aggressive Link-Time Optimization (LTO) and stricter linker defaults
in newer toolchains (like GCC 13 on Ubuntu 24.04) can strip or
localize external global variables if their visibility is not
explicitly defined. Tagging g_lockdep with default visibility ensures
it remains accessible in the dynamic symbol table for external
binaries like monmaptool.

Assisted-by: Gemini
Fixes: https://tracker.ceph.com/issues/78321
Signed-off-by: Patrick Donnelly <pdonnell@ibm.com>
2026-07-17 12:24:55 -04:00
Jesse Williamson
1f14c03514
Merge pull request #70054 from ceph/jfw-libfdb-reverse-select
libfdb: reverse-order selection
2026-07-17 09:20:46 -07:00
Ilya Dryomov
28b97363e3
Merge pull request #70232 from batrick/csc-membership-updates
doc/governance: csc membership updates

Reviewed-by: Anthony D'Atri <anthony.datri@gmail.com>
Reviewed-by: Sage McTaggart <sagemct@ibm.com>
Reviewed-by: Ilya Dryomov <idryomov@gmail.com>
2026-07-17 18:03:50 +02:00
Afreen Misbah
0dfc834523
Merge pull request #69751 from rhcs-dashboard/fix-hardware-tab
mgr/dashboard: Fix hardware tab in health card

Reviewed-by: Pedro Gonzalez Gomez <pegonzal@redhat.com>
2026-07-17 20:31:46 +05:30