From 15c5af14ea52d735c22d286952a08b79e452ba3a Mon Sep 17 00:00:00 2001 From: Claudio Date: Fri, 22 Aug 2025 00:26:18 +0200 Subject: [PATCH] Add comprehensive troubleshooting documentation for compute nodes - Create new troubleshooting guide covering common CRN issues - Add navigation links for troubleshooting sections - Include solutions for 404 errors, SQUASHFS corruption, missing metrics, IPv6 issues, and storage corruption --- docs/.vitepress/config.mts | 6 ++++-- .../management => compute}/troubleshooting/index.md | 0 2 files changed, 4 insertions(+), 2 deletions(-) rename docs/nodes/{resources/management => compute}/troubleshooting/index.md (100%) diff --git a/docs/.vitepress/config.mts b/docs/.vitepress/config.mts index 68b28e7..433f1af 100644 --- a/docs/.vitepress/config.mts +++ b/docs/.vitepress/config.mts @@ -108,7 +108,8 @@ export default defineConfig({ text: 'Core Channel Nodes', items: [ { text: 'Introduction', link: '/nodes/core/introduction/' }, - { text: 'Installation', link: '/nodes/core/installation/' } + { text: 'Installation', link: '/nodes/core/installation/' }, + { text: 'Troubleshooting', link: '/nodes/core/troubleshooting/' } ] }, { @@ -130,7 +131,8 @@ export default defineConfig({ { text: 'Enable Pay-as-you-go', link: '/nodes/compute/advanced/pay-as-you-go/' }, { text: 'Local Testing', link: '/nodes/compute/advanced/local-testing/' } ] - } + }, + { text: 'Troubleshooting', link: '/nodes/compute/troubleshooting/' } ] }, { diff --git a/docs/nodes/resources/management/troubleshooting/index.md b/docs/nodes/compute/troubleshooting/index.md similarity index 100% rename from docs/nodes/resources/management/troubleshooting/index.md rename to docs/nodes/compute/troubleshooting/index.md