]> git-server-git.apps.pok.os.sepia.ceph.com Git - ceph.git/log
ceph.git
5 days agoqa: add trivial cephfs-tool bench test 67032/head
Patrick Donnelly [Tue, 14 Apr 2026 12:57:33 +0000 (08:57 -0400)]
qa: add trivial cephfs-tool bench test

Signed-off-by: Patrick Donnelly <pdonnell@ibm.com>
5 days agodoc/cephfs: add cephfs-tool documentation
Patrick Donnelly [Wed, 21 Jan 2026 18:37:50 +0000 (13:37 -0500)]
doc/cephfs: add cephfs-tool documentation

AI-Assisted: this doc was generated from the help text / inital commit memssage
Signed-off-by: Patrick Donnelly <pdonnell@ibm.com>
5 days agotools/cephfs: add new cephfs-tool
Patrick Donnelly [Wed, 21 Jan 2026 17:25:31 +0000 (12:25 -0500)]
tools/cephfs: add new cephfs-tool

This patch introduces `cephfs-tool`, a new standalone C++ utility
designed to interact directly with `libcephfs`.

While the tool is architected to support various subcommands in the
future, the initial implementation focuses on a `bench` command to
measure library performance. This allows developers and administrators
to benchmark the userspace library isolated from FUSE or Kernel client
overheads.

Key features include:
* Multi-threaded Read/Write throughput benchmarking.
* Configurable block sizes, file counts, and fsync intervals.
* Detailed statistical reporting (Mean, Std Dev, Min/Max) for throughput and IOPS.
* Support for specific CephFS user/group impersonation (UID/GID) via `ceph_mount_perms_set`.

As an example test on a "trial" sepia machine against the new LRC, I
used a command like:

    pdonnell@trial154:~$ env CEPH_ARGS="--log-to-stderr=false --log-to-file=false --log-file=/tmp/bench.log" ./cephfs-tool -c ~/ceph.conf -k ~/keyring -i scratch --filesystem scratch  bench --root-path=/pdonnell --files 256 --size=$(( 128 * 2 ** 20 )) --threads=8 --iterations 3
    Benchmark Configuration:
      Threads: 8 | Iterations: 3
      Files: 256 | Size: 134217728
      Filesystem: scratch
      Root: /pdonnell
      Subdirectory: bench_run_d942
      UID: -1
      GID: -1

    --- Iteration 1 of 3 ---
    Starting Write Phase...
      Write: 2761.97 MB/s, 21.5779 files/s (11.864s)
    Starting Read Phase...
      Read:  2684.36 MB/s, 20.9716 files/s (12.207s)

    --- Iteration 2 of 3 ---
    Starting Write Phase...
      Write: 2698.51 MB/s, 21.0821 files/s (12.143s)
    Starting Read Phase...
      Read:  2682.16 MB/s, 20.9544 files/s (12.217s)

    --- Iteration 3 of 3 ---
    Starting Write Phase...
      Write: 2720.69 MB/s, 21.2554 files/s (12.044s)
    Starting Read Phase...
      Read:  2695.18 MB/s, 21.0561 files/s (12.158s)

    *** Final Report ***

    Write Throughput Statistics (3 runs):
      Mean:    2727.06 MB/s
      Std Dev: 26.2954 MB/s
      Min:     2698.51 MB/s
      Max:     2761.97 MB/s

    Read Throughput Statistics (3 runs):
      Mean:    2687.24 MB/s
      Std Dev: 5.68904 MB/s
      Min:     2682.16 MB/s
      Max:     2695.18 MB/s

    File Creates Statistics (3 runs):
      Mean:    21.3051 files/s
      Std Dev: 0.205433 files/s
      Min:     21.0821 files/s
      Max:     21.5779 files/s

    File Reads (Opens) Statistics (3 runs):
      Mean:    20.994 files/s
      Std Dev: 0.0444456 files/s
      Min:     20.9544 files/s
      Max:     21.0561 files/s

    Cleaning up...

For a 25Gb NIC, this is just about saturating the sticker bandwidth with
a single shared mount and 8 threads. For a per-thread mount:

    pdonnell@trial154:~$ env CEPH_ARGS="--log-to-stderr=false --log-to-file=false --log-file=/tmp/bench.log" ./cephfs-tool -c ~/ceph.conf -k ~/keyring -i scratch --filesystem scratch  bench --root-path=/pdonnell --files 256 --size=$(( 128 * 2 ** 20 )) --threads=8 --iterations 3 --per-thread-mount
    Benchmark Configuration:
      Threads: 8 | Iterations: 3
      Files: 256 | Size: 134217728
      Filesystem: scratch
      Root: /pdonnell
      Subdirectory: bench_run_9d1c
      UID: -1
      GID: -1

    --- Iteration 1 of 3 ---
    Starting Write Phase...
      Write: 2691.2 MB/s, 21.025 files/s (12.176s)
    Starting Read Phase...
      Read:  2486.76 MB/s, 19.4278 files/s (13.177s)

    --- Iteration 2 of 3 ---
    Starting Write Phase...
      Write: 2688.77 MB/s, 21.006 files/s (12.187s)
    Starting Read Phase...
      Read:  2496.42 MB/s, 19.5033 files/s (13.126s)

    --- Iteration 3 of 3 ---
    Starting Write Phase...
      Write: 2692.08 MB/s, 21.0319 files/s (12.172s)
    Starting Read Phase...
      Read:  2488.27 MB/s, 19.4396 files/s (13.169s)
    *** Final Report ***

    Write Throughput Statistics (3 runs):
      Mean:    2690.68 MB/s
      Std Dev: 1.40086 MB/s
      Min:     2688.77 MB/s
      Max:     2692.08 MB/s

    Read Throughput Statistics (3 runs):
      Mean:    2490.48 MB/s
      Std Dev: 4.24374 MB/s
      Min:     2486.76 MB/s
      Max:     2496.42 MB/s

    File Creates Statistics (3 runs):
      Mean:    21.0209 files/s
      Std Dev: 0.0109442 files/s
      Min:     21.006 files/s
      Max:     21.0319 files/s

    File Reads (Opens) Statistics (3 runs):
      Mean:    19.4569 files/s
      Std Dev: 0.0331542 files/s
      Min:     19.4278 files/s
      Max:     19.5033 files/s

    Cleaning up...

