]> git-server-git.apps.pok.os.sepia.ceph.com Git - ceph-build.git/log
ceph-build.git
37 hours agopodman auth: share one authfile via same-shell exports podman-auth-same-shell 2668/head
David Galloway [Tue, 28 Jul 2026 21:24:40 +0000 (17:24 -0400)]
podman auth: share one authfile via same-shell exports

The two preceding reverts remove fixes built on wrong assumptions:

aae7f2fd blamed logind tearing down the XDG runtime dir between
  steps. An auditd watch on /run/user/<uid>/containers/ disproved
  that: nothing external ever touches auth.json there; every write is
  podman login's own atomic tmp+rename. Linger is enabled and the
  agent runs as a systemd service with no login sessions, so the
  directory is stable across the whole job.
- The ceph-dev-pipeline fix (#2656) added --authfile to the logins
  plus a Groovy env.REGISTRY_AUTH_FILE assignment. Tracker 77920
  recurred on 2026-07-22 with it deployed: login wrote docker.io
  credentials to $HOME/.config/containers/auth.json, and the
  FROM docker.io/ubuntu:22.04 pull inside podman build (spawned by
  build-with-container.py) still ran anonymous and hit
  toomanyrequests.

A debug run on a builder pinned the real mechanism. With the variable
present in podman build's environment, the base image pull uses it:

  $ REGISTRY_AUTH_FILE=$HOME/.config/containers/auth.json \
      podman build --pull --log-level=debug ... 2>&1 | grep -i cred
  "Found credentials for docker.io/library/ubuntu ... in file
   /home/jenkins-build/.config/containers/auth.json"

So the pull authenticates whenever REGISTRY_AUTH_FILE actually reaches
the process, which means on 2026-07-22 it did not. That dictates the
shape of this change:

- No --authfile on logins: pointing only the login at a file steers
  credentials somewhere later pulls never look, which is worse than
  the podman default.
- No Groovy env threading: it demonstrably failed to deliver the
  variable to the bwc subprocess, and it silently depends on stage
  ordering and when{} guards.
- Instead, every sh block that invokes podman or
  build-with-container.py exports REGISTRY_AUTH_FILE itself. A
  same-shell export reaches podman through ordinary process
  inheritance and cannot be lost. podman login honors the variable
  for writes, so login and every later read use the same persistent
  file by construction. The export line is repeated verbatim in each
  block on purpose: each block is self-sufficient and the pattern is
  greppable.

Fixes: https://tracker.ceph.com/issues/77920
Signed-off-by: David Galloway <david.galloway@ibm.com>
37 hours agoRevert "bwc: pin podman auth to a persistent authfile"
David Galloway [Tue, 28 Jul 2026 21:23:25 +0000 (17:23 -0400)]
Revert "bwc: pin podman auth to a persistent authfile"

This reverts commit aae7f2fd4e6efd45f36e0e9fa342b9d2db252bfd.

37 hours agoRevert "Merge pull request #2656 from ceph/dev-pipeline-authfile"
David Galloway [Tue, 28 Jul 2026 21:23:25 +0000 (17:23 -0400)]
Revert "Merge pull request #2656 from ceph/dev-pipeline-authfile"

This reverts commit f1996164a6f0ac4a074619b2aaedd1e12ef58372, reversing
changes made to ee0f06db67fd68e30c87e627182d2cde4069a978.

3 days agoMerge pull request #2665 from knrt10/ceph-perf-pr-write-tests
Kautilya Tripathi [Mon, 27 Jul 2026 10:36:39 +0000 (16:06 +0530)]
Merge pull request #2665 from knrt10/ceph-perf-pr-write-tests

ceph-perf: run 4K write CBT alongside 4K read

3 days agoceph-perf: run 4K write CBT alongside 4K read 2665/head
Kautilya Tripathi [Mon, 27 Jul 2026 09:57:59 +0000 (15:27 +0530)]
ceph-perf: run 4K write CBT alongside 4K read

Extend the PR perf jobs to execute radosbench_4K_write.yaml as well as
radosbench_4K_read.yaml. Keep per-workload archives under read/ and
write/, reuse the Ceph build for the second workload, and merge both
compare.py reports into one GitHub check with clear section headings.
Document the metrics, row counts, and how to read the results.

Signed-off-by: Kautilya Tripathi <kautilya.tripathi@ibm.com>
7 days agoMerge pull request #2661 from dmick/discard-cdp-builds
Zack Cerza [Wed, 22 Jul 2026 15:59:41 +0000 (09:59 -0600)]
Merge pull request #2661 from dmick/discard-cdp-builds

ceph-dev-pipeline: discard builds/artifacts older than 90 days

8 days agoMerge pull request #2664 from knrt10/fix-ceph-perf-python-package-rocky
Kautilya Tripathi [Wed, 22 Jul 2026 05:05:10 +0000 (10:35 +0530)]
Merge pull request #2664 from knrt10/fix-ceph-perf-python-package-rocky

ceph-perf: fix Rocky/EL10 Python package setup

8 days agoceph-perf: fix Rocky/EL10 Python package setup 2664/head
Kautilya Tripathi [Wed, 22 Jul 2026 04:45:32 +0000 (10:15 +0530)]
ceph-perf: fix Rocky/EL10 Python package setup

Performance nodes are Rocky 10. Setup failed because python3-Cython is
not in AppStream (python3-cython is in CRB) and python3-matplotlib is
only in EPEL. Enable CRB/PowerTools and epel-release before installing
those RPMs, and prefer python3 -m venv since the virtualenv CLI is not
shipped on EL10.

Signed-off-by: Kautilya Tripathi <kautilya.tripathi@ibm.com>
8 days agoMerge pull request #2663 from knrt10/fix-ceph-perf-distro
Kautilya Tripathi [Wed, 22 Jul 2026 03:57:02 +0000 (09:27 +0530)]
Merge pull request #2663 from knrt10/fix-ceph-perf-distro

ceph-perf: recognize Rocky/AlmaLinux in setup

8 days agoceph-perf: recognize Rocky/AlmaLinux in setup 2663/head
Kautilya Tripathi [Wed, 22 Jul 2026 03:44:21 +0000 (09:14 +0530)]
ceph-perf: recognize Rocky/AlmaLinux in setup

Performance nodes now run Rocky 10 (ID=rocky); the setup case only
handled centos|rhel and exited with "unknown distro". Treat rocky and
almalinux as EL-family, and make llvm/gcc-toolset steps best-effort so
Rocky 10 does not fail on missing EL8/9 modules.

Signed-off-by: Kautilya Tripathi <kautilya.tripathi@ibm.com>
8 days agoMerge pull request #2662 from knrt10/fix-ceph-perf-no-conf-err
Kautilya Tripathi [Wed, 22 Jul 2026 03:29:03 +0000 (08:59 +0530)]
Merge pull request #2662 from knrt10/fix-ceph-perf-no-conf-err

ceph-perf: run stop.sh from build dir after CBT

8 days agoceph-perf: run stop.sh from build dir after CBT 2662/head
Kautilya Tripathi [Wed, 22 Jul 2026 02:52:40 +0000 (08:22 +0530)]
ceph-perf: run stop.sh from build dir after CBT

Calling src/stop.sh from the source tree leaves CEPH_BIN empty and
errors as /ceph-conf. Match run-cbt.sh by stopping from build/, and
use pkill -x so cleanup does not match itself.

Signed-off-by: Kautilya Tripathi <kautilya.tripathi@ibm.com>
8 days agoceph-dev-pipeline: discard builds/artifacts older than 90 days 2661/head
Dan Mick [Wed, 22 Jul 2026 01:04:49 +0000 (18:04 -0700)]
ceph-dev-pipeline: discard builds/artifacts older than 90 days

we were accumulating without bound and ran the Jenkins homedir
disk out of space.  Let's put a limit on and see how it goes.

Signed-off-by: Dan Mick <dmick@ibm.com>
12 days agoMerge pull request #2584 from ceph/wip-72370
David Galloway [Fri, 17 Jul 2026 17:37:10 +0000 (13:37 -0400)]
Merge pull request #2584 from ceph/wip-72370

update_shaman: Send pipeline matrix URL when updating shaman build url

12 days agoupdate_shaman: Send pipeline matrix URL when updating shaman build url 2584/head
David Galloway [Fri, 17 Jul 2026 17:24:08 +0000 (13:24 -0400)]
update_shaman: Send pipeline matrix URL when updating shaman build url

Fixes: https://tracker.ceph.com/issues/72370
Signed-off-by: David Galloway <david.galloway@ibm.com>
12 days agoMerge pull request #2601 from ceph/cds
Zack Cerza [Fri, 17 Jul 2026 16:18:13 +0000 (10:18 -0600)]
Merge pull request #2601 from ceph/cds

ceph-devstack: Update default repo

12 days agoMerge pull request #2656 from ceph/dev-pipeline-authfile
David Galloway [Fri, 17 Jul 2026 15:46:55 +0000 (11:46 -0400)]
Merge pull request #2656 from ceph/dev-pipeline-authfile

ceph-dev-pipeline: pin podman auth to a persistent authfile

13 days agoceph-devstack: Update default repo and trigger 2601/head
Zack Cerza [Fri, 29 May 2026 20:13:02 +0000 (14:13 -0600)]
ceph-devstack: Update default repo and trigger

Signed-off-by: Zack Cerza <zack@cerza.org>
13 days agoMerge pull request #2631 from bluikko/website-use-pr-id
David Galloway [Thu, 16 Jul 2026 14:53:43 +0000 (10:53 -0400)]
Merge pull request #2631 from bluikko/website-use-pr-id

ceph-website-prs: use GH PR number instead of branch name

13 days agoMerge pull request #2657 from ceph/builder-java-alternatives-fix
David Galloway [Thu, 16 Jul 2026 12:49:52 +0000 (08:49 -0400)]
Merge pull request #2657 from ceph/builder-java-alternatives-fix

builder.yml: Updates to support Rocky 10 builder

2 weeks agoceph-dev-pipeline: pin podman auth to a persistent authfile 2656/head
David Galloway [Wed, 15 Jul 2026 20:18:08 +0000 (16:18 -0400)]
ceph-dev-pipeline: pin podman auth to a persistent authfile

Same fix as aae7f2fd applied to the builder container stage. The
Jenkins agent runs as a systemd service with no login session and no
XDG_RUNTIME_DIR, so podman derives the default auth.json location from
ambient node state at each invocation: /run/user/<uid> if it exists
(which depends on linger/session state), else fallback dirs under /tmp.
All of these are runtime tmpfs paths whose lifecycle is owned by
logind, systemd-tmpfiles, or podman's fallback heuristics rather than
by the job.

We observed a job where podman login succeeded and the base image pull
inside build-with-container.py went anonymous sixty seconds later on
the same node, hitting Docker Hub's unauthenticated per-IP rate limit
(toomanyrequests). The exact event that made the credentials
unavailable is still under investigation, but pinning the authfile to
persistent storage in $HOME removes the dependency on runtime tmpfs
state entirely.

Because each Jenkins sh step runs a fresh shell, REGISTRY_AUTH_FILE is
set via env at the Groovy level so every subsequent sh step in the
matrix cell resolves the same file, including the build stage's
build-with-container.py runs (which we cannot pass --authfile to) and
the container stage's build_container.

Refs: https://tracker.ceph.com/issues/77920

Signed-off-by: David Galloway <david.galloway@ibm.com>
2 weeks agobuilder.yml: extend EL9 conditionals to EL9+ 2657/head
David Galloway [Wed, 15 Jul 2026 23:26:55 +0000 (19:26 -0400)]
builder.yml: extend EL9 conditionals to EL9+

EL10 hosts matched neither the EL8 (== 8) nor EL9 (== 9) conditions,
so epel_rpms, container_service_name, and container_certs_path were
never set ('container_certs_path' is undefined at the Container Tasks
block) and the dnf upgrade task was skipped entirely.

Change both '== 9' conditions to '>= 9' so EL10 builders get package
upgrades and the EPEL/container vars.

Signed-off-by: David Galloway <david.galloway@ibm.com>
2 weeks agobuilder.yml: look up java alternative path on RedHat
David Galloway [Wed, 15 Jul 2026 23:04:47 +0000 (19:04 -0400)]
builder.yml: look up java alternative path on RedHat

'update-alternatives --set java java-21-openjdk.x86_64' fails on newer
EL releases with 'java-21-openjdk.x86_64 has not been configured as an
alternative for java' because the java alternative is registered under
its full JVM path instead of the family name.

Query 'alternatives --display java' for the installed path matching
java_version and pass that to the alternatives module, mirroring the
Debian block above.

Signed-off-by: David Galloway <david.galloway@ibm.com>
2 weeks agoMerge pull request #2655 from ceph/builder-reimage-fix
Jitendra Sahu [Wed, 15 Jul 2026 15:06:20 +0000 (20:36 +0530)]
Merge pull request #2655 from ceph/builder-reimage-fix

builder-reimage: improve Ansible SSH failure handling

2 weeks agobuilder-reimage: improve Ansible SSH failure handling 2655/head
jitendrasahu1803 [Fri, 10 Jul 2026 20:54:19 +0000 (16:54 -0400)]
builder-reimage: improve Ansible SSH failure handling

2 weeks agoMerge pull request #2654 from ceph/builder-playbook-fix
David Galloway [Wed, 15 Jul 2026 14:17:05 +0000 (10:17 -0400)]
Merge pull request #2654 from ceph/builder-playbook-fix

builder.yml: fix CentOS 9 libvirt builder setup

2 weeks agobuilder.yml: simplify libvirt RPM setup 2654/head
jitendrasahu1803 [Wed, 15 Jul 2026 07:45:09 +0000 (13:15 +0530)]
builder.yml: simplify libvirt RPM setup

2 weeks agoMerge pull request #2636 from anshuman-agarwala/ppc-ut-fix
Zack Cerza [Tue, 14 Jul 2026 23:31:25 +0000 (17:31 -0600)]
Merge pull request #2636 from anshuman-agarwala/ppc-ut-fix

Fixed issues in ppc-ut job.

2 weeks agobuilder.yml: avoid get_url SSL failure for agent.jar download
jitendrasahu1803 [Tue, 14 Jul 2026 12:14:02 +0000 (17:44 +0530)]
builder.yml: avoid get_url SSL failure for agent.jar download

2 weeks agobuilder.yml: avoid krb5 source build on EL9
jitendrasahu1803 [Tue, 14 Jul 2026 10:49:50 +0000 (16:19 +0530)]
builder.yml: avoid krb5 source build on EL9

2 weeks agobuilder.yml: fix libvirt-devel install on CentOS 9
jitendrasahu1803 [Tue, 14 Jul 2026 07:49:16 +0000 (13:19 +0530)]
builder.yml: fix libvirt-devel install on CentOS 9

2 weeks agoMerge pull request #2652 from ceph/br-fix
David Galloway [Mon, 13 Jul 2026 14:00:33 +0000 (10:00 -0400)]
Merge pull request #2652 from ceph/br-fix

builder-reimage fixes and improvements

2 weeks agoMerge pull request #2653 from ceph/jjb-skip-cve
David Galloway [Sat, 11 Jul 2026 13:33:23 +0000 (09:33 -0400)]
Merge pull request #2653 from ceph/jjb-skip-cve

2 weeks agojenkins-job-builder: skip the CVE jobs 2653/head
David Galloway [Fri, 10 Jul 2026 22:51:10 +0000 (18:51 -0400)]
jenkins-job-builder: skip the CVE jobs

Skip cve-pipeline and cve-source-dist in the update loop and exclude
them from the deletion pass so they aren't removed for lacking test
XML.  Changes to those jobs must be made manually by a Jenkins admin.

Signed-off-by: David Galloway <david.galloway@ibm.com>
2 weeks agoMerge pull request #2651 from ceph/wip-pulp-upload-fixes
David Galloway [Fri, 10 Jul 2026 22:44:36 +0000 (18:44 -0400)]
Merge pull request #2651 from ceph/wip-pulp-upload-fixes

enhancement: split `Chacra` and `Pulp` upload into independent pipeline stages

2 weeks agoceph-dev-pipeline: verify the chacra repo URL answers before trusting shaman 2651/head
David Galloway [Fri, 10 Jul 2026 22:39:39 +0000 (18:39 -0400)]
ceph-dev-pipeline: verify the chacra repo URL answers before trusting shaman

Follow-up to the shaman-based chacra existence check: a ready repo
record can outlive the repo it points at (chacra nodes get rotated or
rebuilt, and shaman has been observed reporting "no healthy chacra
nodes" while ready records remained).  Skipping compilation on the
strength of a stale record would leave consumers with a dead repo URL,
so extract the record's chacra_url and require it to answer 2xx; any
failure falls back to rebuilding.

Signed-off-by: David Galloway <david.galloway@ibm.com>
2 weeks agobuilder-reimage: retain network configuration when commissioning 2652/head
David Galloway [Fri, 10 Jul 2026 21:13:46 +0000 (17:13 -0400)]
builder-reimage: retain network configuration when commissioning

Pass skip_networking=True to machine.commission(), the API equivalent
of checking "Retain network configuration" in the MAAS UI, so a
machine commissioned by the reimage job keeps its existing interface
configuration instead of having it replaced by whatever commissioning
discovers.

Signed-off-by: David Galloway <david.galloway@ibm.com>
2 weeks agobuilder-reimage: add CEPH_BUILD_BRANCH parameter
David Galloway [Fri, 10 Jul 2026 20:58:01 +0000 (16:58 -0400)]
builder-reimage: add CEPH_BUILD_BRANCH parameter

Add the same CEPH_BUILD_BRANCH functionality ceph-dev-pipeline has: a
string parameter (default main) wired into the pipeline-scm branch
spec, so the Jenkinsfile and 'checkout scm' contents can be taken from
a ceph-build branch under test.

Unlike ceph-dev-pipeline, this job also clones ceph-build at runtime
via prepare_env.sh (ansible_runner.sh runs playbooks from
repos/main/ansible), so pass the branch through as a new optional
seventh argument and clone that branch. Also fix the usage comment,
which had the main/ansible repo argument order swapped.

Drop the top-level scm block from the JJB definition: jenkins-jobs
discards it for pipeline project-type jobs (verified the generated XML
is identical with and without it), so it was dead config.

Signed-off-by: David Galloway <david.galloway@ibm.com>
2 weeks agobuilder-reimage: fix SSH key not being used for git clones
David Galloway [Fri, 10 Jul 2026 20:54:19 +0000 (16:54 -0400)]
builder-reimage: fix SSH key not being used for git clones

The Prepare stage copied the ansible-ssh-key credential into the
workspace but never exported GIT_SSH_COMMAND, and prepare_env.sh only
looked for a key at /tmp/jenkins_git_key, which nothing creates. The
ceph-cm-ansible clone therefore ran without a key and failed with
'Permission denied (publickey)'.

Export GIT_SSH_COMMAND in the Prepare stage (as the Ansible stage
already does) and drop the dead /tmp key path from prepare_env.sh so
clones and fetches both inherit the caller's GIT_SSH_COMMAND. Also pass
$SSH_KEY to the shell instead of interpolating it in Groovy, clearing
the insecure-interpolation warning.

Signed-off-by: David Galloway <david.galloway@ibm.com>
2 weeks agosetup_chacractl: fail when shaman has no healthy chacra nodes
David Galloway [Fri, 10 Jul 2026 18:17:36 +0000 (14:17 -0400)]
setup_chacractl: fail when shaman has no healthy chacra nodes

shaman's /api/nodes/next/ answers 404 with an HTML error page when it
has no healthy chacra node to allocate; without -f, curl captured that
page and setup_chacractl.sh wrote it into ~/.chacractl as the url.
Fail the curl instead.

Also run setup_chacractl.sh from the chacra upload stage rather than
the check stage: the existence check asks shaman now, so chacra being
unhealthy only fails cells that actually need to upload to chacra
(the upload stage's environment{} provides the credentials).

Signed-off-by: David Galloway <david.galloway@ibm.com>
2 weeks agobuild_container: fix the shaman repo readiness wait
David Galloway [Fri, 10 Jul 2026 16:54:56 +0000 (12:54 -0400)]
build_container: fix the shaman repo readiness wait

Two problems in the wait loop:

- It only inspected .[0] of the shaman search result, but shaman holds
  several repo records for the same sha1 (one per backend and per
  uploading job).  Observed: .[0] was the chacra record posted by the
  production ceph-dev-pipeline building the same main sha1, whose
  extra.build_url could never match this build's, so the loop always
  timed out even though this build's own (pulp) record was ready at
  .[1].  Scan all records instead.

- The skipped-compilation escape hatch keyed off the CI_COMPILE
  parameter, which stays "true" when the artifact-existence check is
  what skipped compilation.  The pipeline now exports UPLOADED (this
  cell compiled, THROWAWAY off, at least one backend enabled); when
  false, any ready record for this sha1 satisfies the wait.

Also make the timeout fatal: it used to print FAIL and build the
container anyway, which either fails later in the Containerfile or
silently bakes stale packages.  Now that the readiness check is
accurate, a timeout is a real error.  Note THROWAWAY=true with
CI_CONTAINER=true now fails cleanly when the sha1 was never published
anywhere, instead of building an image from whatever shaman had.

Signed-off-by: David Galloway <david.galloway@ibm.com>
2 weeks agoceph-dev-pipeline: only skip compilation when every enabled backend has the build
David Galloway [Fri, 10 Jul 2026 16:48:15 +0000 (12:48 -0400)]
ceph-dev-pipeline: only skip compilation when every enabled backend has the build

shouldSkipCompilation() treated the existence checks as an OR: if
either Chacra or Pulp already had the build, compilation was skipped
entirely -- which also skipped the upload to the backend that was
missing it.  Observed with PULP_UPLOAD and CHACRA_UPLOAD both enabled:
pulp had the distribution, the chacra check came back empty, and the
cell skipped straight past both uploads, so chacra never received the
build.

Skip compilation only when every enabled backend already has the build
(disabled backends don't count), and when compilation does run because
one backend was missing, skip the upload stage of the backend that
already had it (unless FORCE) so packages aren't blindly re-pushed.

Signed-off-by: David Galloway <david.galloway@ibm.com>
2 weeks agoMerge pull request #2650 from ceph/crp-64k
David Galloway [Fri, 10 Jul 2026 17:04:48 +0000 (13:04 -0400)]
Merge pull request #2650 from ceph/crp-64k

ceph-release-pipeline: use @Field for top-level variables

2 weeks agoceph-dev-pipeline: check for existing chacra builds via shaman
David Galloway [Fri, 10 Jul 2026 16:34:01 +0000 (12:34 -0400)]
ceph-dev-pipeline: check for existing chacra builds via shaman

setup_chacractl.sh points chacractl at whichever chacra node shaman's
/api/nodes/next/ hands out, which is a round-robin upload allocator.
`chacractl exists` against that node only finds a previous build's
binaries when the rotation happens to land on the same node the build
uploaded to: observed binaries on 2.chacra.ceph.com while the check
404'd against 1.chacra.ceph.com.  This predates the stage split but now
gates compilation.

Ask shaman instead, which records which node holds each build: a
"ready" repo record for this project/ref/sha1/distro/arch/flavor with
a chacra.ceph.com chacra_url.  Pulp repo records live in the same
shaman collection, so filter on chacra_url.  setup_chacractl.sh still
runs here to configure ~/.chacractl for the upload stage.

Signed-off-by: David Galloway <david.galloway@ibm.com>
2 weeks agoMerge pull request #2649 from ceph/job-mod-test
David Galloway [Fri, 10 Jul 2026 15:53:20 +0000 (11:53 -0400)]
Merge pull request #2649 from ceph/job-mod-test

README: Update "testing changes" section

2 weeks agoceph-dev-pipeline: report the flavor-level pulp repo URL to shaman
David Galloway [Fri, 10 Jul 2026 14:36:03 +0000 (10:36 -0400)]
ceph-dev-pipeline: report the flavor-level pulp repo URL to shaman

The repo record's url pointed at the per-arch distribution
(.../flavors/default/x86_64/), but noarch/, x86_64/ and SRPMS/ are
sibling distributions under the flavor path, not subdirectories of each
other.  Consumers follow chacra's convention of a flavor-level URL:
ceph.git's Containerfile appends noarch/Packages/... to the shaman url
to fetch the ceph-release RPM, which 404'd against the arch-level URL
and failed the CI container build.

The per-arch repository API href in chacra_url (from pulp_repo_info) is
unchanged, so the x86_64 and arm64 cells still post distinct records.

Signed-off-by: David Galloway <david.galloway@ibm.com>
2 weeks agoremove the dead TEST='test' chacra ref logic
David Galloway [Thu, 9 Jul 2026 19:10:08 +0000 (15:10 -0400)]
remove the dead TEST='test' chacra ref logic

The TEST parameter was meant to push release packages to chacra under
the 'test' ref, but the logic has been dead for a while: neither
ceph-dev-pipeline.yml defines a TEST parameter nor does
ceph-release-pipeline forward one when triggering the build.  It was
also broken if ever enabled (env.SHA1[0..6] on the 4-character 'test'
string throws).  Remove the ref override from doUploadChacraStage and
the unused TEST parameter from ceph-release-pipeline.

Signed-off-by: David Galloway <david.galloway@ibm.com>
2 weeks agopulp_upload.sh: include the flavor in repository and distribution names
David Galloway [Thu, 9 Jul 2026 19:09:31 +0000 (15:09 -0400)]
pulp_upload.sh: include the flavor in repository and distribution names

Repository names were branch/os/version-scoped and distribution names
derived from them, so default and debug builds of the same branch/sha1
shared repositories and produced identically named distributions: the
stale-distribution delete would clobber one flavor's distribution with
the other's, and both flavors' packages mixed in one repository even
though their base_paths are flavor-specific.

Add FLAVOR to REPO_NAME, which flows into the per-arch repository names
and the dist-<repo>-<short_sha1> distribution names, and update the
existence check in the ceph-dev-pipeline Jenkinsfile to match.

Distributions created under the old naming may still own a base_path
(base_paths are unique in pulp), so also delete any differently named
distribution occupying the base_path before creating the new one.
Existing repositories with unflavored names are left in place and can
be cleaned up manually.

Signed-off-by: David Galloway <david.galloway@ibm.com>
2 weeks agoceph-release-pipeline: pass boolean parameters as booleans
David Galloway [Thu, 9 Jul 2026 16:28:45 +0000 (12:28 -0400)]
ceph-release-pipeline: pass boolean parameters as booleans

The ceph-dev-pipeline and second ceph-tag invocations passed env values
(strings) straight to booleanParam, unlike the first ceph-tag
invocation which converts with .toBoolean().  Downstream now compares
params.THROWAWAY == false strictly, so make sure the values arrive as
actual booleans.

Signed-off-by: David Galloway <david.galloway@ibm.com>
2 weeks agopulp_upload.sh: use the rpm arch for the repository handoff lookup
David Galloway [Thu, 9 Jul 2026 16:28:25 +0000 (12:28 -0400)]
pulp_upload.sh: use the rpm arch for the repository handoff lookup

The final `pulp repository show --name ${REPO_NAME}-${ARCH}` uses the
Jenkins matrix arch (arm64), but rpm repositories are created per rpm
arch (aarch64) by the upload loop.  For arm64 rpm builds the lookup
fails after all uploads succeeded and, under set -e, kills the script,
failing the stage.

Signed-off-by: David Galloway <david.galloway@ibm.com>
2 weeks agocve-pipeline: add FORCE parameter
David Galloway [Thu, 9 Jul 2026 16:28:09 +0000 (12:28 -0400)]
cve-pipeline: add FORCE parameter

cve-pipeline runs the ceph-dev-pipeline Jenkinsfile, which consults
FORCE to decide whether to rebuild and re-upload when artifacts already
exist in Chacra or Pulp.  Without the parameter, env.FORCE is unset and
a CVE rebuild of an already-uploaded sha1 always skips compilation with
no way to override short of THROWAWAY=true.

Also sync the THROWAWAY description with ceph-dev-pipeline's.

Signed-off-by: David Galloway <david.galloway@ibm.com>
2 weeks agoceph-dev-pipeline: key build_matrix by flavor and fix FLAVOR axis
David Galloway [Thu, 9 Jul 2026 16:26:26 +0000 (12:26 -0400)]
ceph-dev-pipeline: key build_matrix by flavor and fix FLAVOR axis

build_matrix was keyed by "${DIST}_${ARCH}" but the matrix has a
FLAVOR axis, so the default and debug cells of the same dist/arch
shared one key: when the artifact check found existing default
artifacts and set the key false, it cancelled the debug cell's build
too (and vice versa), even though the chacra endpoints and pulp
distributions are flavor-specific.  Include FLAVOR in the key
everywhere build_matrix is read or written.

Also declare the FLAVOR axis with `axis` instead of a nested `axes`
block, which is not valid declarative matrix syntax.

Signed-off-by: David Galloway <david.galloway@ibm.com>
2 weeks agoenhancement: split `Chacra` and `Pulp` upload into independent pipeline stages
Vaibhav Mahajan [Thu, 9 Jul 2026 19:07:32 +0000 (15:07 -0400)]
enhancement: split `Chacra` and `Pulp` upload into independent pipeline stages

Refactor the ceph-dev-pipeline build job so Chacra and Pulp uploads are
independently configurable and run as separate Jenkins stages.

Signed-off-by: Vaibhav Mahajan <vamahaja@redhat.com>
Signed-off-by: David Galloway <david.galloway@ibm.com>
2 weeks agoMerge pull request #2646 from ceph/cdp-trixie
Casey Bodley [Thu, 9 Jul 2026 15:50:19 +0000 (11:50 -0400)]
Merge pull request #2646 from ceph/cdp-trixie

ceph-dev-pipeline: Add trixie to build matrix

Reviewed-by: Casey Bodley <cbodley@redhat.com>
2 weeks agoceph-release-pipeline: use @Field for top-level variables 2650/head
David Galloway [Thu, 9 Jul 2026 14:43:12 +0000 (10:43 -0400)]
ceph-release-pipeline: use @Field for top-level variables

SCRIPT_SPLITTING_TRANSFORMATION (JENKINS-37984) is enabled on
jenkins.ceph.com to keep ceph-dev-pipeline under the JVM 64KB method
limit. That flag rejects Declarative pipelines with script-level local
variable declarations, so ceph-release-pipeline failed to compile:

  General error during semantic analysis: [JENKINS-37984]
  SCRIPT_SPLITTING_TRANSFORMATION is ... incompatible with local
  variable declarations inside a Jenkinsfile.

Annotate the cross-stage variables with @Field, same as was done for
ceph-dev-pipeline-trigger in c898b349. Audited all other Declarative
Jenkinsfiles in the repo; no other job has script-level variable
declarations.

Signed-off-by: David Galloway <david.galloway@ibm.com>
2 weeks agoREADME: Update "testing changes" section 2649/head
David Galloway [Thu, 9 Jul 2026 13:59:22 +0000 (09:59 -0400)]
README: Update "testing changes" section

Signed-off-by: David Galloway <david.galloway@ibm.com>
2 weeks agoMerge pull request #2645 from ceph/cve-pipeline2
David Galloway [Thu, 9 Jul 2026 13:35:24 +0000 (09:35 -0400)]
Merge pull request #2645 from ceph/cve-pipeline2

CVE pipeline

2 weeks agoMerge pull request #2648 from shraddhaag/enable-noble
Shraddha Agrawal [Thu, 9 Jul 2026 13:33:42 +0000 (19:03 +0530)]
Merge pull request #2648 from shraddhaag/enable-noble

introduce noble debug builds

2 weeks agointroduce noble debug builds 2648/head
Shraddha Agrawal [Mon, 22 Jun 2026 06:55:49 +0000 (12:25 +0530)]
introduce noble debug builds

This commit introduces debug builds for noble which can be used for
integration testing.
Signed-off-by: Shraddha Agrawal <shraddha.agrawal000@gmail.com>
3 weeks agoMerge pull request #2647 from knrt10/fix-ceph-perf-timeout
Kautilya Tripathi [Thu, 9 Jul 2026 03:10:00 +0000 (08:40 +0530)]
Merge pull request #2647 from knrt10/fix-ceph-perf-timeout

ceph-perf: bound CBT hangs and make comment triggers reliable

3 weeks agoceph-perf: bound CBT hangs and make comment triggers reliable 2647/head
Kautilya Tripathi [Thu, 9 Jul 2026 02:56:30 +0000 (08:26 +0530)]
ceph-perf: bound CBT hangs and make comment triggers reliable

radosbench prefill has wedged bath01 for days with no job timeout.
Cap each run-cbt.sh at 1h and the job at 8h, kill leftover Ceph
processes around CBT, and require an explicit "jenkins test
{osd-flavor} perf" comment so label-only auto-builds do not queue
forever on a stuck performance node.

Signed-off-by: Kautilya Tripathi <kautilya.tripathi@ibm.com>
3 weeks agoceph-dev-pipeline: Add trixie to build matrix 2646/head
Zack Cerza [Wed, 8 Jul 2026 20:58:57 +0000 (14:58 -0600)]
ceph-dev-pipeline: Add trixie to build matrix

Signed-off-by: Zack Cerza <zack@cerza.org>
3 weeks agoMerge pull request #2643 from ceph/64k
David Galloway [Wed, 8 Jul 2026 20:52:25 +0000 (16:52 -0400)]
Merge pull request #2643 from ceph/64k

jenkins: enable Declarative script splitting to fix "Method too large" pipeline failures

3 weeks agoceph-dev-pipeline: Pulp repo support in ceph-release RPM's ceph.repo 2645/head
David Galloway [Wed, 17 Jun 2026 13:12:13 +0000 (09:12 -0400)]
ceph-dev-pipeline: Pulp repo support in ceph-release RPM's ceph.repo

Signed-off-by: David Galloway <david.galloway@ibm.com>
3 weeks agoceph-dev-pipeline: Notify shaman of pulp repo URLs
David Galloway [Fri, 12 Jun 2026 18:20:23 +0000 (14:20 -0400)]
ceph-dev-pipeline: Notify shaman of pulp repo URLs

Mirror chacra's shaman repo records: 'url' points at the browsable
package repo (the Pulp content distribution for this arch) and
'chacra_url' points at the repository's API endpoint
(/pulp/api/v3/repositories/...).

pulp_upload.sh hands off the repository's API href and the package
manager version to the notify script via $WORKSPACE/pulp_repo_info.

Signed-off-by: David Galloway <david.galloway@ibm.com>
3 weeks agoceph-dev-pipeline: Add CHACRA_UPLOAD parameter
David Galloway [Thu, 2 Jul 2026 13:54:24 +0000 (09:54 -0400)]
ceph-dev-pipeline: Add CHACRA_UPLOAD parameter

This logic was chosen to preserve the logic the THROWAWAY parameter
provides regardless of package repository choice.

Signed-off-by: David Galloway <david.galloway@ibm.com>
3 weeks agocve-pipeline: Creation
David Galloway [Thu, 11 Jun 2026 20:27:10 +0000 (16:27 -0400)]
cve-pipeline: Creation

This enables us to build packages and containers from ceph-private.git privately.
This includes Jenkins build logs, artifacts, packages, and containers.

Packages will be pushed to the internal-only pulp instance and containers
to the internal-only quay instance.

To avoid job duplication, each job pulls in the respective Jenkinsfiles e.g.,
  - cve-pipeline -> ceph-dev-pipeline
  - cve-source-dist -> ceph-source-dist

The only difference is the parameters we pass to the job.  The key differences
there are CEPH_REPO points to ceph-private.git whereas ceph-dev-pipeline is
not capable of doing so.  We also tell the pipeline not to use a public
chacra instance.

Signed-off-by: David Galloway <david.galloway@ibm.com>
3 weeks agoceph-dev-pipeline-trigger: use @Field for top-level variable 2643/head
David Galloway [Tue, 7 Jul 2026 13:41:27 +0000 (09:41 -0400)]
ceph-dev-pipeline-trigger: use @Field for top-level variable

The Declarative script splitting transformation being enabled on the
controller rejects pipelines that declare top-level local variables.
Convert the params list to a @Field, renamed to build_params to avoid
clobbering Jenkins pipeline's 'params' predefined global variable.

Signed-off-by: David Galloway <david.galloway@ibm.com>
3 weeks agojenkins: enable Declarative script splitting to avoid 64KB method limit
David Galloway [Tue, 7 Jul 2026 13:41:17 +0000 (09:41 -0400)]
jenkins: enable Declarative script splitting to avoid 64KB method limit

The ceph-dev-pipeline matrix fails to compile with 'Method too large:
WorkflowScript.___cps___NNN' when new cells are added (e.g. noble debug
builds, #2622), because the Declarative RuntimeASTTransformer emits the
entire pipeline model as a single method. Extracting stage bodies into
helper functions (#2621) does not help since the per-cell model
boilerplate dominates.

Enable the script splitting transformation (JENKINS-37984), which
splits the generated model into multiple methods so no single one hits
the JVM's 64KB bytecode limit.

Signed-off-by: David Galloway <david.galloway@ibm.com>
3 weeks agoMerge pull request #2642 from ceph/wip-77920
David Galloway [Mon, 6 Jul 2026 15:06:02 +0000 (11:06 -0400)]
Merge pull request #2642 from ceph/wip-77920

bwc: pin podman auth to a persistent authfile

3 weeks agoMerge pull request #2618 from ceph/pulp-repos
David Galloway [Mon, 6 Jul 2026 14:21:39 +0000 (10:21 -0400)]
Merge pull request #2618 from ceph/pulp-repos

enhancement: create Pulp repositories with labels before upload

3 weeks agoenhancement: create Pulp repositories with labels before upload 2618/head
Vaibhav Mahajan [Thu, 18 Jun 2026 10:20:42 +0000 (15:50 +0530)]
enhancement: create Pulp repositories with labels before upload

Add repository creation to the Pulp upload flow so CI jobs ensure the
target repo exists and carries labels discovery metadata before packages
are uploaded.

- Add `create_pulp_repository()` to idempotently create `rpm`/`deb`
  repositories, apply metadata labels as JSON and honor `retain-repo-versions`.
- Extract `get_pulp_distribution_labels()` and reuse it for both
  repository and distribution label application.
- Refactor `publish_pulp_distribution()` to use the shared label helper.
- Require `BRANCH` from the environment instead of deriving it from
  `CEPH_VERSION` via `release_from_version()`

Signed-off-by: Vaibhav Mahajan <vamahaja@redhat.com>
3 weeks agobwc: pin podman auth to a persistent authfile 2642/head
David Galloway [Thu, 2 Jul 2026 22:21:21 +0000 (18:21 -0400)]
bwc: pin podman auth to a persistent authfile

podman login was writing credentials to the default location under
XDG_RUNTIME_DIR (/run/user/<uid>), which is logind-managed tmpfs. The
Jenkins agent runs without XDG_RUNTIME_DIR set, so the runtime dir can
be torn down or re-resolved between bwc_login and the podman build it
is meant to authenticate. When that happens, the base image pull inside
build-with-container.py silently falls back to anonymous and hits
Docker Hub's per-IP unauthenticated rate limit (toomanyrequests), e.g.:

  https://jenkins.ceph.com/job/ceph-pull-requests-arm64/99076/

Set REGISTRY_AUTH_FILE to a persistent path in $HOME and pass
--authfile to podman login so login and all subsequent podman/buildah
invocations in the job resolve the same credential file regardless of
session state.

Fixes: https://tracker.ceph.com/issues/77920
Signed-off-by: David Galloway <david.galloway@ibm.com>
3 weeks agoMerge pull request #2641 from ceph/revert-2622-wip-shraddhaag-add-debug-noble
David Galloway [Thu, 2 Jul 2026 14:14:42 +0000 (10:14 -0400)]
Merge pull request #2641 from ceph/revert-2622-wip-shraddhaag-add-debug-noble

Revert "introduce noble debug builds"

3 weeks agoRevert "introduce noble debug builds" 2641/head
Shraddha Agrawal [Thu, 2 Jul 2026 14:13:55 +0000 (19:43 +0530)]
Revert "introduce noble debug builds"

3 weeks agoMerge pull request #2622 from shraddhaag/wip-shraddhaag-add-debug-noble
David Galloway [Thu, 2 Jul 2026 13:11:39 +0000 (09:11 -0400)]
Merge pull request #2622 from shraddhaag/wip-shraddhaag-add-debug-noble

introduce noble debug builds

4 weeks agoMerge pull request #2640 from tchaikov/wip-ceph-win
Kefu Chai [Thu, 2 Jul 2026 06:23:20 +0000 (14:23 +0800)]
Merge pull request #2640 from tchaikov/wip-ceph-win

Revert "ceph-windows: actually disable the mgr for the vstart cluster"

Reviewed-by: Ville Ojamo <git2233+ceph@ojamo.eu>
4 weeks agoRevert "ceph-windows: actually disable the mgr for the vstart cluster" 2640/head
Kefu Chai [Thu, 2 Jul 2026 05:57:18 +0000 (13:57 +0800)]
Revert "ceph-windows: actually disable the mgr for the vstart cluster"

turns out vstart.sh depends on mgr, and windows test uses vstart.sh
to start a cluter for running tests.

This reverts commit ed61da39dff87518e2779727c62d509f4a7ebd2c.

4 weeks agointroduce noble debug builds wip-shraddhaag-add-debug-noble 2622/head
Shraddha Agrawal [Mon, 22 Jun 2026 06:55:49 +0000 (12:25 +0530)]
introduce noble debug builds

This commit introduces debug builds for noble which can be used for
integration testing.
Signed-off-by: Shraddha Agrawal <shraddha.agrawal000@gmail.com>
4 weeks agoMerge pull request #2621 from shraddhaag/refactor-matrix-stage-script
David Galloway [Wed, 1 Jul 2026 15:00:10 +0000 (11:00 -0400)]
Merge pull request #2621 from shraddhaag/refactor-matrix-stage-script

ceph-dev-pipeline: extract matrix stage script bodies into helper funcs

4 weeks agoMerge pull request #2630 from tchaikov/wip-windows-vstart-disable-mgr
David Galloway [Wed, 1 Jul 2026 14:17:17 +0000 (10:17 -0400)]
Merge pull request #2630 from tchaikov/wip-windows-vstart-disable-mgr

ceph-windows: actually disable the mgr for the vstart cluster

4 weeks agoceph-dev-pipeline: extract matrix stage script bodies into helper funcs 2621/head
Shraddha Agrawal [Mon, 22 Jun 2026 06:30:39 +0000 (12:00 +0530)]
ceph-dev-pipeline: extract matrix stage script bodies into helper funcs

Problem: We were hitting JVM's 64KB bytecode limit when adding new
distros to the matrix stage script.

Solution: Add helper functions for each stage in the matrix stage
script, such that the original block is significantly reduced, thus
ensuring we do not hit the JVM's 64KB limit again. This will also ensure
we can keep extending the matrix with more distros without worrying
about this issue.
Signed-off-by: Shraddha Agrawal <shraddha.agrawal000@gmail.com>
4 weeks agoMerge pull request #2638 from knrt10/fix-venv-ceph-perf
Kautilya Tripathi [Mon, 29 Jun 2026 14:56:42 +0000 (20:26 +0530)]
Merge pull request #2638 from knrt10/fix-venv-ceph-perf

ceph-perf: install mdutils and run CBT under gh-venv

4 weeks agoceph-perf: install mdutils and run CBT under gh-venv 2638/head
Kautilya Tripathi [Mon, 29 Jun 2026 11:39:45 +0000 (17:09 +0530)]
ceph-perf: install mdutils and run CBT under gh-venv

cbt imports mdutils but ceph/cbt master requirements.txt does not
list it. Install mdutils into gh-venv, put the venv on PATH for
run-cbt.sh, and invoke compare.py via python3 so its /usr/bin/python3
shebang is not used. Only skip CBT runs when the archive dir already
has results, and fail the step if the archive is empty after run-cbt.

Signed-off-by: Kautilya Tripathi <kautilya.tripathi@ibm.com>
4 weeks agoMerge pull request #2637 from knrt10/fix-arg-perf-test
Kautilya Tripathi [Mon, 29 Jun 2026 09:20:16 +0000 (14:50 +0530)]
Merge pull request #2637 from knrt10/fix-arg-perf-test

ceph-perf: default unset CEPH_PERF_EXTRA_CMAKE_ARGS for set -u

4 weeks agoceph-perf: default unset CEPH_PERF_EXTRA_CMAKE_ARGS for set -u 2637/head
Kautilya Tripathi [Mon, 29 Jun 2026 09:05:14 +0000 (14:35 +0530)]
ceph-perf: default unset CEPH_PERF_EXTRA_CMAKE_ARGS for set -u

run-cbt uses set -euxo pipefail, but the optional Jenkins parameter is not
always exported into the shell environment. Use ${CEPH_PERF_EXTRA_CMAKE_ARGS:-}
so PR-triggered builds do not fail before cmake.

Signed-off-by: Kautilya Tripathi <kautilya.tripathi@ibm.com>
4 weeks agoFixed issues in ppc-ut job. 2636/head
Anshuman [Mon, 29 Jun 2026 05:27:26 +0000 (10:57 +0530)]
Fixed issues in ppc-ut job.

Signed-off-by: Anshuman <anshuman@ibm.com>
4 weeks agoMerge pull request #2634 from knrt10/fix-shebang
Kautilya Tripathi [Mon, 29 Jun 2026 04:13:24 +0000 (09:43 +0530)]
Merge pull request #2634 from knrt10/fix-shebang

ceph-perf: run run-cbt under bash on Jenkins

4 weeks agoceph-perf: run run-cbt under bash on Jenkins 2634/head
Kautilya Tripathi [Mon, 29 Jun 2026 03:25:35 +0000 (08:55 +0530)]
ceph-perf: run run-cbt under bash on Jenkins

Jenkins invokes shell steps as /bin/sh -xe when there is no shebang.
On Noble that is dash, which rejects set -o pipefail. Add #!/bin/bash
so Jenkins runs the run-cbt builder with bash.

Signed-off-by: Kautilya Tripathi <kautilya.tripathi@ibm.com>
4 weeks agoMerge pull request #2623 from ceph/pulp-registry-upload
Zack Cerza [Fri, 26 Jun 2026 21:02:33 +0000 (15:02 -0600)]
Merge pull request #2623 from ceph/pulp-registry-upload

Add optional Pulp container registry upload to ceph-dev-pipeline.

4 weeks agoMerge pull request #2633 from ceph/wip-kernel-perl
Ilya Dryomov [Fri, 26 Jun 2026 19:16:44 +0000 (21:16 +0200)]
Merge pull request #2633 from ceph/wip-kernel-perl

kernel: install perl

Reviewed-by: Dan Mick <dan.mick@redhat.com>
4 weeks agokernel: install perl 2633/head
Ilya Dryomov [Fri, 26 Jun 2026 12:25:39 +0000 (14:25 +0200)]
kernel: install perl

perl has been required for building the Linux kernel for a long time
but it's not installed explicitly.

  error: Failed build dependencies:
   perl is needed by kernel-7.1.0_g0248d0a325dc-1.x86_64
  make[2]: *** [scripts/Makefile.package:75: binrpm-pkg] Error 11

Signed-off-by: Ilya Dryomov <idryomov@gmail.com>
4 weeks agoMerge pull request #2632 from knrt10/fix-pyjwt-version
Kautilya Tripathi [Thu, 25 Jun 2026 15:59:03 +0000 (21:29 +0530)]
Merge pull request #2632 from knrt10/fix-pyjwt-version

ceph-perf: fix github-check JWT iss with github3 from git

4 weeks agoceph-perf: pin pyjwt<2.11 for github-check 2632/head
Kautilya Tripathi [Thu, 25 Jun 2026 15:33:18 +0000 (21:03 +0530)]
ceph-perf: pin pyjwt<2.11 for github-check

github-check uses github3.py 4.0.1, which passes app_id as int to
jwt.encode(). PyJWT 2.11+ requires iss to be a string. Install
githubcheck first, then pin pyjwt<2.11.

Signed-off-by: Kautilya Tripathi <kautilya.tripathi@ibm.com>
4 weeks agoMerge pull request #2626 from knrt10/fix-app-ip-ceph-perf-pr
Kautilya Tripathi [Thu, 25 Jun 2026 13:52:20 +0000 (19:22 +0530)]
Merge pull request #2626 from knrt10/fix-app-ip-ceph-perf-pr

ceph-perf: pin pyjwt for github-check and detect clang-18

4 weeks agoAdd optional Pulp container registry upload to ceph-dev-pipeline. 2623/head
deepssin [Mon, 22 Jun 2026 10:24:31 +0000 (15:54 +0530)]
Add optional Pulp container registry upload to ceph-dev-pipeline.
Mirror dev container images from Quay to Pulp when PULP_REGISTRY_UPLOAD
is enabled

5 weeks agoceph-website-prs: use GH PR number instead of branch name 2631/head
Ville Ojamo [Thu, 25 Jun 2026 08:04:20 +0000 (15:04 +0700)]
ceph-website-prs: use GH PR number instead of branch name

This PR changes the identifier used for ceph.io sites built from PRs
from the branch name to the GitHub PR ID.
This identifier is used to create a directory in the file system and is
included in the URL to the built site as branchname.ceph.io.

This change fixes two problems:
1. Set of characters allowed for git branch names contains characters
   that are not allowed in directory names or DNS labels.
2. This job adds a comment in the GitHub PR after the build is
   successful. The comment contains URL to the built site. I did not see an
   obvious way to modify the branch name in the YAML definition and
   workarounds might be needed to get the URL to match what is being
   done in the build script.

PR #2579 fixed point 1 for dependabot PRs but missed all other invalid
characters such as the ampersand and missed point 2.

Sites built from PRs would be at prnumber.ceph.io if this is merged, for
example 1234.ceph.io. This assumes the DNS is configured with a
wildcard RR and the web server is configured to serve the content from
the directory indicated by the left-most DNS label of the request URL
without enforcing a specific syntax for the label.

Signed-off-by: Ville Ojamo <git2233+ceph@ojamo.eu>
5 weeks agoMerge pull request #2629 from ceph/c9-libvirt
adam kraitman [Thu, 25 Jun 2026 07:43:54 +0000 (10:43 +0300)]
Merge pull request #2629 from ceph/c9-libvirt

builder.yml: Get libvirt-devel from CRB

5 weeks agoceph-windows: actually disable the mgr for the vstart cluster 2630/head
Kefu Chai [Thu, 25 Jun 2026 01:41:15 +0000 (09:41 +0800)]
ceph-windows: actually disable the mgr for the vstart cluster

-WITH_MGR=OFF and -WITH_LTTNG=OFF were passed to do_cmake.sh with a single
dash, so cmake never set them.  The mgr has therefore been built and started
by every vstart run since this script was added in 2022, only to fail loading
rbd_support and telemetry because their python deps were never installed.

The librbd, rados and cephfs tests run against this cluster use the direct
library API and do not need the mgr, so disable it as originally intended.
Pass -DWITH_MGR=OFF (and -DWITH_LTTNG=OFF), and set CEPH_NUM_MGR=0 for
vstart.sh so it does not try to start a ceph-mgr that is no longer built.

python3-prettytable is kept: it is a client CLI dependency (ceph_daemon.py),
not a mgr one.

Signed-off-by: Kefu Chai <k.chai@proxmox.com>
5 weeks agobuilder.yml: Get libvirt-devel from CRB 2629/head
David Galloway [Wed, 24 Jun 2026 20:28:15 +0000 (16:28 -0400)]
builder.yml: Get libvirt-devel from CRB

Tested on CentOS 9 Stream and Rocky 10

Signed-off-by: David Galloway <david.galloway@ibm.com>