-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsidebars.js
More file actions
145 lines (132 loc) · 5.7 KB
/
sidebars.js
File metadata and controls
145 lines (132 loc) · 5.7 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
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
/**
* 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-first-app",
"deploy-applications/manage-environment-secrets",
"deploy-applications/ingress/glueops-ingress-and-loadbalancer-customizations",
{
type: "category",
label: "Traefik Ingress",
collapsible: true,
items: [
"deploy-applications/traefik/traefik-overview",
"deploy-applications/traefik/traefik-standard-ingress",
"deploy-applications/traefik/traefik-basic-ingressroute",
"deploy-applications/traefik/traefik-path-routing",
"deploy-applications/traefik/traefik-multiple-ingressroutes",
"deploy-applications/traefik/traefik-middleware-headers",
"deploy-applications/traefik/traefik-middleware-ip-allowlist",
"deploy-applications/traefik/traefik-middleware-ratelimit",
"deploy-applications/traefik/traefik-middleware-basicauth",
"deploy-applications/traefik/traefik-canary-cookie",
"deploy-applications/traefik/traefik-sticky-ingressroute",
"deploy-applications/traefik/traefik-canary-sticky",
"deploy-applications/traefik/traefik-tls-redirect",
"deploy-applications/traefik/traefik-letsencrypt",
"deploy-applications/traefik/traefik-ingress-letsencrypt",
"deploy-applications/traefik/traefik-ingressroutetcp",
"deploy-applications/traefik/traefik-ingressroutetcp-postgres",
],
link: {
type: "generated-index",
title: "Traefik Ingress & Routing",
description: "Configure routing, middleware, TLS, and advanced traffic patterns using Traefik with the public-traefik IngressClass.",
slug: "/traefik-ingress",
},
},
],
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;