Or to measure file create performance:

    pdonnell@trial154:~$ env CEPH_ARGS="--log-to-stderr=false --log-to-file=false --log-file=/tmp/bench.log" ./cephfs-tool -c ~/ceph.conf -k ~/keyring -i scratch --filesystem scratch  bench --root-path=/pdonnell --files=$(( 2 ** 16 )) --size=$(( 0 * 2 ** 20 )) --threads=8 --iterations 3
    Benchmark Configuration:
      Threads: 8 | Iterations: 3
      Files: 65536 | Size: 0
      Filesystem: scratch
      Root: /pdonnell
      Subdirectory: bench_run_d435
      UID: -1
      GID: -1

    --- Iteration 1 of 3 ---
    Starting Write Phase...
      Write: 3974.77 files/s (16.488s)
    Starting Read Phase...
      Read:  14537.7 files/s (4.508s)
    Cleaning up for next iteration...

    --- Iteration 2 of 3 ---
    Starting Write Phase...
      Write: 4167.1 files/s (15.727s)
    Starting Read Phase...
      Read:  13636.3 files/s (4.806s)
    Cleaning up for next iteration...

    --- Iteration 3 of 3 ---
    Starting Write Phase...
      Write: 3863.7 files/s (16.962s)
    Starting Read Phase...
      Read:  14972.8 files/s (4.377s)

    *** Final Report ***

    File Creates Statistics (3 runs):
      Mean:    4001.86 files/s
      Std Dev: 125.337 files/s
      Min:     3863.7 files/s
      Max:     4167.1 files/s

    File Reads (Opens) Statistics (3 runs):
      Mean:    14382.3 files/s
      Std Dev: 556.594 files/s
      Min:     13636.3 files/s
      Max:     14972.8 files/s

    Cleaning up...

Here is the current help text:

    Usage: cephfs-bench [general-options] <command> [command-options]

    Commands:
      bench      Run IO benchmark

    Allowed options:

    General Options:
      -h [ --help ]                   Produce help message
      -c [ --conf ] arg               Ceph config file path
      -i [ --id ] arg (=admin)        Client ID
      -k [ --keyring ] arg            Path to keyring file
      --filesystem arg                CephFS filesystem name to mount
      --uid arg (=-1)                 User ID to mount as
      --gid arg (=-1)                 Group ID to mount as

    Benchmark Options (used with 'bench' command):
      --threads arg (=1)              Number of threads
      --iterations arg (=1)           Number of iterations
      --files arg (=100)              Total number of files
      --size arg (=4MB)               File size (e.g. 4MB, 0 for creates only)
      --block-size arg (=4MB)         IO block size (e.g. 1MB)
      --fsync-every arg (=0)          Call fsync every N bytes
      --prefix arg (=benchmark_)      Filename prefix
      --dir-prefix arg (=bench_run_)  Directory prefix
      --root-path arg (=/)            Root path in CephFS
      --per-thread-mount              Use separate mount per thread
      --no-cleanup                    Disable cleanup of files

AI-Assisted: significant portions of this code were AI-generated through a dozens of iterative prompts.
Signed-off-by: Patrick Donnelly <pdonnell@ibm.com>
5 days agoMerge PR #67555 into main
Patrick Donnelly [Tue, 14 Apr 2026 12:18:07 +0000 (08:18 -0400)]
Merge PR #67555 into main

* refs/pull/67555/head:
qa/tasks/quiescer: remove racy assertion

Reviewed-by: Rishabh Dave <ridave@redhat.com>
5 days agoMerge PR #68360 into main
Patrick Donnelly [Tue, 14 Apr 2026 12:17:28 +0000 (08:17 -0400)]
Merge PR #68360 into main

* refs/pull/68360/head:
qa: ignore expected MON_DOWN

Reviewed-by: Venky Shankar <vshankar@redhat.com>
5 days agoMerge pull request #66495 from rkachach/fix_issue_nvmeof_ssl
Redouane Kachach [Tue, 14 Apr 2026 11:53:11 +0000 (13:53 +0200)]
Merge pull request #66495 from rkachach/fix_issue_nvmeof_ssl

mgr/cephadm: fix nvmeof TLS handling and add coverage for ssl/mTLS

Reviewed-by: Adam King <adking@redhat.com>
5 days agoMerge pull request #60156 from neesingh-rh/wip-fix-traceback-issue
Venky Shankar [Tue, 14 Apr 2026 10:31:27 +0000 (16:01 +0530)]
Merge pull request #60156 from neesingh-rh/wip-fix-traceback-issue

src: remove showing traceback from assert_valid_host when it fails

Reviewed-by: Venky Shankar <vshankar@redhat.com>
5 days agoMerge pull request #67645 from rhcs-dashboard/75312-EC-profile-default-value
Pedro Gonzalez Gomez [Tue, 14 Apr 2026 10:02:34 +0000 (12:02 +0200)]
Merge pull request #67645 from rhcs-dashboard/75312-EC-profile-default-value

mgr/dashboard: 75312 Making EC profile default plugin value to ISA

Reviewed-by: Nizamudeen A <nia@redhat.com>
Reviewed-by: Abhishek Desai <abhishek.desai1@ibm.com>
Reviewed-by: Pedro Gonzalez Gomez <pegonzal@ibm.com>
5 days agoMerge pull request #67268 from perezjosibm/wip-perezjos-tracker74444
Jose Juan Palacios-Perez [Tue, 14 Apr 2026 09:27:41 +0000 (10:27 +0100)]
Merge pull request #67268 from perezjosibm/wip-perezjos-tracker74444

qa/suites/crimson-rados: first version of cephfs/

6 days agoMerge pull request #67358 from knrt10/wip-crimson-rgw-sts
Matan Breizman [Tue, 14 Apr 2026 08:32:11 +0000 (11:32 +0300)]
Merge pull request #67358 from knrt10/wip-crimson-rgw-sts

qa: Add rgw sts suites to crimson-rados

Reviewed-by: Matan Breizman <mbreizma@redhat.com>
6 days agoMerge pull request #68363 from gbregman/main
Gil Bregman [Tue, 14 Apr 2026 07:59:49 +0000 (10:59 +0300)]
Merge pull request #68363 from gbregman/main

mgr/dashboard: Add port and secure-listeners to subsystem add NVMeoF CLI command

6 days agoMerge pull request #65508 from MaxKellermann/mgr_includes
Kefu Chai [Tue, 14 Apr 2026 03:58:21 +0000 (11:58 +0800)]
Merge pull request #65508 from MaxKellermann/mgr_includes

mgr: reduce header dependencies

Reviewed-by: Ronen Friedman <rfriedma@redhat.com>
Reviewed-by: Kefu Chai <k.chai@proxmox.com>
6 days agomgr/dashboard: Add port and secure-listeners to subsystem add NVMeoF CLI command 68363/head
Gil Bregman [Mon, 13 Apr 2026 21:41:25 +0000 (00:41 +0300)]
mgr/dashboard: Add port and secure-listeners to subsystem add NVMeoF CLI command
Fixes: https://tracker.ceph.com/issues/75998
Signed-off-by: Gil Bregman <gbregman@il.ibm.com>
6 days agoMerge pull request #67661 from jzhu116-bloomberg/wip-75340
Shilpa Jagannath [Mon, 13 Apr 2026 21:06:23 +0000 (14:06 -0700)]
Merge pull request #67661 from jzhu116-bloomberg/wip-75340

