-
Notifications
You must be signed in to change notification settings - Fork 209
/
sidebar-videos.js
70 lines (70 loc) · 1.7 KB
/
sidebar-videos.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
module.exports = {
videos: [
{
type: "category",
label: "Best Practice",
collapsed: false,
items: [
"best-practice/jenkins",
"best-practice/gitops",
"best-practice/kubevela-nocalhost",
],
},
{
type: "category",
label: "Lessons",
collapsed: false,
items: [
"lessons/live-1024",
],
},
{
type: "category",
label: "Talks",
collapsed: false,
items: [
{
type: "category",
label: "Talks in English",
collapsed: false,
items: [
"talks/en/cdfoundation-2022oct",
"talks/en/kubecon-na-2022-office-hour",
"talks/en/saiyam-cncf-minutes",
"talks/en/application-centric-platform",
"talks/en/devops-toolkit-2",
"talks/en/devops-toolkit-1",
"talks/en/standardizing-app",
"talks/en/bytedance-practice",
"talks/en/oam-dapr",
],
},
{
type: "category",
label: "中文演讲 - Talks in Chinese",
collapsed: false,
items: [
"talks/cn/x-as-code",
"talks/cn/vela-delivery-202206",
"talks/cn/next-app-delivery",
"talks/cn/multi-cluster",
"talks/cn/gopher-china",
"talks/cn/app-platform",
"talks/cn/oam-manage-app",
"talks/cn/oam-application",
"talks/cn/open-kruise-game",
"talks/cn/ackone",
],
},
],
},
{
type: "category",
label: "Community Meetings",
collapsed: false,
items: [
"meetings/meetings",
],
},
],
};