-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsidebars.js
More file actions
60 lines (59 loc) · 1.38 KB
/
sidebars.js
File metadata and controls
60 lines (59 loc) · 1.38 KB
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
/** @type {import('@docusaurus/plugin-content-docs').SidebarsConfig} */
const sidebars = {
docsSidebar: [
{
type: 'category',
label: 'Getting Started',
collapsed: false,
items: [
'getting-started/introduction',
'getting-started/installation',
'getting-started/quickstart',
],
},
{
type: 'category',
label: 'Core Concepts',
items: [
'core-concepts/architecture',
'core-concepts/availability-classes',
'core-concepts/enforcement-modes',
'core-concepts/maintenance-windows',
'core-concepts/workload-functions',
],
},
{
type: 'category',
label: 'Guides',
items: [
'guides/annotations',
'guides/custom-pdb-config',
'guides/policy-examples',
'guides/helm-values',
'guides/monitoring',
'guides/grafana-dashboards',
'guides/claude-code-skill',
],
},
{
type: 'category',
label: 'Reference',
items: [
'reference/api-reference',
'reference/metrics-reference',
'reference/troubleshooting',
],
},
{
type: 'category',
label: 'Community',
items: [
'community/contributing',
'community/governance',
'community/security',
'community/code-of-conduct',
],
},
],
};
export default sidebars;