rgw: break the coupling of olh epoch and epochs of olh ops

6 days agoMerge pull request #68167 from smanjara/wip-fix-75465
Shilpa Jagannath [Mon, 13 Apr 2026 20:06:27 +0000 (13:06 -0700)]
Merge pull request #68167 from smanjara/wip-fix-75465

qa/multisite: fix test_bucket_remove failure

6 days agoqa: ignore expected MON_DOWN 68360/head
Patrick Donnelly [Mon, 13 Apr 2026 18:22:35 +0000 (14:22 -0400)]
qa: ignore expected MON_DOWN

tasks.cephfs.test_misc.TestMisc.test_dump_inmemory_log_on_missed_internal_heartbeats
deliberately stops the monitors.

Fixes: https://tracker.ceph.com/issues/75992
Signed-off-by: Patrick Donnelly <pdonnell@ibm.com>
6 days agoMerge pull request #67253 from VinayakTiwari1103/osd-fix-build-incremental-map-msg...
Radoslaw Zarzynski [Mon, 13 Apr 2026 18:00:17 +0000 (20:00 +0200)]
Merge pull request #67253 from VinayakTiwari1103/osd-fix-build-incremental-map-msg-abort

osd: avoid ceph_abort in build_incremental_map_msg when newest_map is misssig

Reviewed-by: Kamoltat Sirivadhna <ksirivad@redhat.com>
Reviewed-by: Radoslaw Zarzynski <rzarzyns@redhat.com>
6 days agoMerge pull request #68342 from Matan-B/wip-matanb-objecter-branch
Matan Breizman [Mon, 13 Apr 2026 16:20:40 +0000 (19:20 +0300)]
Merge pull request #68342 from Matan-B/wip-matanb-objecter-branch

qa/tasks/admin_socket.py: replace git.ceph.com with GitHub raw URLs

Reviewed-by: Shraddha Agrawal <shraddhaag@ibm.com>
6 days agoMerge pull request #67744 from SHASHI9705/dashboard-align-no-notification-icon
Afreen Misbah [Mon, 13 Apr 2026 15:29:48 +0000 (20:59 +0530)]
Merge pull request #67744 from SHASHI9705/dashboard-align-no-notification-icon

dashboard: align 'no notifications available' icon in notifications page

Reviewed-by: Afreen Misbah <afreen@ibm.com>
6 days agomgr/cephadm: fix nvmeof TLS handling and add coverage for ssl/mTLS 66495/head
Redouane Kachach [Wed, 3 Dec 2025 09:36:25 +0000 (10:36 +0100)]
mgr/cephadm: fix nvmeof TLS handling and add coverage for ssl/mTLS

This PR fixes the value of `ssl` field on `NvmeofServiceSpec` (was
always set to enable_auth) and add some UT to make sure both specs
with ssl only and with mTLS enabled (enable_auth) generate the
expected daemon configuration.

Fixes: https://tracker.ceph.com/issues/74073
Signed-off-by: Redouane Kachach <rkachach@ibm.com>
6 days agoMerge pull request #68275 from VallariAg/fix-top-tool
Afreen Misbah [Mon, 13 Apr 2026 13:20:15 +0000 (18:50 +0530)]
Merge pull request #68275 from VallariAg/fix-top-tool

mgr/dashboard: validate args in nvmeof top cmds

Reviewed-by: Afreen Misbah <afreen@ibm.com>
Reviewed-by: Nizamudeen A <nia@redhat.com>
6 days agoMerge pull request #68306 from shraddhaag/wip-shraddhaag-bad-machine-state-logs
Shraddha Agrawal [Mon, 13 Apr 2026 13:12:00 +0000 (18:42 +0530)]
Merge pull request #68306 from shraddhaag/wip-shraddhaag-bad-machine-state-logs

src/osd: add more logs to the AllReplicasRecovered handler

6 days agoMerge pull request #65917 from MattyWilliams22/wip-select-data-generator
SrinivasaBharathKanta [Mon, 13 Apr 2026 12:24:26 +0000 (17:54 +0530)]
Merge pull request #65917 from MattyWilliams22/wip-select-data-generator

test: Add option to select data generation type

6 days agoMerge pull request #68329 from tchaikov/wip-mgr-codecs.open
Kefu Chai [Mon, 13 Apr 2026 10:11:27 +0000 (18:11 +0800)]
Merge pull request #68329 from tchaikov/wip-mgr-codecs.open

mgr/dashboard: replace deprecated codecs.open with open

Reviewed-by: Nizamudeen A <nia@redhat.com>
6 days agoMerge pull request #68166 from pdvian/wip-fix-mon-crash
SrinivasaBharathKanta [Mon, 13 Apr 2026 09:58:24 +0000 (15:28 +0530)]
Merge pull request #68166 from pdvian/wip-fix-mon-crash

ceph_mon: Fix shutdown order to destroy Monitor before closing mon store

6 days agoMerge pull request #68043 from dheart-joe/master
SrinivasaBharathKanta [Mon, 13 Apr 2026 09:55:10 +0000 (15:25 +0530)]
Merge pull request #68043 from dheart-joe/master

BlueFS: _flush_and_sync_log_jump_D should validate that jump_to >= log.writer->pos

6 days agoMerge pull request #66460 from MattyWilliams22/omap-rm-range
SrinivasaBharathKanta [Mon, 13 Apr 2026 09:52:41 +0000 (15:22 +0530)]
Merge pull request #66460 from MattyWilliams22/omap-rm-range

librados: Add omap_rm_range function to ObjectWriteOperation

6 days agoMerge pull request #68048 from sseshasa/wip-fix-max-criteria-in-phase1
Sridhar Seshasayee [Mon, 13 Apr 2026 09:44:24 +0000 (15:14 +0530)]
Merge pull request #68048 from sseshasa/wip-fix-max-criteria-in-phase1

mgr/DaemonServer: Limit search for OSDs to upgrade within the crush bucket

Reviewed-by: Nitzan Mordechai <nmordech@redhat.com>
Reviewed-by: Kamoltat Sirivadhna <ksirivad@redhat.com>
6 days agoMerge pull request #67388 from asm0deuz/stop_start_v2
Redouane Kachach [Mon, 13 Apr 2026 09:22:12 +0000 (11:22 +0200)]
Merge pull request #67388 from asm0deuz/stop_start_v2

cephadm: Automates the procedure to shutdown and bring up an entire Ceph cluster

Reviewed-by: Redouane Kachach <rkachach@ibm.com>
7 days agoMerge pull request #68305 from rkachach/fix_teuthology_nfs_issue
Redouane Kachach [Mon, 13 Apr 2026 08:33:58 +0000 (10:33 +0200)]
Merge pull request #68305 from rkachach/fix_teuthology_nfs_issue

