From 32c491639a664f1598f03d3e3ea1da43696c944d Mon Sep 17 00:00:00 2001 From: Jan Klare Date: Fri, 24 Jul 2026 10:25:39 +0000 Subject: [PATCH 1/2] docs: remove remaining orphaned placeholder pages Follow-up to the previous placeholder cleanup. These four pages are the last of the "TODO" stubs carried over from the subtree merges that were never referenced by the sidebar, any inbound link, or an autogenerated directory: - docs/07-standards/index.md - docs/01-getting-started/containerization.md - docs/01-getting-started/overview.md - docs/01-getting-started/virtualization.md Each contains only a heading and a "TODO" marker. The getting-started directory keeps preinstall-checklist.md, which holds real content and is wired into the sidebar in a separate change. No live link or sidebar entry referenced any of these files, so the build is unaffected. DocImpact Assisted-by: Claude:claude-opus-4-8 Signed-off-by: Jan Klare --- docs/01-getting-started/containerization.md | 7 ------- docs/01-getting-started/overview.md | 7 ------- docs/01-getting-started/virtualization.md | 7 ------- docs/07-standards/index.md | 3 --- 4 files changed, 24 deletions(-) delete mode 100644 docs/01-getting-started/containerization.md delete mode 100644 docs/01-getting-started/overview.md delete mode 100644 docs/01-getting-started/virtualization.md delete mode 100644 docs/07-standards/index.md diff --git a/docs/01-getting-started/containerization.md b/docs/01-getting-started/containerization.md deleted file mode 100644 index b6a1a6077f..0000000000 --- a/docs/01-getting-started/containerization.md +++ /dev/null @@ -1,7 +0,0 @@ ---- -sidebar: 3 ---- - -# Containerization - -TODO diff --git a/docs/01-getting-started/overview.md b/docs/01-getting-started/overview.md deleted file mode 100644 index 9c0c9dc1f5..0000000000 --- a/docs/01-getting-started/overview.md +++ /dev/null @@ -1,7 +0,0 @@ ---- -sidebar: 1 ---- - -# Overview - -TODO diff --git a/docs/01-getting-started/virtualization.md b/docs/01-getting-started/virtualization.md deleted file mode 100644 index 816199acad..0000000000 --- a/docs/01-getting-started/virtualization.md +++ /dev/null @@ -1,7 +0,0 @@ ---- -sidebar: 2 ---- - -# Virtualization - -TODO diff --git a/docs/07-standards/index.md b/docs/07-standards/index.md deleted file mode 100644 index ca288c71c7..0000000000 --- a/docs/07-standards/index.md +++ /dev/null @@ -1,3 +0,0 @@ -# Standards - -TODO From 39cac374e5c7e7af1ab0b09fc1b33a830b78fbff Mon Sep 17 00:00:00 2001 From: Jan Klare Date: Fri, 24 Jul 2026 10:27:33 +0000 Subject: [PATCH 2/2] docs: link the pre-install checklist and IaaS roles pages Two maintained documentation pages were unreachable: they carried real content but had no sidebar entry and no inbound links, an oversight from the subtree merges that assembled the consolidated sidebar. Wire them in rather than delete them: - docs/01-getting-started/preinstall-checklist.md is added as a top-level entry, directly after the landing page, since it is planning material meant to be read before any layer-specific docs. - docs/05-iam/iaas-roles.md is added under the Identity and Access Management category, alongside the federation setup page, as the reference for the IaaS-layer roles an SCS-compliant cloud offers. Both doc ids resolve after Docusaurus strips the numeric directory prefixes (01-getting-started, 05-iam). The sidebar module still parses cleanly. DocImpact Assisted-by: Claude:claude-opus-4-8 Signed-off-by: Jan Klare --- sidebarsDocs.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/sidebarsDocs.js b/sidebarsDocs.js index 49fcd1f53f..dc4de9e1af 100644 --- a/sidebarsDocs.js +++ b/sidebarsDocs.js @@ -4,6 +4,7 @@ const sidebarsDocs = { docs: [ 'index', + 'getting-started/preinstall-checklist', { type: 'category', label: 'IaaS Layer', @@ -333,6 +334,7 @@ const sidebarsDocs = { 'iam/SCS-example-setup-configuration-description' ] }, + 'iam/iaas-roles', 'iam/intra-SCS-federation-setup-description-for-osism-doc-operations' ] },