-
Notifications
You must be signed in to change notification settings - Fork 1
/
sidebars.js
139 lines (138 loc) · 3.87 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
127
128
129
130
131
132
133
134
135
136
137
138
139
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',
'persistence-dashboard',
'uninstallation',
],
},
'manage-user-permissions',
'configure-enabled-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',
'send-http-request-on-workflow',
'check-workflow-status',
'status-check-in-workflow',
],
},
],
},
{
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-azure-chaos',
'simulate-gcp-chaos',
'simulate-http-chaos-on-kubernetes',
'simulate-block-chaos-on-kubernetes',
],
},
{
type: 'category',
label: 'Physical Nodes',
items: [
'chaosd-overview',
'simulate-physical-machine-chaos',
'simulate-process-chaos-in-physical-nodes',
'simulate-network-chaos-in-physical-nodes',
'simulate-host-console-in-physical-nodes',
'simulate-heavy-stress-in-physical-nodes',
'simulate-disk-pressure-in-physical-nodes',
'simulate-jvm-application-chaos-in-physical-nodes',
'simulate-time-chaos-on-physical-nodes',
'simulate-file-chaos-in-physical-nodes',
'simulate-redis-chaos-on-physical-nodes',
'chaosd-search-recover',
],
},
],
},
{
type: 'category',
label: 'Authentication',
items: ['gcp-authentication'],
},
{
type: 'category',
label: 'Tools Integration',
items: [
'integrate-chaos-mesh-into-github-actions',
// 'use-argo-to-orchestrate-chaos-experiments',
'use-grafana-data-source',
'chaosctl-tool',
],
},
{
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: 'FAQs and Troubleshooting',
items: ['faqs', 'upgrade-to-2.0', 'upgrade-from-2.1-to-2.2'],
},
{
type: 'category',
label: 'Release',
items: [
'release-cycle',
{
type: 'category',
label: 'Release Tracking',
items: ['release-2.4-tracking'],
},
],
},
],
}