qa/cephadm: fix NFS ganesha startup failure in containers

Reviewed-by: Adam King <adking@redhat.com>
Reviewed-by: Shweta Bhosale <Shweta.Bhosale1@ibm.com>
7 days agoMerge pull request #67622 from tchaikov/wip-qa-cephadm-ignore-failed-daemon
Kefu Chai [Mon, 13 Apr 2026 08:27:11 +0000 (16:27 +0800)]
Merge pull request #67622 from tchaikov/wip-qa-cephadm-ignore-failed-daemon

qa/cephadm: ignore transient CEPHADM_FAILED_DAEMON in smoke-singlehost

Reviewed-by: Laura Flores <lflores@redhat.com>
Reviewed-by: Adam King <adking@redhat.com>
7 days agoMerge pull request #67584 from aainscow/osd-backend-test-infrastructure
Alex Ainscow [Mon, 13 Apr 2026 07:15:25 +0000 (08:15 +0100)]
Merge pull request #67584 from aainscow/osd-backend-test-infrastructure

OSD: Add EC backend test infrastructure with peering support

Reviewed-by: Bill Scales <bill_scales@uk.ibm.com>
7 days agoMerge pull request #67443 from aainscow/ec-stretch-cluster-design
Alex Ainscow [Mon, 13 Apr 2026 07:13:31 +0000 (08:13 +0100)]
Merge pull request #67443 from aainscow/ec-stretch-cluster-design

docs: First pass at EC stretch cluster design

Reviewed-by: Bill Scales <bill_scales@uk.ibm.com>
Reviewed-by: Anthony D'Atri <unknown@unknown.com>
7 days agoMerge pull request #67951 from leonidc/propagate_quorum_features_to_client
Aviv Caro [Mon, 13 Apr 2026 07:07:38 +0000 (10:07 +0300)]
Merge pull request #67951 from leonidc/propagate_quorum_features_to_client

Propagate quorum features to client

7 days agoMerge pull request #67872 from rhcs-dashboard/75547-adding-msr-ec-profile-via-dashboard
Nizamudeen A [Mon, 13 Apr 2026 05:28:39 +0000 (10:58 +0530)]
Merge pull request #67872 from rhcs-dashboard/75547-adding-msr-ec-profile-via-dashboard

mgr/dashboard:Adding MSR EC Profile via dashboard

Reviewed-by: Nizamudeen A <nia@redhat.com>
Reviewed-by: Afreen Misbah <afreen@ibm.com>
Reviewed-by: Abhishek Desai <abhishek.desai1@ibm.com>
7 days agoMerge pull request #68343 from gbregman/main
Gil Bregman [Sun, 12 Apr 2026 19:41:32 +0000 (22:41 +0300)]
Merge pull request #68343 from gbregman/main

mgr/dashboard: Add location to gateway info command in NVMeoF CLI

7 days agomgr/dashboard: Add location to gateway info command in NVMeoF CLI 68343/head
Gil Bregman [Sun, 12 Apr 2026 16:18:07 +0000 (19:18 +0300)]
mgr/dashboard: Add location to gateway info command in NVMeoF CLI
Fixes: https://tracker.ceph.com/issues/75968
Signed-off-by: Gil Bregman <gbregman@il.ibm.com>
7 days agoqa/tasks/admin_socket.py: replace git.ceph.com with GitHub raw URLs 68342/head
Matan Breizman [Sun, 12 Apr 2026 14:24:54 +0000 (17:24 +0300)]
qa/tasks/admin_socket.py: replace git.ceph.com with GitHub raw URLs

admin_socket tests can still fail on non-default branches
due to git.ceph.com wget timeouts. Use raw URLs instead.

Fixes: https://tracker.ceph.com/issues/75969
Signed-off-by: Matan Breizman <mbreizma@redhat.com>
7 days agomgr/dashboard: validate args in nvmeof top cmds 68275/head
Vallari Agrawal [Thu, 9 Apr 2026 07:49:18 +0000 (13:19 +0530)]
mgr/dashboard: validate args in nvmeof top cmds

This commit makes these changes to nvmeof top tool:
1. Improve/cleanup help text
2. Rename args (--group, --server-addr, --subsystem) to
   (--gw-group, --server-address, --nqn) to match other nvmeof cmds
3. Validate args --period, --gw-group, --server-address, --sort-by
4. Remove --service arg (since group and service have 1-1 mapping, this is redundant)
5. Show all cpu stats if no args are passed to "ceph nvmeof top cpu"
6. Don't show busy/idle rate more than 100%

Fixes: https://tracker.ceph.com/issues/75927
Signed-off-by: Vallari Agrawal <vallari.agrawal@ibm.com>
7 days agoMerge pull request #68303 from shraddhaag/wip-shraddhaag-debug-rocky10
Shraddha Agrawal [Sun, 12 Apr 2026 10:32:44 +0000 (16:02 +0530)]
Merge pull request #68303 from shraddhaag/wip-shraddhaag-debug-rocky10

container/build.sh: fix debug tag overwrite

8 days agoMerge pull request #67817 from shraddhaag/wip-shraddhaag-add-objectstore-asok
Matan Breizman [Sun, 12 Apr 2026 08:39:01 +0000 (11:39 +0300)]
Merge pull request #67817 from shraddhaag/wip-shraddhaag-add-objectstore-asok

crimson/osd/osd.cc: add osd_objectstore to OSD metadata

Reviewed-by: Jose J Palacios-Perez <perezjos@uk.ibm.com>
8 days agoMerge pull request #68223 from tchaikov/crimson-cleanups
Matan Breizman [Sun, 12 Apr 2026 08:28:12 +0000 (11:28 +0300)]
Merge pull request #68223 from tchaikov/crimson-cleanups

crimson/osd: use O_CLOEXEC with pipe2() in get_early_config

Reviewed-by: Josh Durgin <jdurgin@redhat.com>
Reviewed-by: Matan Breizman <mbreizma@redhat.com>
8 days agoMerge pull request #68230 from gbregman/main
Gil Bregman [Sun, 12 Apr 2026 06:58:02 +0000 (09:58 +0300)]
Merge pull request #68230 from gbregman/main

mgr/dashboard: Add namespace encryption support to NVMeoF CLI

8 days agoMerge pull request #68327 from joscollin/wip-ptl-tool-fix
Jos Collin [Sat, 11 Apr 2026 23:39:49 +0000 (05:09 +0530)]
Merge pull request #68327 from joscollin/wip-ptl-tool-fix

ptl-tool: drop deprecated codecs.open

Reviewed-by: Kefu Chai <k.chai@proxmox.com>
8 days agomgr/dashboard: replace deprecated codecs.open with open 68329/head
Kefu Chai [Sat, 11 Apr 2026 11:22:46 +0000 (19:22 +0800)]
mgr/dashboard: replace deprecated codecs.open with open

