-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsidebars.js
More file actions
176 lines (176 loc) · 4.12 KB
/
sidebars.js
File metadata and controls
176 lines (176 loc) · 4.12 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
module.exports = {
docs: {
導讀摘要: ['readme', 'book'],
'鳥哥的 Linux 私房菜:基礎學習篇': [
{
type: 'doc',
id: '2020-11-07',
label: '2020-11-07 Ch2, Ch4, Ch5',
},
{
type: 'doc',
id: '2020-11-21',
label: '2020-11-21 Ch6~8',
},
{
type: 'doc',
id: '2020-12-05',
label: '2020-12-05 Ch9, Ch11',
},
{
type: 'doc',
id: '2020-12-19',
label: '2020-12-19 Ch10, Ch12',
},
{
type: 'doc',
id: '2021-01-09',
label: '2021-01-09 Ch14, Ch15',
},
{
type: 'doc',
id: '2021-01-23',
label: '2021-01-23 Ch16',
},
{
type: 'doc',
id: '2021-02-06',
label: '2021-02-06 Ch17, Ch19',
},
{
type: 'doc',
id: '2021-03-06',
label: '2021-03-06 Ch13',
},
{
type: 'doc',
id: '2021-03-20',
label: '2021-03-20 Ch20',
},
{
type: 'doc',
id: '2021-04-10',
label: '2021-04-10 Ch18',
},
{
type: 'doc',
id: '2021-04-24',
label: '2021-04-24 Ch21',
},
],
'Docker in Action 2nd edition': [
{
type: 'doc',
id: 'docker-1',
label: 'Chapter 1. Welcome to Docker',
},
{
type: 'doc',
id: 'docker-2',
label: 'Chapter 2. Running software in containers',
},
{
type: 'doc',
id: 'docker-3',
label: 'Chapter 3. Software installation simplified',
},
{
type: 'doc',
id: 'docker-4',
label: 'Chapter 5. Single-host networking',
},
{
type: 'doc',
id: 'docker-5',
label: 'Chapter 4. Working with storage and volumes',
},
{
type: 'doc',
id: 'docker-6',
label: 'Chapter 6. Limiting risk with resource controls',
},
{
type: 'doc',
id: 'docker-7',
label: 'Chapter 7. Packaging software in images',
},
{
type: 'doc',
id: 'docker-8',
label: 'Chapter 8. Building images automatically with Dockerfiles',
},
{
type: 'doc',
id: 'docker-9',
label: 'Chapter 9. Public and private software distribution',
},
{
type: 'doc',
id: 'docker-10',
label: 'Chapter 10. Image pipelines',
},
{
type: 'doc',
id: 'docker-11',
label: 'Chapter 11. Services with Docker and Compose',
},
{
type: 'doc',
id: 'docker-12',
label: 'Chapter 12. First-class configuration abstractions',
},
],
'Kubernetes in Action': [
{
type: 'doc',
id: 'k8s-1',
label: 'Pre-Class microk8s Setup',
},
{
type: 'doc',
id: 'k8s-2',
label: 'Chapter 2. First steps with Docker and Kubernetes, Chapter 3. Pods: running containers in Kubernetes',
},
{
type: 'doc',
id: 'k8s-3',
label: 'Chapter 4 Introducing the Kubernetes API objects',
},
{
type: 'doc',
id: 'k8s-4',
label: 'Chapter 5. Running applications in Pods',
},
{
type: 'doc',
id: 'k8s-5',
label: 'Chapter 6. Managing the lifecycle of the Pod’s containers',
},
{
type: 'doc',
id: 'k8s-6',
label: 'Chapter 7. Mounting storage volumes into the Pod’s containers',
},
{
type: 'doc',
id: 'k8s-7',
label: 'Chapter 8. Persisting application data with PersistentVolumes - 8.1 + 8.2',
},
{
type: 'doc',
id: 'k8s-8',
label: 'Chapter 8. Persisting application data with PersistentVolumes - 8.3 + 8.4',
},
{
type: 'doc',
id: 'k8s-9',
label: 'Chapter 9. Configuring applications using ConfigMaps, Secrets, and the Downward API',
},
{
type: 'doc',
id: 'k8s-10',
label: 'Chapter 10. Organizing objects using Namespaces, labels, and selectors',
},
]
},
};