From 41ae0b162e3f643b6d07f5769242c5b7c279434f Mon Sep 17 00:00:00 2001 From: Joyce Fee Date: Wed, 24 Jun 2026 18:22:50 -0400 Subject: [PATCH 1/2] fix(v/25.2): align playbook with streaming component name (finish #1703 rename) PR #1703 renamed the docs component from ROOT to streaming in antora.yml on v/25.2, but local-antora-playbook.yml kept referencing ROOT. The `start_page: 25.2@ROOT:...` points at a component that no longer exists, which fails the Netlify deploy preview for every v/25.2 PR since 2026-05-26 (later PRs merged anyway because the preview isn't a required check). Update the three docs-component references ROOT -> streaming: - site.start_page - archive-attachments source component - replace-attributes-in-attachments components list The 'redpanda-labs' entry is left unchanged (separate labs-component axis, verify separately). Co-Authored-By: Claude Opus 4.8 (1M context) --- local-antora-playbook.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/local-antora-playbook.yml b/local-antora-playbook.yml index baef38d5e2..75117c6804 100644 --- a/local-antora-playbook.yml +++ b/local-antora-playbook.yml @@ -1,6 +1,6 @@ site: title: Redpanda Docs - start_page: 25.2@ROOT:get-started:intro-to-events.adoc + start_page: 25.2@streaming:get-started:intro-to-events.adoc url: http://localhost:5002 robots: disallow keys: @@ -59,7 +59,7 @@ antora: - require: '@redpanda-data/docs-extensions-and-macros/extensions/archive-attachments' data: archives: - - component: 'ROOT' + - component: 'streaming' output_archive: 'redpanda-quickstart.tar.gz' file_patterns: - '**/test-resources/**/docker-compose/**' @@ -67,7 +67,7 @@ antora: data: replacements: - components: - - 'ROOT' + - 'streaming' - 'redpanda-labs' file_patterns: - '**/docker-compose.yaml' From 305c7673b65b70b211a57b71ddc49a73b4d2988a Mon Sep 17 00:00:00 2001 From: Joyce Fee Date: Wed, 24 Jun 2026 18:29:42 -0400 Subject: [PATCH 2/2] fix(v/25.2): align labs component name redpanda-labs -> labs Second half-applied rename on the same branch. The redpanda-labs repo publishes its component as `name: labs` (docs/antora.yml), and main's playbook already uses `labs`. v/25.2 still referenced the old `redpanda-labs` component name in two labs-extension configs: - generate-index-data docker_labs.component - replace-attributes-in-attachments components list These are non-fatal (the configs just match no component, so the docker-labs index attribute and labs attachment replacements silently no-op on v/25.2), but they're a real correctness gap. Align both to `labs`. The content-source repo URL (github.com/redpanda-data/redpanda-labs) is unchanged - that's the repo name, not the component name. Co-Authored-By: Claude Opus 4.8 (1M context) --- local-antora-playbook.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/local-antora-playbook.yml b/local-antora-playbook.yml index 75117c6804..23cc0722f8 100644 --- a/local-antora-playbook.yml +++ b/local-antora-playbook.yml @@ -51,7 +51,7 @@ antora: data: sets: docker_labs: - component: redpanda-labs + component: labs family: page filter: docker-compose env_type: Docker @@ -68,7 +68,7 @@ antora: replacements: - components: - 'streaming' - - 'redpanda-labs' + - 'labs' file_patterns: - '**/docker-compose.yaml' - '**/docker-compose.yml'