codecs.open() was deprecated since Python 3.14, see
https://docs.python.org/3/library/codecs.html#codecs.open.
Let's use the builtin open() as recommended by the official
document.

Signed-off-by: Kefu Chai <tchaikov@gmail.com>
Signed-off-by: Kefu Chai <k.chai@proxmox.com>
8 days agoMerge pull request #64208 from wanglinke521/wlk-fix-iso
Kefu Chai [Sat, 11 Apr 2026 10:47:52 +0000 (18:47 +0800)]
Merge pull request #64208 from wanglinke521/wlk-fix-iso

src/common: fix from_iso_8601 had no exception define

Reviewed-by: Adam C. Emerson <aemerson@redhat.com>
Reviewed-by: Kefu Chai <k.chai@proxmox.com>
9 days agoptl-tool: drop deprecated codecs.open 68327/head
Jos Collin [Sat, 11 Apr 2026 02:09:16 +0000 (07:39 +0530)]
ptl-tool: drop deprecated codecs.open

Signed-off-by: Jos Collin <jcollin@redhat.com>
9 days agoMerge pull request #68288 from lumir-sliva/qa/fix-cephadm-release-mismatch
Redouane Kachach [Fri, 10 Apr 2026 21:15:28 +0000 (23:15 +0200)]
Merge pull request #68288 from lumir-sliva/qa/fix-cephadm-release-mismatch

qa/cephadm: derive container image from cephadm release

Reviewed-by: Redouane Kachach <rkachach@ibm.com>
9 days agoosd: avoid ceph_abort in build_incremental_map_msg when newest_map is missing 67253/head
Vinayak Tiwari [Sun, 8 Feb 2026 08:24:29 +0000 (13:54 +0530)]
osd: avoid ceph_abort in build_incremental_map_msg when newest_map is missing

When sharing OSD maps with a peer (e.g. during heartbeat in
maybe_share_map), we may have already trimmed the requested range or
newest_map (e.g. trim race, or store read failure). In that case the
panic path tried to send newest_map; if it could not be loaded, the
code called ceph_abort() and crashed the OSD.

Log and return an empty MOSDMap instead of aborting. The receiver drops
such messages (last <= superblock.get_newest_map()) and can re-request
from the mon.

Fixes: https://tracker.ceph.com/issues/74800
Signed-off-by: Vinayak Tiwari <tiwarivinayak10@gmail.com>
9 days agodocs: Stretch-EC design doc 67443/head
Alex Ainscow [Thu, 26 Feb 2026 11:10:07 +0000 (11:10 +0000)]
docs: Stretch-EC design doc

Signed-off-by: Alex Ainscow <aainscow@uk.ibm.com>
9 days agomgr/dashboard: Add namespace encryption support to NVMeoF CLI 68230/head
Gil Bregman [Mon, 6 Apr 2026 22:08:15 +0000 (01:08 +0300)]
mgr/dashboard: Add namespace encryption support to NVMeoF CLI
Fixes: https://tracker.ceph.com/issues/74965
Signed-off-by: Gil Bregman <gbregman@il.ibm.com>
9 days agomgr/dashboard: Making 'ISA' as default plugin for EC profiles created through dashboard 67645/head
Devika Babrekar [Wed, 4 Mar 2026 09:07:12 +0000 (14:37 +0530)]
mgr/dashboard: Making 'ISA' as default plugin for EC profiles created through dashboard
Fixes: https://tracker.ceph.com/issues/75312
Signed-off-by: Devika Babrekar <devika.babrekar@ibm.com>
9 days agoMerge pull request #68114 from rhcs-dashboard/add-sync-from-zone
Aashish Sharma [Fri, 10 Apr 2026 10:52:23 +0000 (16:22 +0530)]
Merge pull request #68114 from rhcs-dashboard/add-sync-from-zone

mgr/dashboard: Add option to edit zone with keys/argument like"sync_from" and "sync_from_all"

Reviewed-by: Naman Munet <nmunet@redhat.com>
9 days agoMerge pull request #68150 from ronen-fr/wip-rf-addcounter
Ronen Friedman [Fri, 10 Apr 2026 10:21:54 +0000 (13:21 +0300)]
Merge pull request #68150 from ronen-fr/wip-rf-addcounter

common/perf_counters: improve add() performance

Reviewed-by: Sridhar Seshasayee <sseshasa@redhat.com>
Reviewed-by: Kamoltat Sirivadhna <ksirivad@redhat.com>
9 days agoMerge pull request #67759 from rhcs-dashboard/fix-layout-issue-subsystem
Aashish Sharma [Fri, 10 Apr 2026 10:11:43 +0000 (15:41 +0530)]
Merge pull request #67759 from rhcs-dashboard/fix-layout-issue-subsystem

mgr/dashboard: Subsystem details page opens at stale scroll position after Add Namespace

Reviewed-by: Nizamudeen A <nia@redhat.com>
9 days agosrc/osd: add more logs to the AllReplicasRecovered handler 68306/head
Shraddha Agrawal [Fri, 10 Apr 2026 09:39:41 +0000 (15:09 +0530)]
src/osd: add more logs to the AllReplicasRecovered handler

This PR adds more logs around AllReplicasRecovered Handler to
verify the race between this and defer recovery.

Signed-off-by: Shraddha Agrawal <shraddha.agrawal000@gmail.com>
9 days agoqa/cephadm: fix NFS ganesha startup failure in containers 68305/head
Redouane Kachach [Fri, 10 Apr 2026 09:34:12 +0000 (11:34 +0200)]
qa/cephadm: fix NFS ganesha startup failure in containers

The test_cephadm.sh workunit deploys NFS using cephadm _orch deploy with
config_blobs sourced from src/cephadm/samples/nfs.json. The ganesha.conf
section in that sample has no NFS_CORE_PARAM block, so allow_set_io_flusher_fail
defaults to false.

On Rocky Linux 10 (the current base for ceph:main images), ganesha 7.0 calls
prctl(PR_SET_IO_FLUSHER) at startup. Containers lack the required capabilities
(CAP_SYS_ADMIN/CAP_SYS_RAWIO) for this syscall, so it returns EPERM. With
allow_set_io_flusher_fail unset, ganesha treats this as a fatal error and aborts
immediately, before even fetching the %url RADOS config.

The orchestrator path (ganesha.conf.j2) already has allow_set_io_flusher_fail = true
in its NFS_CORE_PARAM block. This fix brings the sample config used by the
standalone test path in line with it.

Fixes: workunits/{agent/on mon_election/connectivity
task/test_cephadm} failures

