- 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.
45 lines
1.3 KiB
JavaScript
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' },
|
|
},
|
|
],
|
|
}),
|
|
],
|
|
});
|