mvk/astro.config.mjs
jon brookes 467a11a2c1 Add Vagrant installation instructions and create guide for local Vagrant K3s cluster setup
- Updated dev-env.md with instructions for installing Vagrant and VirtualBox, including example commands for macOS and Ubuntu/Debian.
- Added new guide local-vagrant-cluster.md detailing the steps to create a local K3s cluster using Vagrant, including repository cloning, script usage, and cluster verification.
2025-08-16 17:16:40 +01:00

45 lines
1.3 KiB
JavaScript

// @ts-check
import { defineConfig } from 'astro/config';
import starlight from '@astrojs/starlight';
// https://astro.build/config
export default defineConfig({
integrations: [
starlight({
title: 'MinimalViableK8s',
social: [{ icon: 'github', label: 'GitHub', href: 'https://codeberg.org/headshed/infctl-cli' }],
sidebar: [
{
label: 'MVK',
items: [
// Each item here is one entry in the navigation menu.
{ label: 'Minimal Viable Kubernetes', slug: 'guides/mvk' },
],
},
{
label: 'infctl',
items: [
// Each item here is one entry in the navigation menu.
{ label: 'Introduction', slug: 'guides/intro' },
{ label: 'Quick Start Guide', slug: 'guides/quick-start' },
{ label: 'Configuration', slug: 'guides/configuration' },
],
},
{
label: 'Microlearning',
items: [
// Each item here is one entry in the navigation menu.
{ label: 'Local Dev Environment', slug: 'guides/dev-env' },
{ label: 'Create a Local K3d Instance', slug: 'guides/local-k3d' },
{ label: 'Initial Pipeline Run', slug: 'guides/infctl-first-run' },
{ label: 'Create a vagrant 3 node cluster', slug: 'guides/local-vagrant-cluster' },
],
},
{
label: 'Reference',
autogenerate: { directory: 'reference' },
},
],
}),
],
});