forked from DaoCloud/DaoCloud-docs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mkdocs.yml
521 lines (503 loc) · 24.7 KB
/
mkdocs.yml
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
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
# Project information
site_name: DaoCloud Enterprise
site_url: https://docs-alpha.daocloud.io/
site_author: DaoCloud
site_description: >-
DaoCloud Enterprise 5.0 下一代容器化平台集大成者,引领云原生浪潮,推动数字化转型。
# copyright
copyright: Copyright © 2016 - 2022 DaoCloud
# Repository
repo_name: DaoCloud/DaoCloud-docs
repo_url: https://github.com/DaoCloud/DaoCloud-docs
edit_uri: edit/main/docs/
# Configuration
theme:
name: material
custom_dir: "theme"
# custom_dir: !ENV [THEME_DIR, "material"]
# Don't include MkDocs' JavaScript
include_search_page: false
search_index_only: true
include_homepage_in_sidebar: false
# Static files
static_templates:
- 404.html
language: "zh"
features:
- content.code.annotate
- content.tooltips
# - navigation.indexes
- navigation.tabs
# - navigation.instant
# - navigation.prune
- navigation.sections
- navigation.tabs.sticky
- navigation.tracking
- navigation.top
- search.highlight
- search.suggest
- search.share
# - toc.follow
- toc.integrate
palette:
- scheme: default
primary: indigo
accent: indigo
toggle:
icon: material/brightness-7
name: Switch to dark mode
- scheme: slate
primary: indigo
accent: indigo
toggle:
icon: material/brightness-4
name: Switch to light mode
font:
text: Roboto
code: Roboto Mono
favicon: assets/favicon.png
logo: images/DaoCloud.svg
icon:
logo: logo
repo: fontawesome/brands/github
# Plugins
plugins:
- search:
separator: '[\\s\\u200b\\-]'
# - mermaid2
- minify:
minify_html: true
minify_js: true
minify_css: true
htmlmin_opts:
remove_comments: true
- git-revision-date #每页底部显示文档最后更新日期,安装 pip install mkdocs-git-revision-date-plugin
- git-revision-date-localized #每个页面底部添加本地化更新和创建日期,安装pip install mkdocs-git-revision-date-localized-plugin
# - type: datetime #日期格式,有效值为date、datetime、iso_date、iso_datetimetimeago
# - fallback_to_build_date: true #默认false,启用则回退到mkdocs build执行的时间
# - enable_creation_date: true #最后更新日期旁边显示与页面关联的文件的创建日期
# auto desgin nav in dirs
# - awesome-pages:
# filename: .pages.yml
# collapse_single_pages: true
# strict: false
- tags:
tags_file: stylesheets/tags.md
# Customization
extra:
homepage: /
# switch language
alternate:
- link: /
name: zh - 简体中文
lang: zh
- link: /en/
name: en - English
lang: en
generator: false
# Customization Javascript
extra_javascript:
- stylesheets/zoom_image.js
- https://cdn.jsdelivr.net/npm/mermaid/dist/mermaid.min.js
# Customization css
extra_css:
- stylesheets/custom.css
# Extensions
markdown_extensions:
- abbr
- admonition
- attr_list
- def_list
- footnotes
- meta
- md_in_html
- tables
- toc:
permalink: true
title: 导航
toc_depth: 5
- pymdownx.arithmatex:
generic: true
- pymdownx.betterem:
smart_enable: all
- pymdownx.caret
- pymdownx.details
- pymdownx.emoji:
emoji_index: !!python/name:materialx.emoji.twemoji
emoji_generator: !!python/name:materialx.emoji.to_svg
- pymdownx.highlight:
anchor_linenums: true
- pymdownx.inlinehilite
- pymdownx.keys
- pymdownx.magiclink:
repo_url_shorthand: true
user: daocloud
repo: daocloud-docs
- pymdownx.mark
- pymdownx.smartsymbols
- pymdownx.superfences:
custom_fences:
- name: mermaid
class: mermaid
format: !!python/name:pymdownx.superfences.fence_code_format
- pymdownx.tabbed:
alternate_style: true
- pymdownx.tasklist:
custom_checkbox: true
- pymdownx.tilde
# - pymdownx.critic
- pymdownx.snippets:
auto_append:
- includes/glossary.md
# Page tree
nav:
- 首页: index.md
- 帮助文档:
- DCE 产品介绍:
- 什么是 DCE5.0: zh/dce/what-is-dce.md
- 适用场景: zh/dce/scenario.md
- 平台功能: zh/dce/features.md
- 为什么选择 DCE: zh/dce/whyus.md
- 申请社区免费体验: zh/dce/license0.md
- 容器管理:
- 介绍:
- 什么是容器管理: zh/kpanda/03ProductBrief/WhatisKPanda.md
- 功能总览: zh/kpanda/03ProductBrief/Features.md
- 竞争优势: zh/kpanda/03ProductBrief/Benefits.md
- 适用场景: zh/kpanda/03ProductBrief/Scenarios.md
- 基本概念: zh/kpanda/03ProductBrief/Concepts.md
- 集群管理:
- 创建集群: zh/kpanda/07UserGuide/Clusters/CreateCluster.md
- 接入集群: zh/kpanda/07UserGuide/Clusters/JoinACluster.md
- 使用 kubectl 访问集群: zh/kpanda/07UserGuide/Clusters/clusterwithcert.md
- 集群角色: zh/kpanda/07UserGuide/Clusters/ClusterRole.md
- 集群状态: zh/kpanda/07UserGuide/Clusters/ClusterStatus.md
- 工作负载:
- 通过镜像创建无状态负载: zh/kpanda/07UserGuide/Workloads/CreateDeploymentByImage.md
- 通过镜像创建有状态负载: zh/kpanda/07UserGuide/Workloads/CreateStatefulSetByImage.md
- 通过镜像创建守护进程集: zh/kpanda/07UserGuide/Workloads/CreateDaemonSetByImage.md
- 通过镜像创建定时任务: zh/kpanda/07UserGuide/Workloads/CreateCronJobByImage.md
- 通过镜像创建任务: zh/kpanda/07UserGuide/Workloads/CreateJobByImage.md
- 参数配置说明:
- 工作负载状态: zh/kpanda/07UserGuide/Workloads/PodConfig/workload-status.md
- 任务的参数说明: zh/kpanda/07UserGuide/Workloads/PodConfig/JobParameters.md
- 生命周期: zh/kpanda/07UserGuide/Workloads/PodConfig/lifescycle.md
- 环境变量: zh/kpanda/07UserGuide/Workloads/PodConfig/EnvironmentVariables.md
- 健康检查: zh/kpanda/07UserGuide/Workloads/PodConfig/healthcheck.md
- 集群调度: zh/kpanda/07UserGuide/Workloads/PodConfig/SchedulingPolicy.md
- Helm 应用:
- Helm 概述: zh/kpanda/07UserGuide/helm/README.md
- 管理 Helm 应用: zh/kpanda/07UserGuide/helm/helm-app.md
- 管理 Helm 仓库: zh/kpanda/07UserGuide/helm/helm-repo.md
- 服务与路由:
- 创建服务: zh/kpanda/07UserGuide/ServicesandRoutes/CreatingServices.md
- 创建路由: zh/kpanda/07UserGuide/ServicesandRoutes/CreatingIngress.md
- 自定义资源:
- 创建自定义资源: zh/kpanda/07UserGuide/CustomResources/create.md
- 配置与密钥:
- 创建密钥: zh/kpanda/07UserGuide/ConfigMapsandSecrets/create-secret.md
- 使用密钥: zh/kpanda/07UserGuide/ConfigMapsandSecrets/use-secret.md
- 使用配置项: zh/kpanda/07UserGuide/ConfigMapsandSecrets/UsedConfigMap.md
- 创建命名空间: zh/kpanda/07UserGuide/Namespaces/createns.md
- 权限说明:
- 权限说明: zh/kpanda/07UserGuide/Permissions/PermissionBrief.md
- 集群和命名空间授权: zh/kpanda/07UserGuide/Permissions/Cluster-NSAuth.md
- 全局管理:
- 介绍:
- 什么是全局管理: zh/ghippo/01ProductBrief/WhatisGhippo.md
- 功能总览: zh/ghippo/01ProductBrief/Features.md
- 常见术语: zh/ghippo/01ProductBrief/glossary.md
- 登录: zh/ghippo/04UserGuide/00Login.md
- 用户与访问控制:
- 什么是用户与访问控制: zh/ghippo/04UserGuide/01UserandAccess/iam.md
- 用户: zh/ghippo/04UserGuide/01UserandAccess/User.md
- 用户组: zh/ghippo/04UserGuide/01UserandAccess/Group.md
- 角色和权限管理:
- zh/ghippo/04UserGuide/01UserandAccess/Role.md
- 全局管理角色: zh/ghippo/04UserGuide/01UserandAccess/global.md
- 资源管理(按角色): zh/ghippo/04UserGuide/01UserandAccess/resource02.md
- 身份提供商:
- zh/ghippo/04UserGuide/01UserandAccess/idprovider.md
- LDAP: zh/ghippo/04UserGuide/01UserandAccess/ldap.md
- OIDC: zh/ghippo/04UserGuide/01UserandAccess/oidc.md
- 工作空间与层级:
- zh/ghippo/04UserGuide/02Workspace/ws-folder.md
- 创建和删除工作空间: zh/ghippo/04UserGuide/02Workspace/Workspaces.md
- 工作空间最佳实践: zh/ghippo/04UserGuide/02Workspace/wsbp.md
- 资源绑定: zh/ghippo/04UserGuide/02Workspace/Resources.md
- 审计日志:
- 开启和关闭审计日志: zh/ghippo/04UserGuide/open-audit.md
- 下载和导出审计日志: zh/ghippo/04UserGuide/03AuditLog.md
- 平台设置:
- 密码重置: zh/ghippo/04UserGuide/password.md
- 邮箱服务器设置: zh/ghippo/04UserGuide/04PlatformSetting/MailServer.md
- 外观定制: zh/ghippo/04UserGuide/04PlatformSetting/Appearance.md
- 关于平台: zh/ghippo/04UserGuide/04PlatformSetting/about.md
- 个人中心:
- 安全设置: zh/ghippo/04UserGuide/06PersonalCenter/SecuritySetting.md
- 访问密钥: zh/ghippo/04UserGuide/06PersonalCenter/Password.md
- 语言设置: zh/ghippo/04UserGuide/06PersonalCenter/Language.md
- 可观测性:
- 介绍:
- 什么是可观测性: zh/insight/03ProductBrief/WhatisKInsight.md
- 产品优势: zh/insight/03ProductBrief/benefits.md
- 常见术语: zh/insight/03ProductBrief/glossary.md
- 概览: zh/insight/06UserGuide/overview.md
- 仪表盘: zh/insight/06UserGuide/02dashboard.md
- 场景监控:
- 集群监控: zh/insight/06UserGuide/03scenarioinsight/clusterinsight.md
- 节点监控: zh/insight/06UserGuide/03scenarioinsight/nodeinsight.md
- 容器监控: zh/insight/06UserGuide/03scenarioinsight/containerinsight.md
- 服务监控: zh/insight/06UserGuide/03scenarioinsight/serviceinsight.md
- 数据查询:
- 日志查询: zh/insight/06UserGuide/04dataquery/logquery.md
- 指标查询: zh/insight/06UserGuide/04dataquery/metricquery.md
- 链路查询: zh/insight/06UserGuide/04dataquery/tracequery.md
- 告警中心:
- 告警规则: zh/insight/06UserGuide/05alertcenter/alertrule.md
- 通知配置: zh/insight/06UserGuide/05alertcenter/message.md
- 消息模板: zh/insight/06UserGuide/05alertcenter/messagetemplate.md
- 数据采集:
- 采集管理: zh/insight/06UserGuide/07collectionmanag/collectionmanag.md
- 服务监控: zh/insight/06UserGuide/07collectionmanag/servicemonitor.md
- 开启采集日志: zh/insight/09FAQs/collectauditlog.md
- 系统配置:
- 系统配置: zh/insight/06UserGuide/08systemconfig/systemconfig.md
- 修改配置: zh/insight/06UserGuide/08systemconfig/modifyconfig.md
- 常见问题:
- zh/insight/09FAQs/README.md
- 收集采集日志: zh/insight/09FAQs/collectauditlog.md
- 应用工作台:
- 介绍:
- 什么是应用工作台?: zh/amamba/01ProductBrief/WhatisAmamba.md
- 功能总览: zh/amamba/01ProductBrief/Features.md
- 产品优势: zh/amamba/01ProductBrief/Benefits.md
- 适用场景: zh/amamba/01ProductBrief/Scenarios.md
- 基本概念: zh/amamba/01ProductBrief/Concepts.md
- 快速创建流水线: zh/amamba/02QuickStart/deploypipline.md
- 流水线:
- 自定义创建流水线: zh/amamba/03UserGuide/Pipeline/createpipelinebyself.md
- 使用 Jenkinsfile 创建单代码分支流水线: zh/amamba/03UserGuide/Pipeline/createpipelinebyjenkins.md
- 使用图形化编辑流水线: zh/amamba/03UserGuide/Pipeline/graphicaleditingpipeline.md
- 凭证管理: zh/amamba/03UserGuide/Pipeline/Credential.md
- 流水线配置参数:
- 流水线中的概念: zh/amamba/03UserGuide/Pipeline/PipelineConfig/PipelineConcept.md
- 图形化任务模板参数: zh/amamba/03UserGuide/Pipeline/PipelineConfig/PipelineStep.md
- 多云编排:
- 介绍:
- 什么是多云编排: zh/kairship/01product/whatiskair.md
- 功能总览: zh/kairship/01product/features.md
- 产品优势: zh/kairship/01product/benefits.md
- 适用场景: zh/kairship/01product/scenarios.md
- 基本概念: zh/kairship/01product/concepts.md
- 准备及安装:
- 普通安装: zh/kairship/02install/normal.md
- kubectl 安装: zh/kairship/02install/kubectl.md
- 镜像安装: zh/kairship/02install/image.md
- 多云实例管理:
- 添加实例: zh/kairship/03instance/add.md
- 切换实例: zh/kairship/03instance/change.md
- 删除实例: zh/kairship/03instance/delete.md
- 工作集群管理:
- 接入集群: zh/kairship/04cluster/join.md
- 移除集群: zh/kairship/04cluster/remove.md
- 多云工作负载:
- 镜像创建: zh/kairship/05workload/image.md
- YAML创建: zh/kairship/05workload/yaml.md
- 资管管理:
- 多云服务与路由: zh/kairship/06resource/ingress.md
- 多云命名空间: zh/kairship/06resource/namespace.md
- 多云存储声明: zh/kairship/06resource/storage.md
- 多云配置与密钥: zh/kairship/06resource/configmap.md
- 策略管理:
- 部署策略: zh/kairship/07policy/deploy.md
- 差异化策略: zh/kairship/07policy/different.md
- 微服务引擎:
- 介绍:
- 功能总览: zh/skoala/intro/features.md
- 使用场景: zh/skoala/intro/scenarios.md
- 产品优势: zh/skoala/intro/advantages.md
- 环境要求: zh/skoala/intro/components.md
- 微服务治理中心:
- 托管型注册中心:
- 管理注册中心实例: zh/skoala/registry/host/manage-registry.md
- 微服务命名空间: zh/skoala/registry/host/namespace.md
- 接入型注册中心:
- 管理注册中心实例: zh/skoala/registry/integrate/manage-registry.md
- 微服务网关:
- 网关管理:
- 管理网关实例: zh/skoala/ms-gateway/gateway/manage-gateway.md
- 查看网关详情: zh/skoala/ms-gateway/gateway/check-details.md
- 诊断网关: zh/skoala/ms-gateway/gateway/diagnose-gateway.md
- API:
- 管理 API: zh/skoala/ms-gateway/api/manage-api.md
- 配置 API 策略: zh/skoala/ms-gateway/api/api-policy.md
- 域名:
- 管理域名: zh/skoala/ms-gateway/domain/manage-domain.md
- 配置域名策略: zh/skoala/ms-gateway/domain/domain-policy.md
- 服务网格:
- 介绍:
- 什么是服务网格: zh/mspider/01Intro/What'smSpider.md
- 功能总览: zh/mspider/01Intro/Features.md
- 产品优势: zh/mspider/01Intro/Benefits.md
- 适用场景: zh/mspider/01Intro/Scenarios.md
- 常见术语: zh/mspider/01Intro/Glossary.md
- 创建/删除网格:
- 创建托管网格: zh/mspider/03UserGuide/servicemesh/createmanaged.md
- 创建专用网格: zh/mspider/03UserGuide/servicemesh/creatededicated.md
- 删除网格: zh/mspider/03UserGuide/servicemesh/delete.md
- 服务管理: zh/mspider/03UserGuide/01ServiceList/README.md
- 流量治理:
- 虚拟服务: zh/mspider/03UserGuide/02TrafficGovernance/VirtualService.md
- 目标规则: zh/mspider/03UserGuide/02TrafficGovernance/TargetRules.md
- 网关规则: zh/mspider/03UserGuide/02TrafficGovernance/GatewayRules.md
- 虚拟服务参数配置: zh/mspider/03UserGuide/02TrafficGovernance/vsparams.md
- 安全治理:
- 对等身份认证: zh/mspider/03UserGuide/05Security/peer.md
- 请求身份认证: zh/mspider/03UserGuide/05Security/request.md
- 授权策略: zh/mspider/03UserGuide/05Security/authorize.md
- 安全治理参数配置: zh/mspider/03UserGuide/05Security/params.md
- 边车管理:
- 命名空间边车管理: zh/mspider/03UserGuide/07SidecarManagement/NamespaceSidecar.md
- 工作负载边车管理: zh/mspider/03UserGuide/07SidecarManagement/WorkloadSidecar.md
- 全局边车管理: zh/mspider/03UserGuide/07SidecarManagement/GlobalSidecar.md
- 流量监控:
- 全局监控: zh/mspider/03UserGuide/06TrafficMonitor/global-monitor.md
- 服务监控: zh/mspider/03UserGuide/06TrafficMonitor/service-monitor.md
- 工作负载监控: zh/mspider/03UserGuide/06TrafficMonitor/workload-monitor.md
- 性能监控: zh/mspider/03UserGuide/06TrafficMonitor/perf-monitor.md
- 网格网关:
- 创建网格网关: zh/mspider/03UserGuide/09GatewayInstance/create.md
- 删除网格网关: zh/mspider/03UserGuide/09GatewayInstance/delete.md
- 集群纳管:
- 添加集群: zh/mspider/03UserGuide/08ClusterManagement/join-clus.md
- 移除集群: zh/mspider/03UserGuide/08ClusterManagement/remov-clus.md
- 网格配置:
- 网格命名空间: zh/mspider/03UserGuide/10MeshConfiguration/MeshNamespace.md
- 系统组件管理: zh/mspider/03UserGuide/10MeshConfiguration/SystemComponents.md
- Istio 资源管理: zh/mspider/03UserGuide/10MeshConfiguration/IstioResources.md
- 常见问题: zh/mspider/07faq.md
- 网络:
- 介绍:
- 云原生网络方案: zh/network/intro/what-is-net.md
- 背景: zh/network/intro/background.md
- 挑战: zh/network/intro/challenges.md
- 网络组件:
- 组件概述: zh/network/modules/modules.md
- Spiderpool:
- 介绍: zh/network/modules/spiderpool/what.md
- 安装: zh/network/modules/spiderpool/install.md
- 配置参考: zh/network/modules/spiderpool/config.md
- 常用命令: zh/network/modules/spiderpool/command.md
- Calico:
- 介绍: zh/network/modules/calico/what.md
- 安装: zh/network/modules/calico/install.md
- ippool: zh/network/modules/calico/ippool.md
- 监控指标: zh/network/modules/calico/metrics.md
- Calico 网络策略: zh/network/modules/calico/policy.md
- 故障排查: zh/network/modules/calico/debug.md
- Cilium:
- 介绍: zh/network/modules/cilium/what.md
- 安装: zh/network/modules/cilium/install.md
- 配置参考: zh/network/modules/cilium/config.md
- 常用命令: zh/network/modules/cilium/command.md
- 中间件:
- 中间件介绍: zh/middleware/midware.md
- RabbitMQ 消息队列:
- 什么是 RabbitMQ: zh/middleware/rabbitmq/intro/what.md
- 功能说明: zh/middleware/rabbitmq/intro/features.md
- 竞争优势: zh/middleware/rabbitmq/intro/benefits.md
- 适用场景: zh/middleware/rabbitmq/intro/scenarios.md
- 基本概念: zh/middleware/rabbitmq/intro/concepts.md
- 安装 RabbitMQ: zh/middleware/rabbitmq/quickstart/install.md
- 更新 RabbitMQ: zh/middleware/rabbitmq/userguide/update.md
- 删除 RabbitMQ: zh/middleware/rabbitmq/userguide/delete.md
- 查看消息队列: zh/middleware/rabbitmq/userguide/view.md
- 数据迁移: zh/middleware/rabbitmq/userguide/migrate.md
- 实例监控: zh/middleware/rabbitmq/userguide/insight.md
- Elasticsearch 搜索服务:
- 什么是 Elasticsearch: zh/middleware/elastic-search/intro/what.md
- 功能说明: zh/middleware/elastic-search/intro/features.md
- 竞争优势: zh/middleware/elastic-search/intro/benefits.md
- 适用场景: zh/middleware/elastic-search/intro/scenarios.md
- 基本概念: zh/middleware/elastic-search/intro/concepts.md
- 首次使用 Elasticsearch: zh/middleware/elastic-search/userguide/login.md
- 创建 Elasticsearch 实例: zh/middleware/elastic-search/userguide/create.md
- 更新 Elasticsearch 实例: zh/middleware/elastic-search/userguide/edit.md
- 删除 Elasticsearch 实例: zh/middleware/elastic-search/userguide/delete.md
- Elasticsearch 集群容量规划: zh/middleware/elastic-search/userguide/cluster-capacity-plan.md
- 查看列表: zh/middleware/elastic-search/userguide/view.md
- 概览: zh/middleware/elastic-search/userguide/basic.md
- 实例监控: zh/middleware/elastic-search/userguide/monitor.md
- MySQL 数据库:
- 什么是 MySQL: zh/middleware/mysql/intro/what.md
- 功能说明: zh/middleware/mysql/intro/features.md
- 竞争优势: zh/middleware/mysql/intro/benefits.md
- 基本概念: zh/middleware/mysql/intro/concepts.md
- 安装 MySQL: zh/middleware/mysql/quickstart/install.md
- 创建 MySQL: zh/middleware/mysql/userguide/create.md
- 更新 MySQL: zh/middleware/mysql/userguide/update.md
- 删除 MySQL: zh/middleware/mysql/userguide/delete.md
- HwameiStor:
- 介绍: zh/hwameistor/intro/what.md
- 模块:
- 本地磁盘管理器: zh/hwameistor/intro/ldm.md
- 本地存储: zh/hwameistor/intro/ls.md
- DRBD 安装器: zh/hwameistor/intro/drbd.md
- 调度器: zh/hwameistor/intro/scheduler.md
- 准入控制器: zh/hwameistor/intro/admission-controller.md
- 资源: zh/hwameistor/intro/resources.md
- 安装管理:
- 准备工作: zh/hwameistor/install/prereq.md
- 通过 Helm Chart 安装: zh/hwameistor/install/deploy.md
- 安装后检查: zh/hwameistor/install/post-check.md
- 升级: zh/hwameistor/install/upgrade.md
- 卸载: zh/hwameistor/install/uninstall.md
- 资源管理:
- 创建存储池: zh/hwameistor/resources/storagepool.md
- 数据卷扩容: zh/hwameistor/resources/expand.md
- 数据卷迁移: zh/hwameistor/resources/migrate.md
- 节点扩展: zh/hwameistor/resources/node-expansion.md
- 数据盘扩展: zh/hwameistor/resources/disk-expansion.md
- 应用场景:
- 部署有状态应用:
- 使用本地卷部署: zh/hwameistor/application/local.md
- 使用高可用卷部署: zh/hwameistor/application/ha.md
- TiDB: zh/hwameistor/application/tidb.md
- MinIO: zh/hwameistor/application/minio/minio.md
- 常见问题: zh/hwameistor/faqs.md
- 通用参考:
- 术语表: zh/reference/terms.md
- 基础知识:
- 云原生网关: zh/reference/basic-knowledge/gateway.md
- 微服务: zh/reference/basic-knowledge/microservice.md
- 注册中心: zh/reference/basic-knowledge/registry.md
- 虚拟服务: zh/reference/basic-knowledge/virtual-service.md
- 可观测性: zh/reference/basic-knowledge/insight.md
- 流量治理: zh/reference/basic-knowledge/traffic-control.md
- 视频教程:
- 容器管理: zh/videos/kpanda.md
- 全局管理: zh/videos/ghippo.md
- 可观测性: zh/videos/insight.md
- 应用工作台: zh/videos/amamba.md
- 服务网格: zh/videos/mspider.md
- 微服务引擎: zh/videos/skoala.md
- 中间件: zh/videos/mcamel.md
- 博客:
- DCE 开发背景: zh/blogs/blog00.md
- 5.0 容器管理能力介绍: zh/blogs/kpanda.md
- 5.0 资源管理能力介绍: zh/blogs/resource.md
- 5.0 应用工作台能力介绍: zh/blogs/amamba.md
- 5.0 多云编排能力介绍: zh/blogs/kairship.md
- 5.0 服务网格能力介绍: zh/blogs/mspider.md
- 开源社区:
- DaoCloud 开源生态: zh/community/index.md
- CloudTTY: zh/community/cloudtty.md
- Clusterpedia: zh/community/clusterpedia.md
- HwameiStor: zh/community/hwameistor.md
- KLTS: zh/community/klts.md
- Kubean: zh/community/kubean.md
- Merbridge: zh/community/merbridge.md
- Spiderpool: zh/community/spiderpool.md
- kwok: zh/community/kwok.md
- Ferry: zh/community/ferry.md