-
Notifications
You must be signed in to change notification settings - Fork 4
/
sidebars.js
151 lines (146 loc) · 4.22 KB
/
sidebars.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
/**
* Creating a sidebar enables you to:
- create an ordered group of docs
- render a sidebar for each doc of that group
- provide next/previous navigation
The sidebars can be generated from the filesystem, or explicitly defined here.
Create as many sidebars as you want.
*/
// @ts-check
/** @type {import('@docusaurus/plugin-content-docs').SidebarsConfig} */
const sidebars = {
docs: [
'intro',
{
type: 'category',
label: 'Tutorials',
items: [
{
type: 'category',
label: 'Basics: DO try this at home',
link: {
type: 'generated-index',
description: 'A basic tutorial. Use the core components to create a Liquid Metal platform and workload cluster on your local Linux machine.'
},
items: [
'tutorial-basics/overview',
'tutorial-basics/macos',
'tutorial-basics/network',
'tutorial-basics/containerd',
'tutorial-basics/flintlockd',
'tutorial-basics/capi',
'tutorial-basics/create',
'tutorial-basics/inspect',
'tutorial-basics/teardown',
'tutorial-basics/congratulations',
],
},
{
type: 'category',
label: 'Advanced: Equinix Platform',
link: {
type: 'generated-index',
description: 'A more advanced tutorial. Create a Liquid Metal platform on Equinix Metal.'
},
items: [
'tutorial-equinix/intro',
'tutorial-equinix/terraform',
'tutorial-equinix/inspect',
'tutorial-equinix/capi',
'tutorial-equinix/create',
'tutorial-equinix/teardown',
'tutorial-equinix/congratulations',
],
},
{
type: 'category',
label: 'Fun: Raspberry Pi Homelab',
link: {
type: 'generated-index',
description: 'A fun workshop. Create a Liquid Metal cluster on Raspberry Pi.'
},
items: [
'tutorial-rpi/intro',
'tutorial-rpi/shopping-list',
{
type: 'category',
label: 'Build guide',
items: [
'tutorial-rpi/build-guide/board-setup',
'tutorial-rpi/build-guide/host-bootstrapping',
'tutorial-rpi/build-guide/check-env',
'tutorial-rpi/build-guide/management-cluster',
'tutorial-rpi/build-guide/mvm-cluster',
],
},
{
type: 'category',
label: 'Troubleshooting',
items: [
'tutorial-rpi/troubleshooting/flintlock',
'tutorial-rpi/troubleshooting/microvm',
'tutorial-rpi/troubleshooting/capmvm',
],
},
],
},
],
},
'component-info/hardware',
'component-info/networking',
'component-info/flintlock',
'component-info/images',
'component-info/cluster-api',
'component-info/capmvm',
'component-info/authn',
{
type: 'category',
label: 'Architecture',
link: {
type: 'generated-index',
},
items: [
'architecture/high-level',
'architecture/microvm-networking',
],
},
{
type: 'category',
label: 'Troubleshooting',
link: {
type: 'generated-index',
},
items: [
'troubleshooting/flintlock',
'troubleshooting/containerd',
'troubleshooting/microvm',
'troubleshooting/capmvm',
],
},
],
community: [
'community/community',
'community/support',
'community/team',
{
type: 'category',
label: 'Guide for Contributors',
link: {
type: 'generated-index',
description: 'Your one-stop-shop for getting involved in Liquid Metal!',
},
items: [
'community/contributing/welcome',
'community/contributing/choices',
'community/contributing/contributing',
'community/contributing/support',
],
},
'community/requests',
'community/bugs',
'community/blog',
'community/contact',
'community/coc',
],
};
module.exports = sidebars;