Signed-off-by: Redouane Kachach <rkachach@ibm.com>
10 days agocontainer/build.sh: fix debug tag overwrite 68303/head
Shraddha Agrawal [Fri, 10 Apr 2026 08:40:55 +0000 (14:10 +0530)]
container/build.sh: fix debug tag overwrite

This commit fixes an issue when the image is not the base distro,
the debug suffix for it is overwritten. This is especially
required for crimson debug builds to work for rocky10.

Fixes: https://tracker.ceph.com/issues/75952
Signed-off-by: Shraddha Agrawal <shraddha.agrawal000@gmail.com>
10 days agoMerge pull request #68219 from rhcs-dashboard/75872-fixing-IOPs-values-as-whole-numbers
Pedro Gonzalez Gomez [Fri, 10 Apr 2026 08:23:19 +0000 (10:23 +0200)]
Merge pull request #68219 from rhcs-dashboard/75872-fixing-IOPs-values-as-whole-numbers

mgr/dashboard: 75872 fixing iops values as whole numbers

Reviewed-by: Aashish Sharma <aasharma@redhat.com>
10 days agoMerge pull request #68285 from rkachach/fix_issue_75944
Redouane Kachach [Fri, 10 Apr 2026 07:41:00 +0000 (09:41 +0200)]
Merge pull request #68285 from rkachach/fix_issue_75944

qa: fixing target release for MDS upgrade to be umbrella

Reviewed-by: Adam King <adking@redhat.com>
10 days agomgr/dashboard: Add option to edit zone with keys/ 68114/head
Aashish Sharma [Tue, 31 Mar 2026 04:30:23 +0000 (10:00 +0530)]
mgr/dashboard: Add option to edit zone with keys/
argument like"sync_from" and "sync_from_all"

Currently, there is no option to configure the sync_from and sync_from_all keys directly while creating or editing a zone from the dashboard. These arguments are particularly important when setting up archive zones. In archive zones, duplicate objects appear when sync_from_all is set to true (which is the default). The fix is to:
1.Set sync_from_all to false
2.Set sync_from to point to the master zone only
This ensures that the archive zone syncs exclusively from the master zone, preventing duplicate object issues.

Fixes: https://tracker.ceph.com/issues/75950
Signed-off-by: Aashish Sharma <aasharma@redhat.com>
10 days agoMerge pull request #67842 from yzaken/fix_raw_osd_prepare_command
Guillaume Abrioux [Fri, 10 Apr 2026 07:35:45 +0000 (09:35 +0200)]
Merge pull request #67842 from yzaken/fix_raw_osd_prepare_command

python-common: fix raw OSD prepare to use osd-id instead of osd-ids

10 days agoMerge pull request #68281 from rkachach/fix_nvmeof_smoke_test
Redouane Kachach [Fri, 10 Apr 2026 07:34:54 +0000 (09:34 +0200)]
Merge pull request #68281 from rkachach/fix_nvmeof_smoke_test

qa: fixing nvmeof orch smoke test

Reviewed-by: Adam King <adking@redhat.com>
10 days agoMerge pull request #67803 from Annmool/fix-75404-border-subtle
Afreen Misbah [Thu, 9 Apr 2026 20:30:59 +0000 (02:00 +0530)]
Merge pull request #67803 from Annmool/fix-75404-border-subtle

fixes #75404 from trackers:mgr/dashboard: use border-subtle utility class in overview and tearsheet

Reviewed-by: Afreen Misbah <afreen@ibm.com>
10 days agoMerge pull request #68269 from kshtsk/wip-rgw-crypt-kmip
Casey Bodley [Thu, 9 Apr 2026 19:47:20 +0000 (15:47 -0400)]
Merge pull request #68269 from kshtsk/wip-rgw-crypt-kmip

qa/rgw: Revive crypt kmip

Reviewed-by: Casey Bodley <cbodley@redhat.com>
10 days agonvmeofgw: propagate quorum feature to the NVMeofMonClient, 67951/head
Leonid Chernin [Tue, 17 Mar 2026 15:40:16 +0000 (17:40 +0200)]
nvmeofgw: propagate quorum feature to the NVMeofMonClient,
          reverted feature bit NVMEOF_BEACON_DIFF:

   -NVMeofGwMon adds a quorum_features indication to the MonClient map.
   -MonClient initially sends beacons without applying the BEACON_DIFF logic.
   -MonClient begins applying the BEACON_DIFF logic only when the BEACON_DIFF bit
    is set in the quorum_features field of the NVMeoF monitor map.
   -added mon commands:
     nvme-gw set beacon-diff disable
     nvme-gw set beacon-diff enable
   -performed changes in encode/decode of the BEACON_DIFF feature
   -reverted NVMEOF_BEACON_DIFF bit

Signed-off-by: Leonid Chernin <leonidc@il.ibm.com>
10 days agoRevert "mon/MonClient: add get_monmap_required_features() helper"
Leonid Chernin [Mon, 23 Mar 2026 10:57:43 +0000 (12:57 +0200)]
Revert "mon/MonClient: add get_monmap_required_features() helper"

This reverts commit 958080913083af4805f0cc4114c5c96606b05212.
Signed-off-by: Leonid Chernin <leonidc@il.ibm.com>
10 days agodashboard: align 'no notifications available' icon in notifications page 67744/head
Shashiranjan singh [Wed, 11 Mar 2026 18:35:07 +0000 (18:35 +0000)]
dashboard: align 'no notifications available' icon in notifications page

The icon displayed when there are no notifications available in the
notifications page was slightly misaligned with the message text.

This change adjusts the layout to properly align the icon with the
message using flexbox and removes unnecessary spacing.

Fixes: https://tracker.ceph.com/issues/74598
Signed-off-by: Shashiranjan Singh <singhshashiranjan34@gmail.com>
Signed-off-by: Shashiranjan singh <singhshashiranjan34@gmail.com>
10 days agoMerge pull request #67339 from kginonredhat/wip-74658-fix-prometheus_sd_config-return...
Redouane Kachach [Thu, 9 Apr 2026 15:54:18 +0000 (17:54 +0200)]
Merge pull request #67339 from kginonredhat/wip-74658-fix-prometheus_sd_config-returns-hostnames-instead-of-IP

mgr/cephadm: prometheus_sd_config() returns hostnames instead of IP addresses

Reviewed-by: Redouane Kachach <rkachach@ibm.com>
Reviewed-by: John Mulligan <jmulligan@redhat.com>
10 days agoqa/cephadm: derive container image from cephadm release 68288/head
Lumir Sliva [Thu, 9 Apr 2026 15:10:33 +0000 (17:10 +0200)]
qa/cephadm: derive container image from cephadm release

test_cephadm.sh hardcodes IMAGE_DEFAULT to ceph:main, which breaks
every stable branch whenever main is renamed to a new release. The
mismatch check in cephadm correctly rejects the container because its
release name doesn't match cephadm's own release. This has recurred on
every release transition (squid→tentacle, quincy→reef) without a fix.

