-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsidebars.js
116 lines (102 loc) · 4.18 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
/**
* 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 = {
// By default, Docusaurus generates a sidebar from the docs folder structure
// main: [{ type: "autogenerated", dirName: "." }],
// But you can create a sidebar manually
main: [
"introduction",
"glueops-captain-domain",
{
type: "category",
label: "Developers",
collapsible: true,
items: [
"deploy-applications/deploy-hello-world-to-glueops",
"deploy-applications/adding-configurations-and-secrets-to-the-hello-world-app-glueops-platform",
"deploy-applications/ingress/glueops-ingress-and-loadbalancer-customizations"
],
link: {
type: "generated-index",
title: "Deploy your Applications to GlueOps",
description: "You can deploy any application to GlueOps",
slug: "/deploy-applications",
},
},
{
type: "category",
label: "Platform Administrators",
collapsible: true,
items: [
{
type: "category",
label: "Pre-Deployment Setup",
collapsible: true,
items: [
"glueops-platform-administrator/predeployment/create-github-oauth-for-glueops",
"glueops-platform-administrator/predeployment/create-github-app-for-glueops",
{
type: "category",
label: "Cloud Setup",
collapsible: true,
items: [
"glueops-platform-administrator/predeployment/clouds/aws/cloud-setup-aws",
],
link: {
type: "generated-index",
title: "Setup and Configuration",
description: "You can only use one cloud for each cluster deployment. Please contact GlueOps team if you have any questions about which cloud to use.",
slug: "/administrator-configuration-cloud-setup",
},
}
],
link: {
type: "generated-index",
title: "Pre-Deployment Setup",
description: "Before deploying your cluster, you need to create your GitHub OAuth App and GitHub App. These apps will be used to deploy your cluster and will need to be provided to the GlueOps team before they can proceed.",
slug: "/predeployment",
},
},
{
type: "category",
label: "Setup and Configuration",
collapsible: true,
items: [
"glueops-platform-administrator/configuration/glueops-deployment-configuration",
"glueops-platform-administrator/configuration/export-logs",
{
type: "category",
label: "GitHub token setup",
collapsible: true,
items: [
"glueops-platform-administrator/configuration/creating-github-token",
"glueops-platform-administrator/configuration/adding-github-token-to-organization-secrets"
],
link: {
type: "generated-index",
title: "Creating a GitHub token using it.",
description: "To enable GitHub Actions to notify our platform of code changes, we need to configure a GitHub Token as an Organization secret. These guides will walk you through setting it up:",
slug: "/github-token-setup",
},
}
],
link: {
type: "generated-index",
title: "Setup and Configuration",
description: "Once your cluster is deployed by the GlueOps team you will need to configure your GitOps repository. We call this your deployment-configurations and you will be able to control all your application deployments from this repository.",
slug: "/administrator-configuration-deployment-configuration",
},
},
],
},
],
};
module.exports = sidebars;