-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsidebar-guides.ts
39 lines (37 loc) · 1.04 KB
/
sidebar-guides.ts
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
import type {SidebarsConfig} from '@docusaurus/plugin-content-docs';
const sidebars: SidebarsConfig = {
guides: [
{
type: 'category',
label: 'Package Installation Guides',
link: {
type: 'generated-index',
title: 'Package Installation Guides',
description:
'⚠️ Learn how to install your favorite Kubernetes add-ons using the Glasskube package manager ⚠️',
slug: '/',
},
items: [
'cert-manager',
'ingress-nginx',
'rabbitmq',
'quickwit',
'kube-prom-stack',
'cloudnativepg'
],
},
{
type: 'category',
label: 'Contributor Guides',
link: {
type: 'generated-index',
title: 'Contributor Guides',
description:
'⚠️ Contributors are what make open source great, here is where we share some resources to support you. ⚠️',
slug: '/contributors',
},
items: ['git-guide', 'kubectl-guide', 'package-creation'],
},
],
};
export default sidebars;