-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnavigation.yml
More file actions
1580 lines (1544 loc) · 44.4 KB
/
Copy pathnavigation.yml
File metadata and controls
1580 lines (1544 loc) · 44.4 KB
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
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
index:
title: 帮助中心主页
sitemap:
- compendium: 入门指南
path: start/
icon: images/book-icons/quick-started.svg
isHide: false
categories:
- title: 认识 CODING DevOps
num: 0
links:
- title: 产品简介
path: start/new.html
num: 0
- title: 使用流程
path: start/process.html
num: 1
- title: 团队、项目与项目集的关系
path: start/relation.html
num: 2
- title: 权限管理
path: start/permission.html
num: 3
- title: 注册与邀请
path: start/register-invite.html
num: 1
- title: 新建项目
path: start/project.html
num: 2
- title: 开始项目协同
path: start/project-plan.html
num: 3
- title: 使用代码仓库
path: start/repository.html
num: 4
- title: 启动代码扫描
path: start/scan.html
num: 5
- title: 编译构建
path: start/ci.html
num: 6
- title: 管理制品
path: start/artifact.html
num: 7
- title: 实施持续部署
path: start/cd.html
num: 8
- title: 管理测试用例
path: start/test-management.html
num: 9
- title: 管理项目文档
path: start/wiki.html
num: 10
- title: 安全等级说明
path: start/security.html
num: 11
- title: 常见问题
path: start/faq.html
num: 12
# - title: 最佳实践
# num: 13
# links:
# - title: DevOps 视角的前后端分离
# path: start/best-practice/front-back.html
# num: 0
# - title: DevOps - 从渐进式交付说起(含实践 Demo)
# path: start/best-practice/pro-delivery.html
# num: 1
# - title: DevOps 的分与合
# path: start/best-practice/devops-inside.html
# num: 2
# - title: Serverless 驱动的 DevOps 新形态
# path: start/best-practice/opsless.html
# num: 3
# - title: CODING 微服务架构演进之路
# path: start/best-practice/microservice.html
# num: 4
# last: true
- compendium: 项目协同
path: collaboration/
icon: images/book-icons/agile.svg
isHide: false
categories:
- title: 产品简介
path: collaboration/intro.html
num: 0
- title: 选择合适的协作模式
path: collaboration/pattern-choice.html
num: 1
- title: Scrum 敏捷项目管理
num: 2
links:
- title: 模式介绍
path: collaboration/pattern/scrum/intro.html
num: 0
- title: 管理 Backlog
path: collaboration/pattern/scrum/backlog.html
num: 1
- title: 管理迭代
path: collaboration/pattern/scrum/iterations.html
num: 2
- title: 管理史诗
path: collaboration/pattern/scrum/epics.html
num: 3
- title: 管理需求
path: collaboration/pattern/scrum/requirements.html
num: 4
- title: 管理任务
path: collaboration/pattern/scrum/tasks.html
num: 5
- title: 管理缺陷
path: collaboration/pattern/scrum/bugs.html
num: 6
- title: 故事点
path: collaboration/pattern/scrum/story-points.html
num: 7
- title: 迭代统计
path: collaboration/pattern/scrum/statistics.html
num: 8
- title: 总结复盘
path: collaboration/pattern/scrum/review.html
num: 9
- title: 经典项目管理
num: 3
links:
- title: 模式介绍
path: collaboration/pattern/classic/intro.html
num: 0
- title: 管理需求
path: collaboration/pattern/classic/requirements.html
num: 1
- title: 计划
path: collaboration/pattern/classic/plan.html
num: 2
- title: 管理迭代
path: collaboration/pattern/classic/iterations.html
num: 3
- title: 管理任务
path: collaboration/pattern/classic/tasks.html
num: 4
- title: 管理缺陷
path: collaboration/pattern/classic/bugs.html
num: 5
- title: 阻塞关系
path: collaboration/pattern/classic/blocking.html
num: 6
- title: 工时统计
path: collaboration/pattern/classic/working-hours.html
num: 7
- title: 跟踪进度
path: collaboration/pattern/classic/track.html
num: 8
- title: 事项管理
num: 4
links:
- title: 导入&导出事项
path: collaboration/customize/import-export.html
num: 0
- title: 自定义事项类型
path: collaboration/customize/type.html
num: 1
- title: 自定义事项属性
path: collaboration/customize/attributes.html
num: 2
- title: 自定义工作流
path: collaboration/customize/workflow.html
num: 3
- title: 自定义模板
path: collaboration/customize/template.html
num: 4
- title: 筛选事项
path: collaboration/customize/filter.html
num: 5
- title: 引用资源&上传附件
path: collaboration/customize/references.html
num: 6
- title: 管理版本
path: collaboration/customize/version-control.html
num: 7
- title: 管理标签
path: collaboration/customize/label.html
num: 8
- title: 管理事项视图
path: collaboration/customize/view.html
num: 9
- title: 快速发起腾讯会议
path: collaboration/customize/meeting.html
num: 10
- title: 最佳实践
num: 5
links:
- title: 如何使用 CODING 进行项目规划
path: collaboration/best-practice/product-manager.html
num: 0
- title: 如何使用 CODING 进行敏捷开发
path: collaboration/best-practice/scrum.html
num: 1
- title: 如何使用 CODING 进行瀑布流式研发
path: collaboration/best-practice/waterfall.html
num: 2
- title: 常见问题
path: collaboration/faq.html
num: 6
bold: 1
- title: 词汇表
path: collaboration/glossary.html
num: 7
bold: 1
- compendium: 代码仓库
path: repo/
icon: images/book-icons/git.svg
isHide: false
categories:
- title: 产品简介
path: repo/intro.html
num: 0
- title: 快速开始
path: repo/start.html
num: 1
- title: 代码仓库管理
num: 2
links:
- title: 创建仓库
path: repo/manage/create.html
num: 0
- title: 导入或关联外部仓库
path: repo/manage/sync-relate.html
num: 1
- title: 查看仓库详情
path: repo/manage/view.html
num: 2
- title: 设置仓库基本信息
path: repo/manage/basic.html
num: 3
- title: 归档仓库
path: repo/manage/archive.html
num: 4
- title: 删除/重置仓库
path: repo/manage/delete.html
num: 5
- title: 恢复已删除仓库
path: repo/manage/restore.html
num: 6
- title: 管理代码仓库卡片
path: repo/manage/card.html
num: 7
- title: 通过本地命令行管理仓库
path: repo/manage/cli.html
num: 8
- title: SVN 仓库使用
num: 3
links:
- title: 创建 SVN 仓库
path: repo/svn/create.html
num: 0
- title: 访问 SVN 仓库
path: repo/svn/access.html
num: 1
- title: 管理 SVN 目录权限
path: repo/svn/permission.html
num: 2
- title: SSH 协议使用
num: 4
links:
- title: 配置 SSH 公钥
path: repo/ssh/config.html
num: 0
- title: 密钥指纹鉴权
path: repo/ssh/fingerprint.html
num: 1
- title: 通过 SSH 协议推拉代码
path: repo/ssh/pull-push.html
num: 2
- title: 分支管理
num: 5
links:
- title: 创建分支
path: repo/branch/create.html
num: 0
- title: 设置默认分支
path: repo/branch/default.html
num: 1
- title: 设置保护分支
path: repo/branch/protected.html
num: 2
- title: 设置隐藏分支
path: repo/branch/hidden.html
num: 3
- title: 使用代码所有者机制
path: repo/branch/codeowner.html
num: 4
- title: 合并请求与代码评审
num: 6
links:
- title: 调整合并请求设置
path: repo/mr-review/mr-set.html
num: 0
- title: 合并分支
path: repo/mr-review/mr.html
num: 1
- title: 评审合并请求
path: repo/mr-review/review.html
num: 2
- title: 版本与标签
num: 7
links:
- title: 管理版本发布
path: repo/version/release.html
num: 0
- title: 管理版本标签
path: repo/version/tag.html
num: 1
- title: 代码仓库安全
num: 8
links:
- title: 检查仓库安全风险
path: repo/security/security.html
num: 0
- title: 设置仓库访问方式
path: repo/security/access.html
num: 1
- title: 使用 GPG 签名 commit 记录
path: repo/security/gpg-sign.html
num: 2
- title: 开启提交者及提交注释验证
path: repo/security/push.html
num: 3
- title: 锁定文件/文件夹
path: repo/security/lock.html
num: 4
- title: Git 通识
num: 9
links:
- title: 基础概念
path: repo/git/basic.html
num: 0
- title: 常用命令
path: repo/git/commands.html
num: 1
- title: LFS 使用
path: repo/git/lfs.html
num: 2
- title: Go get 支持
path: repo/git/go-get.html
num: 3
- title: 最佳实践
num: 10
links:
- title: 在代码仓库中使用代码扫描
path: repo/best-practice/new.html
num: 1
- title: 提交合并请求时触发代码扫描
path: repo/best-practice/mr.html
num: 2
- title: 如何提高代码质量
path: repo/best-practice/policy.html
num: 3
- title: 常见问题
path: repo/faq.html
num: 11
- title: 词汇表
path: repo/glossary.html
num: 12
bold: 1
- compendium: 代码扫描
path: code-scan/
icon: images/book-icons/code-scan.svg
isHide: false
categories:
- title: 产品简介
path: code-scan/intro.html
num: 0
- title: 快速开始
path: code-scan/start.html
num: 1
- title: 扫描任务
path: code-scan/task.html
num: 2
- title: 扫描方案
num: 3
links:
- title: 产品简介
path: code-scan/plan/intro.html
num: 0
- title: Xcheck 工具
path: code-scan/plan/xcheck.html
num: 1
- title: 集成外部扫描工具
path: code-scan/plan/tools.html
num: 2
- title: 方案模板
path: code-scan/plan/template.html
num: 3
- title: 自动匹配语言
path: code-scan/plan/auto-match.html
num: 4
- title: 常见问题
path: code-scan/faq.html
num: 4
- title: 词汇表
path: code-scan/glossary.html
num: 5
bold: 1
- compendium: 测试管理
path: test-management/
icon: images/book-icons/testing.svg
isHide: false
categories:
- title: 快速开始
path: test-management/start.html
num: 0
- title: 测试用例
num: 1
links:
- title: 创建用例
path: test-management/cases/create.html
num: 0
- title: 关联需求
path: test-management/cases/requirements.html
num: 1
- title: 用例评审
path: test-management/cases/review.html
num: 2
- title: 测试计划
num: 2
links:
- title: 创建测试计划
path: test-management/plans/create.html
num: 0
- title: 执行测试计划
path: test-management/plans/execute.html
num: 1
- title: 管理测试计划
path: test-management/plans/manage.html
num: 2
- title: 自动化用例库
path: test-management/automatic.html
num: 3
- title: 分析测试报告
path: test-management/report.html
num: 4
- title: 测试活动概览
path: test-management/overview.html
num: 5
- title: 最佳实践
path: test-management/best-practice.html
num: 6
- title: 词汇表
path: test-management/glossary.html
num: 7
bold: 1
- compendium: 持续集成
path: ci/
icon: images/book-icons/ci.svg
isHide: false
categories:
- title: 产品简介
path: ci/intro.html
num: 0
- title: 快速开始
path: ci/start.html
num: 1
- title: 编写构建流程
num: 2
links:
- title: 文本编辑器
path: ci/process/text.html
num: 0
- title: 流程配置详情
path: ci/process/detail.html
num: 1
- title: 图形化编辑器
path: ci/process/visual-editor.html
num: 2
- title: 配置构建计划
num: 3
links:
- title: 触发规则
path: ci/configuration/trigger.html
num: 0
- title: 环境变量
path: ci/configuration/env.html
num: 1
- title: 构建快照
path: ci/configuration/snapshot.html
num: 2
- title: 缓存目录
path: ci/configuration/cache.html
num: 3
- title: 构建环境依赖包
num: 4
links:
- title: Go
path: ci/depend/go.html
num: 0
- title: Maven
path: ci/depend/maven.html
num: 1
- title: PHP
path: ci/depend/php.html
num: 2
- title: 构建制品
num: 5
links:
- title: Composer
path: ci/artifacts/composer.html
num: 0
- title: Docker
path: ci/artifacts/docker.html
num: 1
- title: Generic
path: ci/artifacts/generic.html
num: 2
- title: Maven
path: ci/artifacts/maven.html
num: 3
- title: Npm
path: ci/artifacts/npm.html
num: 4
- title: 推送至外部制品库
path: ci/artifacts/outside.html
num: 5
- title: 自动生成版本号
path: ci/artifacts/version.html
num: 6
- title: 推送至 TCR 镜像仓库
path: ci/artifacts/tcr.html
num: 7
- title: 构建节点
num: 6
links:
- title: 构建节点类型
path: ci/node/type.html
num: 0
- title: 默认节点环境
path: ci/node/env.html
num: 1
- title: 自定义节点
path: ci/node/customize.html
num: 2
- title: Worker 常用命令
path: ci/node/worker.html
num: 3
- title: 构建节点池
path: ci/node/pool.html
num: 4
- title: 管理构建计划
num: 7
links:
- title: 分组管理
path: ci/manage/group.html
num: 0
- title: 构建计划模板
path: ci/manage/team-template.html
num: 1
- title: 系统插件
num: 8
links:
- title: 上传 Generic 类型制品
path: ci/plugins/generic.html
num: 0
- title: 调取已录入的凭据
path: ci/plugins/credentials.html
num: 1
- title: 自动添加合并请求评审者
path: ci/plugins/reviewer.html
num: 2
- title: 人工确认
path: ci/plugins/manual-confirmation.html
num: 3
- title: 收集通用报告
path: ci/plugins/html-report.html
num: 4
- title: 上传 API 文档
path: ci/plugins/api-doc.html
num: 5
- title: 在阶段末尾执行插件
path: ci/plugins/post-step.html
num: 6
- title: 代码扫描
path: ci/plugins/code-scan.html
num: 7
- title: 镜像更新至 K8s 集群
path: ci/plugins/mirror-k8s.html
num: 8
- title: 错误信号
path: ci/plugins/error-skip.html
num: 9
- title: 邮件通知
path: ci/plugins/smtp.html
num: 10
- title: 自定义团队插件
num: 9
links:
- title: 产品简介
path: ci/plugins/customize/overview.html
num: 0
- title: 开发指引
path: ci/plugins/customize/develop.html
num: 1
- title: 声明文件
path: ci/plugins/customize/format.html
num: 2
- title: qci-plugin
path: ci/plugins/customize/qci-plugin.html
num: 3
- title: 最佳实践
num: 10
links:
- title: 在持续集成中使用 Docker
path: ci/practice/docker.html
num: 0
- title: 如何使用 when 条件判断语法
path: ci/practice/jenkins-when.html
num: 1
- title: 在持续集成中使用 SSH
path: ci/practice/ssh.html
num: 2
- title: 自建静态网站
path: ci/practice/static-website.html
num: 3
- title: 使用持续集成快速构建应用
num: 4
sections:
- title: GWT 应用
path: ci/practice/quick/java-gwt.html
num: 0
- title: 自动发布 Electron 应用
path: ci/practice/quick/auto-electron.html
num: 1
- title: 每日一句小应用
path: ci/practice/quick/daily-sentence.html
num: 2
- title: 自动化发布 AI 应用
path: ci/practice/quick/tensorflow.html
num: 3
- title: 自动构建微信小程序
path: ci/practice/quick/wechat-mini-program.html
num: 4
- title: 使用 Flask 构建 Web 应用
path: ci/practice/quick/python-flask.html
num: 5
- title: 将 Ruby + 项目发布至腾讯云 TKE
path: ci/practice/quick/ruby-sinatra.html
num: 6
- title: 自动构建安卓应用
path: ci/practice/quick/java-android.html
num: 7
- title: 将 React 项目发布至腾讯云 COS
path: ci/practice/quick/react-cos.html
num: 8
- title: 将 Vue 项目发布至腾讯云 COS
path: ci/practice/quick/vue-cos.html
num: 9
- title: 代码规范检查
num: 5
sections:
- title: 增量检查
path: ci/practice/lint/code-diff.html
num: 0
- title: Commit Message
path: ci/practice/lint/git-commit.html
num: 1
- title: Java
path: ci/practice/lint/java.html
num: 2
- title: Markdown
path: ci/practice/lint/markdown.html
num: 3
- title: PHP
path: ci/practice/lint/php.html
num: 4
- title: Shell
path: ci/practice/lint/shell.html
num: 5
- title: 自动化测试
num: 6
sections:
- title: 功能介绍
path: ci/practice/testing/intro.html
num: 0
- title: Java Spring Boot
path: ci/practice/testing/java-spring-boot.html
num: 1
- title: PHP 自动化测试
path: ci/practice/testing/php.html
num: 2
- title: 自动部署
num: 7
sections:
- title: COS 存储桶
path: ci/practice/deploy/cloud-storage.html
num: 0
- title: Docker 服务器
path: ci/practice/deploy/docker.html
num: 1
- title: K8s 集群
path: ci/practice/deploy/k8s.html
num: 2
- title: Serverless
path: ci/practice/deploy/serverless.html
num: 3
- title: Linux 服务器
path: ci/practice/deploy/ssh.html
num: 4
- title: 微信小程序
path: ci/practice/deploy/wechat-miniprogram.html
num: 5
- title: 同步代码库
num: 8
sections:
- title: 定时同步开源代码库
path: ci/practice/sync-from-github.html
num: 0
- title: 定时同步私有代码库
path: ci/practice/sync-private-repo.html
num: 1
- title: 常见问题
num: 11
links:
- title: Jenkinsfile 相关问题
path: ci/faq/jenkinsfile.html
num: 0
- title: 构建任务运行失败
path: ci/faq/job-fail.html
num: 1
- title: 自定义构建节点
path: ci/faq/customize-node.html
num: 2
- title: 持续集成与代码仓库
path: ci/faq/ci-repo.html
num: 3
- title: 持续集成与制品库
path: ci/faq/artifacts.html
num: 4
- title: 常见错误码
path: ci/faq/error-code.html
num: 5
- title: 词汇表
path: ci/glossary.html
num: 12
bold: 1
- compendium: 制品管理
path: artifacts/
icon: images/book-icons/artifacts.svg
isHide: false
categories:
- title: 制品仓库
num: 0
links:
- title: 产品简介
path: artifacts/intro.html
num: 0
- title: 快速开始
num: 1
sections:
- title: 基础操作
path: artifacts/quick-start/basic.html
num: 0
- title: Generic
path: artifacts/quick-start/generic.html
num: 1
- title: Docker
path: artifacts/quick-start/docker.html
num: 2
- title: Maven
path: artifacts/quick-start/maven.html
num: 3
- title: Npm
path: artifacts/quick-start/npm.html
num: 4
- title: Helm
path: artifacts/quick-start/helm.html
num: 5
- title: PyPI
path: artifacts/quick-start/pypi.html
num: 6
- title: Composer
path: artifacts/quick-start/composer.html
num: 7
- title: NuGet
path: artifacts/quick-start/nuget.html
num: 8
- title: Rpm
path: artifacts/quick-start/rpm.html
num: 9
- title: Conan
path: artifacts/quick-start/conan.html
num: 10
- title: Cocoapods
path: artifacts/quick-start/cocoapods.html
num: 11
- title: 制品库代理
path: artifacts/proxy.html
num: 2
- title: 制品库权限
path: artifacts/permission.html
num: 3
- title: 制品库认证
path: artifacts/auth.html
num: 4
- title: 制品属性
path: artifacts/properties.html
num: 5
- title: 制品版本覆盖策略
path: artifacts/version.html
num: 6
- title: 清理策略
path: artifacts/cleanup-strategy.html
- title: 制品扫描
num: 1
links:
- title: 产品简介
path: artifacts/scan/intro.html
num: 0
- title: 快速开始
path: artifacts/scan/projects.html
num: 1
- title: 扫描对象
path: artifacts/scan/demo.html
num: 2
- title: 自动化插件
num: 2
links:
- title: 推送到 CODING Docker 制品仓库
path: artifacts/practices/cci-push-docker.html
num: 0
- title: 制品属性设置
path: artifacts/practices/artifact-set-properties.html
num: 1
- title: 最佳实践
num: 3
links:
- title: 搭建团队级制品库
path: artifacts/practices/team-share.html
num: 0
- title: 常见问题
path: artifacts/faq.html
num: 4
bold: 1
- title: 词汇表
path: artifacts/glossary.html
num: 5
bold: 1
- compendium: 持续部署
path: cd/
icon: images/book-icons/cd.svg
isHide: false
categories:
- title: 产品简介
path: cd/overview.html
num: 0
- title: 快速开始
path: cd/start.html
num: 1
- title: 权限控制
path: cd/rbac.html
num: 2
- title: 部署控制台
path: cd/console.html
num: 3
- title: 云账号
path: cd/cloud-account.html
num: 4
- title: 应用与项目
path: cd/app-project.html
num: 5
- title: 部署流程
num: 6
links:
- title: 部署流程介绍
path: cd/pipe/overview.html
num: 0
- title: 阶段类型
path: cd/pipe/stages.html
num: 1
- title: 触发器配置
path: cd/pipe/triggers.html
num: 2
- title: 环境变量
path: cd/pipe/env.html
num: 3
- title: 部署方式
num: 7
links:
- title: 自动发布 Docker 制品时触发
path: cd/deploy-way/docker.html
num: 0
- title: 在构建计划中添加部署阶段
path: cd/deploy-way/ci-job.html
num: 1
- title: 手动提交发布单
path: cd/deploy-way/manual.html
num: 2
- title: 制品
num: 8
links:
- title: 部署流程中的制品
path: cd/pipe/artifacts/in-pipelines.html
num: 0
- title: Kubernetes 场景下的制品
path: cd/pipe/artifacts/in-kubernetes.html
num: 1
- title: 阶段类型详情
num: 9
links:
- title: 人工确认
path: cd/pipe/stages/manual.html
num: 0
- title: Patch(Manifest) 阶段
path: cd/pipe/stages/patch.html
num: 1
- title: Run Job(Manifest) 阶段
path: cd/pipe/stages/runjob.html
num: 2
- title: Bake(Manifest) 阶段
path: cd/pipe/stages/bake.html
num: 3
- title: Deploy(Manifest) 阶段
path: cd/pipe/stages/deploy.html
num: 4
- title: 主机部署
num: 10
links:
- title: 主机部署介绍
path: cd/host-deploy/intro.html
num: 0
- title: 堡垒机
path: cd/host-deploy/bastion-host.html
num: 1
- title: 主机组
path: cd/host-deploy/host-group.html
num: 2
- title: 堡垒机 Agent
path: cd/host-deploy/cloud-agent.html
num: 3
- title: 部署阶段配置
path: cd/host-deploy/stage.html
num: 4
- title: 运行脚本阶段
path: cd/host-deploy/script.html
num: 5
- title: 查看部署详情
path: cd/host-deploy/details.html
num: 6
- title: 回滚
path: cd/host-deploy/rollback.html
num: 7
- title: 最佳实践
num: 11
links:
- title: Kubernetes 滚动发布实践
path: cd/best-practice/rolling-release.html
num: 0
- title: Kubernetes 蓝绿部署实践
path: cd/best-practice/blue-green.html
num: 1
- title: 在 Kubernetes 上持续部署 Helm 应用
path: cd/best-practice/k8s-helm.html
num: 2
- title: Nginx ingress 实现自动化灰度发布
path: cd/best-practice/nginx-ingress.html
num: 3
- title: 持续部署 + TKE Mesh 灰度发布实践
path: cd/best-practice/tke-mesh.html
num: 4
- title: 使用 Serverless 实现动态准入控制
path: cd/best-practice/k8s-serverless.html
num: 5
- title: 基于腾讯云弹性伸缩(AS)的持续部署
path: cd/best-practice/cvm-cd.html
num: 6
# - title: CODING CD 主机组部署实践
# path: cd/best-practice/host-group.html
# num: 7
- title: 使用 CODING 持续部署的强大表达式
path: cd/best-practice/expression-cd.html
num: 7
- title: 常见问题
num: 12
links:
- title: 部署 Kubernetes 资源时拉取私有库镜像
path: cd/question/private-repo.html
num: 0