Instead of always pulling ceph:main, derive IMAGE_DEFAULT from the
installed cephadm's version output. On stable builds (release type
"stable"), use ceph:<release> so the container matches cephadm. On dev
builds (main branch), fall back to ceph:main as before. The IMAGE_DEFAULT
env var can still be set externally to override.

Fixes: https://tracker.ceph.com/issues/75821
Signed-off-by: Lumir Sliva <61183145+lumir-sliva@users.noreply.github.com>
10 days agoMerge pull request #68220 from ujjawal-ibm/ceph-volume-lvm-osd-deployment
Guillaume Abrioux [Thu, 9 Apr 2026 14:34:12 +0000 (16:34 +0200)]
Merge pull request #68220 from ujjawal-ibm/ceph-volume-lvm-osd-deployment

ceph-volume: skip mkfs discard for LVM NVMe OSDs

10 days agoqa: fixing target release for MDS upgrade to be umbrella 68285/head
Redouane Kachach [Thu, 9 Apr 2026 13:58:20 +0000 (15:58 +0200)]
qa: fixing target release for MDS upgrade to be umbrella

Fixes: https://tracker.ceph.com/issues/75944
Signed-off-by: Redouane Kachach <rkachach@ibm.com>
10 days agocephadm: stop start cluster 67388/head
Teoman ONAY [Mon, 16 Feb 2026 13:58:00 +0000 (14:58 +0100)]
cephadm: stop start cluster

Automates the procedure to shutdown and bring up an entire Ceph cluster
with one single command.

- cephadm cluster-{shutdown,start,status}

Fixes: https://tracker.ceph.com/issues/74581
Resolves: ISCE-2109

Signed-off-by: Teoman ONAY <tonay@ibm.com>
10 days agoMerge pull request #67069 from ifed01/wip-ifed-fix-kvstore-tool
Jaya Prakash [Thu, 9 Apr 2026 12:25:45 +0000 (17:55 +0530)]
Merge pull request #67069 from ifed01/wip-ifed-fix-kvstore-tool

tools/ceph-kvstore-tool: fix crash on db close.

Reviewed-by: Adam Kupczyk <akupczyk@ibm.com>
Reviewed-by: Radoslaw Zarzynski <rzarzyns@redhat.com>
10 days agoMerge pull request #67669 from ujjawal-ibm/incorrect-count-multi-path-devices
Redouane Kachach [Thu, 9 Apr 2026 12:14:02 +0000 (14:14 +0200)]
Merge pull request #67669 from ujjawal-ibm/incorrect-count-multi-path-devices

cephadm: avoid double counting NVMe devices in host facts

Reviewed-by: Redouane Kachach <rkachach@ibm.com>
10 days agoMerge pull request #66438 from aclamk/aclamk-bs-bluefs-wal-misalign-fix
Jaya Prakash [Thu, 9 Apr 2026 12:13:19 +0000 (17:43 +0530)]
Merge pull request #66438 from aclamk/aclamk-bs-bluefs-wal-misalign-fix

bluestore: Fix BlueFS WAL envelope mode rendering write buffer misalignment.

Reviewed-by: Igor Fedotov <igor.fedotov@croit.io>
10 days agoMerge pull request #66577 from Jayaprakash-ibm/wip-slow-ops-warn-in-scrub
Jaya Prakash [Thu, 9 Apr 2026 12:12:55 +0000 (17:42 +0530)]
Merge pull request #66577 from Jayaprakash-ibm/wip-slow-ops-warn-in-scrub

os/bluestore: separate slow scrub ops from normal slow ops

Reviewed-by: Adam Kupczyk <akupczyk@ibm.com>
Reviewed-by: Igor Fedotov <igor.fedotov@croit.io>
10 days agoMerge pull request #67699 from aclamk/aclamk-bs-fix-ncb-assert
Jaya Prakash [Thu, 9 Apr 2026 12:12:26 +0000 (17:42 +0530)]
Merge pull request #67699 from aclamk/aclamk-bs-fix-ncb-assert

os/bluestore: Solve NCB recovery asserting when onode key is missing

Reviewed-by: Igor Fedotov <igor.fedotov@croit.io>
10 days agoqa: fixing nvmeof orch smoke test 68281/head
Redouane Kachach [Thu, 9 Apr 2026 11:51:50 +0000 (13:51 +0200)]
qa: fixing nvmeof orch smoke test

Adapting the orch apply cmd to use the new pool/group arguments

Signed-off-by: Redouane Kachach <rkachach@ibm.com>
Fixes: https://tracker.ceph.com/issues/75934
10 days agoMerge pull request #66992 from rkachach/fix_certmgr_error_warning
Redouane Kachach [Thu, 9 Apr 2026 11:25:50 +0000 (13:25 +0200)]
Merge pull request #66992 from rkachach/fix_certmgr_error_warning

mgr/cephadm: add logic to handle certmgr errors and warnings

Reviewed-by: Guillaume Abrioux <gabrioux@ibm.com>
Reviewed-by: Shweta Bhosale <Shweta.Bhosale1@ibm.com>
Reviewed-by: Abhishek Desai <abhishek.desai1@ibm.com>
10 days agoMerge pull request #67621 from tchaikov/wip-cephadm-ceph.conf
Redouane Kachach [Thu, 9 Apr 2026 11:18:59 +0000 (13:18 +0200)]
Merge pull request #67621 from tchaikov/wip-cephadm-ceph.conf

cephadm: fix rm-cluster when /etc/ceph/ceph.conf is a directory

Reviewed-by: Redouane Kachach <rkachach@redhat.com>
10 days agoMerge pull request #67953 from rkachach/fix_issue_raw_osd_teuthology
Redouane Kachach [Thu, 9 Apr 2026 10:53:43 +0000 (12:53 +0200)]
Merge pull request #67953 from rkachach/fix_issue_raw_osd_teuthology

qa: wipe disks in case of raw option is provided

Reviewed-by: Guillaume Abrioux <gabrioux@ibm.com>
10 days agoMerge pull request #68266 from VallariAg/fix-nvmeof-upgrade-v20
Vallari Agrawal [Thu, 9 Apr 2026 10:42:04 +0000 (16:12 +0530)]
Merge pull request #68266 from VallariAg/fix-nvmeof-upgrade-v20

qa: fix nvmeof upgrade from v20.2.0

10 days agoMerge pull request #68270 from ronen-fr/wip-rf-fix-zns
Ronen Friedman [Thu, 9 Apr 2026 10:10:30 +0000 (13:10 +0300)]
Merge pull request #68270 from ronen-fr/wip-rf-fix-zns

crimson/os/seastore: fix WITH_ZNS builds

