forked from rwalshe/docs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
sidebarsAstro.js
182 lines (181 loc) · 4.7 KB
/
sidebarsAstro.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
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
/**
* 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.
*/
module.exports = {
cloud: [
{
type: 'doc',
label: 'Overview',
id: 'overview'
},
{
type: 'category',
label: 'Get Started',
items: [
'install-cli',
'create-project',
],
},
{
type: 'category',
label: 'Develop',
items: [
'develop-project',
{
type: 'category',
label: 'Write DAGs',
items: [
'deferrable-operators',
'kubernetespodoperator',
],
},
'upgrade-runtime',
'airflow-api',
'test-and-troubleshoot-locally',
],
},
{
type: 'category',
label: 'Deploy',
items: [
'deploy-code',
'ci-cd',
],
},
{
type: 'category',
label: 'Manage Deployments',
items: [
'configure-deployment',
'api-keys',
'environment-variables',
'secrets-backend',
],
},
{
type: 'category',
label: 'Observability',
items: [
'deployment-metrics',
'data-lineage',
'scheduler-logs',
'airflow-alerts',
],
},
{
type: 'category',
label: 'Administration',
items: [
{
type: 'category',
label: 'Install Astro',
items: [
'install-aws',
'install-gcp',
],
},
'manage-workspaces',
'set-up-data-lineage',
{
type: 'category',
label: 'User Access',
items: [
'add-user',
'user-permissions',
'configure-idp',
],
},
{
type: 'category',
label: 'Manage Clusters',
items: [
'create-cluster',
'modify-cluster',
'connect-external-services',
],
},
],
},
{
type: 'category',
label: 'Release Notes',
items: [
'release-notes',
'cli-release-notes',
'runtime-release-notes',
],
},
{
type: 'category',
label: 'Reference',
items: [
{
type: 'category',
label: 'CLI Command Reference',
link: { type: 'doc', id: 'cli-reference' },
items: [
'cli-reference/astrocloud-auth-login',
'cli-reference/astrocloud-auth-logout',
'cli-reference/astrocloud-completion',
'cli-reference/astrocloud-deploy',
'cli-reference/astrocloud-deployment-create',
'cli-reference/astrocloud-deployment-delete',
'cli-reference/astrocloud-deployment-list',
'cli-reference/astrocloud-deployment-logs',
'cli-reference/astrocloud-deployment-update',
'cli-reference/astrocloud-deployment-variable-create',
'cli-reference/astrocloud-deployment-variable-list',
'cli-reference/astrocloud-deployment-variable-update',
'cli-reference/astrocloud-dev-init',
'cli-reference/astrocloud-dev-kill',
'cli-reference/astrocloud-dev-logs',
'cli-reference/astrocloud-dev-parse',
'cli-reference/astrocloud-dev-ps',
'cli-reference/astrocloud-dev-pytest',
'cli-reference/astrocloud-dev-run',
'cli-reference/astrocloud-dev-start',
'cli-reference/astrocloud-dev-stop',
'cli-reference/astrocloud-dev-restart',
'cli-reference/astrocloud-version',
'cli-reference/astrocloud-workspace-list',
'cli-reference/astrocloud-workspace-switch',],
},
'known-limitations',
'runtime-version-lifecycle-policy',
{
type: 'category',
label: 'Cloud Configuration Reference',
items: [
'resource-reference-aws',
'resource-reference-gcp',
],
},
'platform-variables',
'data-plane-activation',
{
type: 'category',
label: 'Data Lineage',
items: [
'data-lineage-support-and-compatibility',
'data-lineage-concepts',],
},
{
type: 'category',
label: 'Security',
link: { type: 'doc', id: 'security' },
items: [
'shared-responsibility-model',
'resilience',
'disaster-recovery',
'data-protection',
'secrets-management',],
},
],
},
],
};