This repository has been archived by the owner on Jan 28, 2022. It is now read-only.
forked from chaos-mesh/website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
sidebars.js
126 lines (126 loc) · 3.64 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
117
118
119
120
121
122
123
124
125
126
module.exports = {
docs: [
{
type: 'category',
label: 'About Chaos Mesh',
items: ['overview', 'basic-features'],
},
{
type: 'category',
label: 'Getting Started',
collapsed: false,
items: [
{
type: 'category',
label: 'Installation and Deployment',
collapsed: false,
items: ['quick-start', 'production-installation-using-helm', 'offline-installation'],
},
{
type: 'category',
label: 'Manage Roles',
items: ['manage-user-permissions', 'configure-protected-namespace'],
},
{
type: 'category',
label: 'Run a Single Chaos Experiment',
items: [
'define-chaos-experiment-scope',
'define-scheduling-rules',
'run-a-chaos-experiment',
'inspect-chaos-experiments',
'clean-up-chaos-experiments',
],
},
{
type: 'category',
label: ' Orchestrate Multiple Chaos Experiments',
items: ['create-chaos-mesh-workflow', 'run-chaos-experiments-in-serial-or-parallel', 'check-workflow-status'],
},
],
},
{
type: 'category',
label: 'Types of Chaos Experiments',
items: [
{
type: 'category',
label: 'Kubernetes',
items: [
'simulate-pod-chaos-on-kubernetes',
'simulate-network-chaos-on-kubernetes',
'simulate-heavy-stress-on-kubernetes',
'simulate-io-chaos-on-kubernetes',
'simulate-dns-chaos-on-kubernetes',
'simulate-time-chaos-on-kubernetes',
'simulate-jvm-application-chaos',
'simulate-kernel-chaos-on-kubernetes',
'simulate-aws-chaos',
'simulate-gcp-chaos',
'simulate-http-chaos-on-kubernetes',
],
},
{
type: 'category',
label: 'Physical Nodes',
items: [
'chaosd-overview',
'simulate-process-chaos-in-physical-nodes',
'simulate-network-chaos-in-physical-nodes',
'simulate-host-console-in-physical-nodes',
'simulate-heavy-stress-in-physical-nodes',
],
},
],
},
// {
// type: 'category',
// label: 'Use Cases',
// items: ['multi-data-center-scenario'],
// },
// {
// type: 'category',
// label: 'Tools Integration',
// items: [
// 'integrate-chaos-mesh-into-github-actions',
// 'use-argo-to-orchestrate-chaos-experiments',
// 'use-grafana-to-inspect-chaos-experiments',
// ],
// },
// {
// type: 'category',
// label: 'Development Guides',
// items: [
// 'developer-guide-overview',
// 'configure-development-environment',
// 'add-new-chaos-experiment-type',
// 'extend-chaos-daemon-interface',
// 'extend-chaosd',
// {
// type: 'category',
// label: 'Clients',
// items: ['go-client', 'rust-client', 'java-client', 'python-client'],
// },
// ],
// },
// {
// type: 'category',
// label: 'Reference Guides',
// items: ['architecture', 'chaos-engineering-principles', 'chaosctl-tool', 'glossary'],
// },
{
type: 'category',
label: 'FAQs and Troubleshooting',
items: [
// 'faqs',
// 'troubleshooting-guide',
'upgrade-to-2.0',
],
},
// {
// type: 'category',
// label: 'Release Notes',
// items: ['release-2.0.0', 'release-1.0.0', 'release-0.0.9', 'release-0.0.8'],
// },
],
}