forked from chaos-mesh/website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
sidebars.js
64 lines (64 loc) · 1.65 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
module.exports = {
docs: [
{
type: 'category',
label: 'Overview',
items: ['overview/what_is_chaos_mesh', 'overview/features', 'overview/architecture'],
},
{
type: 'category',
label: 'Concepts',
items: ['concepts/chaos_engineering', 'concepts/blast_radius'],
},
{
type: 'category',
label: 'Getting Started',
items: [
'get_started/get_started_on_kind',
'get_started/get_started_on_minikube',
],
},
{
type: 'category',
label: 'User Guides',
items: [
'user_guides/installation',
'user_guides/experiment_scope',
'user_guides/run_chaos_experiment',
],
},
{
type: 'category',
label: 'Chaos Experiments',
items: [
'chaos_experiments/podchaos_experiment',
'chaos_experiments/networkchaos_experiment',
'chaos_experiments/stresschaos_experiment',
'chaos_experiments/timechaos_experiment',
'chaos_experiments/iochaos_experiment',
'chaos_experiments/kernelchaos_experiment',
],
},
{
type: 'category',
label: 'Use Cases',
items: ['use_cases/multi_data_centers'],
},
{
type: 'category',
label: 'Development Guide',
items: [
'development_guides/development_overview',
'development_guides/set_up_the_development_environment',
'development_guides/develop_a_new_chaos',
'development_guides/add_facilities_to_chaos_daemon',
],
},
'faqs',
{
type: 'category',
label: 'Releases',
items: ['releases/v1.0.0', 'releases/v0.9.0', 'releases/v0.8.0'],
},
],
}