This repository has been archived by the owner on Mar 2, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 25
/
sidebars.js
136 lines (136 loc) · 3.69 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
module.exports = {
docs: [
{
type: 'category',
label: '关于 Chaos Mesh',
items: ['overview', 'basic-features'],
},
{
type: 'category',
label: '开始使用',
collapsed: false,
items: [
{
type: 'category',
label: '安装部署',
collapsed: false,
items: ['quick-start', 'production-installation-using-helm', 'offline-installation'],
},
{
type: 'category',
label: '管理权限',
items: [`manage-roles`, `configure-enabled-namespace`],
},
{
type: 'category',
label: '运行单个混沌实验',
items: [
'define-chaos-experiment-scope',
'define-scheduling-rules',
'run-a-chaos-experiment',
'inspect-chaos-experiment',
],
},
{
type: 'category',
label: '编排多个混沌实验',
items: [
'create-chaos-mesh-workflow',
'run-chaos-experiments-in-serial-or-parallel',
'inspect-chaos-mesh-workflow',
],
},
],
},
{
type: 'category',
label: '混沌实验类型',
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: '物理机环境',
items: [
'chaosd-overview',
'simulate-process-chaos-in-physical-nodes',
'simulate-network-chaos-in-physical-nodes',
'simulate-heavy-stress-in-physical-nodes',
'simulate-host-console-in-physical-nodes',
'simulate-disk-pressure-in-physical-nodes',
'simulate-jvm-application-chaos-in-physical-nodes',
],
},
],
},
//{
// type: 'category',
// label: '使用案例',
// items: ['multi-data-center-scenario'],
// },
{
type: 'category',
label: '工具整合',
items: [
'integrate-chaos-mesh-into-github-actions',
// 'use-argo-to-orchestrate-chaos-experiments',
// 'use-grafana-to-inspect-chaos-experiments',
],
},
{
type: 'category',
label: '开发指南',
items: [
'developer-guide-overview',
'configure-development-environment',
'add-new-chaos-experiment-type',
'extend-chaos-daemon-interface',
// 'extend-chaosd',
// {
// type: 'category',
// label: '客户端',
// items: ['go-client', 'rust-client', 'java-client', 'python-client'],
// },
],
},
{
type: 'category',
label: '参考指南',
items: [
// 'architecture',
// 'chaos-engineering-principles',
'chaosctl-tool',
// 'glossary'
],
},
{
type: 'category',
label: '常见问题与故障',
items: [
// 'faqs',
// 'troubleshooting-guide',
'upgrade-to-2.0'
],
},
//{
// type: 'category',
// label: '版本发布历史',
// items: ['release-2.0.0', 'release-1.0.0', 'release-0.0.9', 'release-0.0.8'],
// },
],
}