Reviewed-by: Kefu Chai <kchai@redhat.com>
11 days agoMerge pull request #68271 from zdover23/wip-doc-2026-04-09-cephfs-scrub
bluikko [Thu, 9 Apr 2026 09:04:42 +0000 (16:04 +0700)]
Merge pull request #68271 from zdover23/wip-doc-2026-04-09-cephfs-scrub

doc/cephfs: Remove spaces from command

11 days agodoc/cephfs: Remove spaces from command 68271/head
Zac Dover [Thu, 9 Apr 2026 05:40:12 +0000 (15:40 +1000)]
doc/cephfs: Remove spaces from command

Remove spaces from a command. The spaces prevented the command from
functioning as intended.

Signed-off-by: Zac Dover <zac.dover@clyso.com>
11 days agocrimson/os/seastore: fix WITH_ZNS builds 68270/head
Ronen Friedman [Thu, 9 Apr 2026 05:28:36 +0000 (05:28 +0000)]
crimson/os/seastore: fix WITH_ZNS builds

Build was broken for ZNS support.

Signed-off-by: Ronen Friedman <rfriedma@redhat.com>
11 days agoqa/tasks/pykmip: archive pykmip log after server down 68269/head
Kyr Shatskyy [Tue, 7 Apr 2026 16:07:37 +0000 (18:07 +0200)]
qa/tasks/pykmip: archive pykmip log after server down

Signed-off-by: Kyr Shatskyy <kyrylo.shatskyy@clyso.com>
11 days agoqa/tasks/pykmip: use OpenSSL names instead IANA
Kyr Shatskyy [Tue, 7 Apr 2026 17:46:11 +0000 (19:46 +0200)]
qa/tasks/pykmip: use OpenSSL names instead IANA

For OpenSSL 3.x which the IANA names might not be supported.

Signed-off-by: Kyr Shatskyy <kyrylo.shatskyy@clyso.com>
11 days agoqa/tasks/pykmip: drop py2 deps
Kyr Shatskyy [Tue, 7 Apr 2026 15:02:48 +0000 (17:02 +0200)]
qa/tasks/pykmip: drop py2 deps

We don't need no more python2 dependencies

Signed-off-by: Kyr Shatskyy <kyrylo.shatskyy@clyso.com>
11 days agoRevert "qa/rgw/crypt: disable failing kmip testing"
Kyr Shatskyy [Tue, 7 Apr 2026 14:30:55 +0000 (16:30 +0200)]
Revert "qa/rgw/crypt: disable failing kmip testing"

This reverts commit 5df7b44727ebe1ae070b6af7a81bb5bf07681863.

Signed-off-by: Kyr Shatskyy <kyrylo.shatskyy@clyso.com>
11 days agoMerge pull request #68255 from tchaikov/wip-debian-cleanups
Kefu Chai [Wed, 8 Apr 2026 23:37:21 +0000 (07:37 +0800)]
Merge pull request #68255 from tchaikov/wip-debian-cleanups

debian: remove stale distutils override from py3dist-overrides

Reviewed-by: Casey Bodley <cbodley@redhat.com>
11 days agoMerge pull request #66385 from avanthakkar/fix-name-length-regex
John Mulligan [Wed, 8 Apr 2026 19:09:34 +0000 (15:09 -0400)]
Merge pull request #66385 from avanthakkar/fix-name-length-regex

mgr/smb: relax name length validation to support KMIP/GKLM aliases

Reviewed-by: Xavi Hernandez <xhernandez@gmail.com>
Reviewed-by: Anoop C S <anoopcs@cryptolab.net>
Reviewed-by: John Mulligan <jmulligan@redhat.com>
11 days agomgr/dashboard: use border-subtle utility class in overview and tearsheet 67803/head
Annmool [Sun, 15 Mar 2026 13:54:36 +0000 (19:24 +0530)]
mgr/dashboard: use border-subtle utility class in overview and tearsheet

Replace the remaining custom dashboard border classes in the overview alerts card and tearsheet with the shared border-subtle utility classes. Update the alerts-card unit test so it checks the shared utility class name used by the template. Stub Prometheus overview requests in the dashboard a11y Cypress test so the test does not fail on missing metrics in CI.

Fixes: http://tracker.ceph.com/issues/75404
Signed-off-by: Annmool <aydv.267@gmail.com>
11 days agoMerge pull request #68225 from Matan-B/wip-matanb-split-timeouts
Aishwarya Mathuria [Wed, 8 Apr 2026 16:22:18 +0000 (21:52 +0530)]
Merge pull request #68225 from Matan-B/wip-matanb-split-timeouts

qa/suites/crimson-rados/../pggrow: increase op_delay

11 days agoqa: fix nvmeof upgrade from v20.2.0 68266/head
Vallari Agrawal [Wed, 8 Apr 2026 15:51:45 +0000 (21:21 +0530)]
qa: fix nvmeof upgrade from v20.2.0

Bootstrap fails on v20.2.0 upgrade because of
cephadm binary and ceph image version mismatch.

This fixes following problem in bootstrap by using
tentacle cephadm binary:
```
Error: Container release tentacle != cephadm release umbrella; please use matching version of cephadm (pass --allow-mismatched-release to continue anyway)
```

Fixes: https://tracker.ceph.com/issues/75912
Signed-off-by: Vallari Agrawal <vallari.agrawal@ibm.com>
11 days agomgr/smb: relax name length validation to support KMIP/GKLM aliases 66385/head
Avan Thakkar [Mon, 24 Nov 2025 10:58:43 +0000 (16:28 +0530)]
mgr/smb: relax name length validation to support KMIP/GKLM aliases

Introduce new regex for mem/kmip key names to allow up to 63 characters, which
matches the maximum permitted DNS label length (RFC 1035).

Signed-off-by: Avan Thakkar <athakkar@redhat.com>
11 days agoMerge PR #68125 into main
Patrick Donnelly [Wed, 8 Apr 2026 14:11:09 +0000 (10:11 -0400)]
Merge PR #68125 into main

* refs/pull/68125/head:
libcephsqlite: ensure atexit handlers are registered after openssl

Reviewed-by: Brad Hubbard <bhubbard@redhat.com>
11 days agomgr/DaemonState: forward-declare class DaemonHealthMetric 65508/head
Max Kellermann [Thu, 14 Aug 2025 12:54:51 +0000 (14:54 +0200)]
mgr/DaemonState: forward-declare class DaemonHealthMetric

This requires un-inlining constructor and destructor.

Signed-off-by: Max Kellermann <max.kellermann@ionos.com>
11 days agomgr/MDSPerfMetricTypes: include cleanup
Max Kellermann [Wed, 20 Aug 2025 07:54:14 +0000 (09:54 +0200)]
mgr/MDSPerfMetricTypes: include cleanup

Signed-off-by: Max Kellermann <max.kellermann@ionos.com>