-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
617 lines (408 loc) · 27.2 KB
/
index.html
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
<!doctype html>
<html lang="zh-CN">
<head>
<meta name="generator" content="Hugo 0.124.1">
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="referrer" content="no-referrer-when-downgrade">
<title>Shuanglu的博客 | 运维技术笔记:Kubernetes,Docker,容器,CloudNative等相关</title>
<meta property="og:title" content="Shuanglu的博客 | 运维技术笔记:Kubernetes,Docker,容器,CloudNative等相关">
<meta property="og:type" content="website">
<meta name="Keywords" content="k8s,docker,容器,云原生,分布式存储,IaaS,PaaS">
<meta name="description" content="一个平凡SRE的日常">
<meta property="og:url" content="https://shuanglu.life/">
<link rel="shortcut icon" href='/favicon.ico' type="image/x-icon">
<link rel="stylesheet" href='/css/normalize.css'>
<link rel="stylesheet" href='/css/style.css'>
<link rel="alternate" type="application/rss+xml" href="https://shuanglu.life/index.xml" title="Shuanglu的博客" />
<script type="text/javascript" src="//cdn.bootcdn.net/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<link href="https://cdn.bootcdn.net/ajax/libs/fancybox/3.5.7/jquery.fancybox.min.css" rel="stylesheet">
<link rel="stylesheet" href='/css/douban.css'>
<link rel="stylesheet" href='/css/other.css'>
<link rel="stylesheet" href='/css//css/copy-to-clipboard.css'>
</head>
<body>
<header id="header" class="clearfix">
<div class="container">
<div class="col-group">
<div class="site-name ">
<h1>
<a id="logo" href="https://shuanglu.life/">
Shuanglu的博客
</a>
</h1>
<p class="description">运维技术笔记:Kubernetes,Docker,容器,CloudNative等相关</p>
</div>
<div>
<nav id="nav-menu" class="clearfix">
<a class="current" href="https://shuanglu.life/">首页</a>
<a href="https://shuanglu.life/archives/" title="归档">归档</a>
<a href="https://shuanglu.life/about/" title="关于">关于</a>
</nav>
</div>
</div>
</div>
</header>
<div id="body">
<div class="container">
<div class="col-group">
<div class="col-8" id="main">
<div class="res-cons">
<article class="post">
<header>
<h1 class="post-title">
<a href="https://shuanglu.life/post/20240613_%E5%AE%B9%E5%99%A8%E5%86%85%E5%A6%82%E4%BD%95%E5%A4%84%E7%90%86SIGTERM/" title="20240613_容器内如何处理SIGTERM">20240613_容器内如何处理SIGTERM</a>
</h1>
</header>
<date class="post-meta meta-date">
2024年6月13日
</date>
<div class="post-meta">
<span>|</span>
<span class="meta-category"><a href='/categories/Docker'>Docker</a></span>
<span class="meta-category"><a href='/categories/%E5%AE%B9%E5%99%A8'>容器</a></span>
</div>
<div class="post-content">
处理SIGTERM信号 一、exec-app.sh与app.sh,(两种形式都不建议使用): 使用如下脚本当中指定需要使用#!/bin/bash+ exec 的形式启动进程 1[root@3114-db-mysql ubuntu]# cat exec-app.sh 2#!/bin/bash 3exec /gosignal 4 5# 进入到容器内查看进程结构 6 7root@4d40c42c130e:/# ps -auxf 8USER PID %CPU %MEM VSZ RSS TTY STAT START TIME COMMAND 9root 14 1.0 0.0 4628 3528 pts/0 Ss 15:55 0:00 bash 10root 22 0.0 0.0 7064 1588 pts/0 R+ 15:55 0:00 \_ ps -auxf 11root……
</div>
<p class="readmore"><a href="https://shuanglu.life/post/20240613_%E5%AE%B9%E5%99%A8%E5%86%85%E5%A6%82%E4%BD%95%E5%A4%84%E7%90%86SIGTERM/">阅读全文</a></p>
</article>
<article class="post">
<header>
<h1 class="post-title">
<a href="https://shuanglu.life/post/20240516_SQL%E9%80%9F%E6%88%90/" title="20240516_速成SQL">20240516_速成SQL</a>
</h1>
</header>
<date class="post-meta meta-date">
2024年5月16日
</date>
<div class="post-meta">
<span>|</span>
<span class="meta-category"><a href='/categories/SQL'>SQL</a></span>
<span class="meta-category"><a href='/categories/%E6%95%B0%E6%8D%AE%E5%BA%93'>数据库</a></span>
</div>
<div class="post-content">
速成SQL(Base on Mysql) 一、Docker compose 快速拉起mysql 单机实例 1# 创建目录 2# mkdir -p ./.etc ./.data 3 4# 容器内mysqld.cnf 文件参数优化: 5# cat .etc/my.cnf 6[mysqld] 7character-set-server=utf8 8log-bin=mysql-bin 9server-id=1 10pid-file = /var/run/mysqld/mysqld.pid 11socket = /var/run/mysqld/mysqld.sock 12datadir = /var/lib/mysql 13sql_mode=STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_AUTO_CREATE_USER,NO_ENGINE_SUBSTITUTION 14symbolic-links=0 15secure_file_priv = 16wait_timeout=120 17interactive_timeout=120 18default-time_zone = '+8:00' 19skip-external-locking 20skip-name-resolve 21open_files_limit = 10240 22max_connections = 1000 23max_connect_errors = 6000 24table_open_cache = 800 25max_allowed_packet = 40m 26sort_buffer_size = 2M 27join_buffer_size = 1M 28thread_cache_size = 32 29query_cache_size = 64M 30transaction_isolation = READ-COMMITTED 31tmp_table_size = 128M 32max_heap_table_size = 128M 33log-bin = mysql-bin 34sync-binlog = 1……
</div>
<p class="readmore"><a href="https://shuanglu.life/post/20240516_SQL%E9%80%9F%E6%88%90/">阅读全文</a></p>
</article>
<article class="post">
<header>
<h1 class="post-title">
<a href="https://shuanglu.life/post/20240420_getopts%E8%84%9A%E6%9C%AC%E7%9A%84%E4%BD%BF%E7%94%A8/" title="20240420_getopts脚本模板">20240420_getopts脚本模板</a>
</h1>
</header>
<date class="post-meta meta-date">
2024年4月20日
</date>
<div class="post-meta">
<span>|</span>
<span class="meta-category"><a href='/categories/shell'>shell</a></span>
<span class="meta-category"><a href='/categories/%E6%A8%A1%E6%9D%BF'>模板</a></span>
</div>
<div class="post-content">
getopts脚本模板 使用shell 进行一系列的参数时可以修改该脚本来完成一系列复杂的操作 脚本模板: 1#!/bin/bash 2# ------------------------------------------ 3# Filename: getopts_template.sh 4# Version: 1.1 5# Date: 2024/04/20 6# Author: kid 7# Email: [email protected] 8# Website: shuanglu.life 9# Description: template for getopts 10# Copyright: 2024 kid 11# License: GPL 12# ------------------------------------------ 13# 定义帮助示例: 14do_help(){ 15 echo "用法: $0 [-a|--along] [-b|--blong 参数值] [-c参数值|--clong 参数值] 文件名" 16} 17 18echo……
</div>
<p class="readmore"><a href="https://shuanglu.life/post/20240420_getopts%E8%84%9A%E6%9C%AC%E7%9A%84%E4%BD%BF%E7%94%A8/">阅读全文</a></p>
</article>
<article class="post">
<header>
<h1 class="post-title">
<a href="https://shuanglu.life/post/20240416_python%E6%89%8B%E6%90%93http%E6%9C%8D%E5%8A%A1%E5%99%A8/" title="20240416_Python手搓Http服务器">20240416_Python手搓Http服务器</a>
</h1>
</header>
<date class="post-meta meta-date">
2024年4月16日
</date>
<div class="post-meta">
<span>|</span>
<span class="meta-category"><a href='/categories/Python'>Python</a></span>
<span class="meta-category"><a href='/categories/%E5%A4%9A%E7%BA%BF%E7%A8%8B'>多线程</a></span>
<span class="meta-category"><a href='/categories/IO%E5%A4%9A%E8%B7%AF%E5%A4%8D%E7%94%A8'>IO多路复用</a></span>
</div>
<div class="post-content">
20240416_python手搓http服务器 最近看了有关阻塞、非阻塞、同步、异步、IO多路复用一些知识,所以想着手搓一个极简版本的Http服务器用来练手、以及巩固知识。 相关代码如下: 一、多线程版 1import random 2import socket 3import threading 4import time 5 6# 定义一个自定义的返回页面,通过读取当前文件夹下的index.h……
</div>
<p class="readmore"><a href="https://shuanglu.life/post/20240416_python%E6%89%8B%E6%90%93http%E6%9C%8D%E5%8A%A1%E5%99%A8/">阅读全文</a></p>
</article>
<article class="post">
<header>
<h1 class="post-title">
<a href="https://shuanglu.life/post/20240410_pod%E5%A6%82%E4%BD%95%E8%8E%B7%E5%BE%97IP%E5%9C%B0%E5%9D%80/" title="20240410_pod如何获取IP地址">20240410_pod如何获取IP地址</a>
</h1>
</header>
<date class="post-meta meta-date">
2024年4月10日
</date>
<div class="post-meta">
<span>|</span>
<span class="meta-category"><a href='/categories/Kubernetes'>Kubernetes</a></span>
<span class="meta-category"><a href='/categories/CNI'>CNI</a></span>
<span class="meta-category"><a href='/categories/%E5%AE%B9%E5%99%A8%E7%BD%91%E7%BB%9C'>容器网络</a></span>
<span class="meta-category"><a href='/categories/%E5%AE%B9%E5%99%A8%E5%9F%BA%E7%A1%80'>容器基础</a></span>
</div>
<div class="post-content">
20240410_pod如何获得IP地址 翻译自:https://ronaknathani.com/blog/2020/08/how-a-kubernetes-pod-gets-an-ip-address/ Kubernetes 网络模型的核心要求之一是每个 Pod 都应该有自己的 IP 地址,并且集群中的每个 Pod 都应……
</div>
<p class="readmore"><a href="https://shuanglu.life/post/20240410_pod%E5%A6%82%E4%BD%95%E8%8E%B7%E5%BE%97IP%E5%9C%B0%E5%9D%80/">阅读全文</a></p>
</article>
<article class="post">
<header>
<h1 class="post-title">
<a href="https://shuanglu.life/post/20240206_github%E5%A4%A7%E6%96%87%E4%BB%B6commit/" title="20240206_github大文件commit">20240206_github大文件commit</a>
</h1>
</header>
<date class="post-meta meta-date">
2024年2月6日
</date>
<div class="post-meta">
<span>|</span>
<span class="meta-category"><a href='/categories/github'>github</a></span>
<span class="meta-category"><a href='/categories/git'>git</a></span>
</div>
<div class="post-content">
关于在github上遇到上传的单个文件超过其限制的100MB时的处理 1. github 对于单个文件上传的大小是有限制的 详见:[About size limits on GitHub][https://docs.github.com/en/repositories/working-with-files/managing-large-files/about-large-files-on-github#about-size-limits-on-github] 其表现则体现为push过程当中的错误(我这里使用的是git的remote,而非http的remote) (如果是https的remote 可能有所不同。)……
</div>
<p class="readmore"><a href="https://shuanglu.life/post/20240206_github%E5%A4%A7%E6%96%87%E4%BB%B6commit/">阅读全文</a></p>
</article>
<article class="post">
<header>
<h1 class="post-title">
<a href="https://shuanglu.life/post/20240110_golang%E6%8E%92%E5%BA%8F/" title="20240110_golang排序">20240110_golang排序</a>
</h1>
</header>
<date class="post-meta meta-date">
2024年1月10日
</date>
<div class="post-meta">
<span>|</span>
<span class="meta-category"><a href='/categories/golang'>golang</a></span>
</div>
<div class="post-content">
Golang排序 排序算法可以分为内部排序和外部排序。 其中:内部排序是指在内存中对数据进行排序,而外部排序是因为数据量较大,无法一次性放入内存,因此需要访问外部存储。 以下是十种常见的排序算法,具有不同的特点、时间复杂度和稳定性: 1. 冒泡排序(Bubble Sort): 通过多次比较和交换……
</div>
<p class="readmore"><a href="https://shuanglu.life/post/20240110_golang%E6%8E%92%E5%BA%8F/">阅读全文</a></p>
</article>
<article class="post">
<header>
<h1 class="post-title">
<a href="https://shuanglu.life/post/20230807_eci%E4%B8%8Eswagent%E9%97%AE%E9%A2%98%E5%A4%84%E7%BD%AE%E6%96%B9%E5%BC%8F/" title="20230807_eci与swagent问题处置方式">20230807_eci与swagent问题处置方式</a>
</h1>
</header>
<date class="post-meta meta-date">
2023年8月7日
</date>
<div class="post-meta">
<span>|</span>
<span class="meta-category"><a href='/categories/Kubernetes'>Kubernetes</a></span>
<span class="meta-category"><a href='/categories/golang'>golang</a></span>
</div>
<div class="post-content">
20230807_eci与swagent问题处置方式 tag: skywalking-swck-mutating-webhook-configuration 一、问题现象 使用ECI作为弹性容器过程当中因为阿里云ECI容器会对部署的pod触发patch annotation操作如下: 而在此eci 控制器patch 之前 skywalking-swck-controller-manager 控制器会对namespace 带标签swck-injection=en……
</div>
<p class="readmore"><a href="https://shuanglu.life/post/20230807_eci%E4%B8%8Eswagent%E9%97%AE%E9%A2%98%E5%A4%84%E7%BD%AE%E6%96%B9%E5%BC%8F/">阅读全文</a></p>
</article>
<article class="post">
<header>
<h1 class="post-title">
<a href="https://shuanglu.life/post/20230727_velero%E5%A4%87%E4%BB%BD%E8%BF%81%E7%A7%BBkubernetes%E9%9B%86%E7%BE%A4/" title="20230727_velero备份迁移kubernetes集群">20230727_velero备份迁移kubernetes集群</a>
</h1>
</header>
<date class="post-meta meta-date">
2023年7月27日
</date>
<div class="post-meta">
<span>|</span>
<span class="meta-category"><a href='/categories/etcd'>etcd</a></span>
<span class="meta-category"><a href='/categories/Kubernetes'>Kubernetes</a></span>
<span class="meta-category"><a href='/categories/velero'>velero</a></span>
</div>
<div class="post-content">
一、velero安装 1# wget https://github.com/vmware-tanzu/velero/releases/download/v1.11.1/velero-v1.11.1-linux-amd64.tar.gz 2# tar -zxvf velero-v1.11.1-linux-amd64.tar.gz 3# cp -av velero /usr/bin/ 4 5#velero -h 6# 启用命令补全 7# source <(velero completion bash) 8# velero completion bash > /etc/bash_completion.d/velero 1# cat > credentials-velero <<EOF 2[default] 3aws_access_key_id = admin 4aws_secret_access_key = P@ssw0rd 5EOF 6 7# velero install \ 8 --provider aws \ 9 --image velero/velero:v1.11.1 \ 10 --plugins velero/velero-plugin-for-aws:v1.6.0 \ 11 --bucket velero \ 12 --secret-file ./credentials-velero \ 13 --use-node-agent \ 14 --use-volume-snapshots=false \ 15 --namespace velero \ 16 --backup-location-config region=minio,s3ForcePathStyle="true",s3Url=http://192.168.31.110:9000 \ 17 --wait 18 19 --prefix /cce-test 二、卸载 1kubectl delete namespace/velero clusterrolebinding/velero 2kubectl delete crds -l component=velero 三、执行velero 备份与恢复 1# 不执行存储pvc内容……
</div>
<p class="readmore"><a href="https://shuanglu.life/post/20230727_velero%E5%A4%87%E4%BB%BD%E8%BF%81%E7%A7%BBkubernetes%E9%9B%86%E7%BE%A4/">阅读全文</a></p>
</article>
<article class="post">
<header>
<h1 class="post-title">
<a href="https://shuanglu.life/post/20230309_KuriseRollout%E5%AE%9E%E7%8E%B0%E7%9A%84%E7%81%B0%E5%BA%A6%E5%8F%91%E5%B8%83/" title="20230309_KuriseRollout灰度发布">20230309_KuriseRollout灰度发布</a>
</h1>
</header>
<date class="post-meta meta-date">
2023年3月9日
</date>
<div class="post-meta">
<span>|</span>
<span class="meta-category"><a href='/categories/Kubernetes'>Kubernetes</a></span>
<span class="meta-category"><a href='/categories/openkruise'>openkruise</a></span>
<span class="meta-category"><a href='/categories/KruiseRollout'>KruiseRollout</a></span>
</div>
<div class="post-content">
一、架构设计: Kruise rollout 是一个Bypass的旁路组件, 其主要功能是为标准的Kubernetes Deployment、Statefuset以及 openKurise Cloneset这类工作负载进行提供高级部署功能而存在的,其中提供的高级部署功能包含: 金丝雀灰度、流量路由和渐进式交付。 其中关于原生的Kuber……
</div>
<p class="readmore"><a href="https://shuanglu.life/post/20230309_KuriseRollout%E5%AE%9E%E7%8E%B0%E7%9A%84%E7%81%B0%E5%BA%A6%E5%8F%91%E5%B8%83/">阅读全文</a></p>
</article>
<ol class="page-navigator">
<li class="current">
<a href="https://shuanglu.life/">1</a>
</li>
<li >
<a href="https://shuanglu.life/page/2/">2</a>
</li>
<li class="next">
<a href="https://shuanglu.life/page/2/">下一页</a>
</li>
</ol>
</div>
<footer id="footer">
<div>
© 2024 <a href="https://shuanglu.life/">Shuanglu的博客 By Kid</a>
</div>
<br />
<div>
<div class="github-badge">
<a href="https://gohugo.io/" target="_black" rel="nofollow"><span class="badge-subject">Powered by</span><span class="badge-value bg-blue">Hugo</span></a>
</div>
</div>
</footer>
<a id="rocket" href="#top"></a>
<script type="text/javascript" src='/js/totop.js?v=0.0.0' async=""></script>
<script type="text/javascript" src="//busuanzi.ibruce.info/busuanzi/2.3/busuanzi.pure.mini.js" async></script>
<script src='/js/douban.js'></script>
</div>
<div id="secondary">
<section class="widget">
<form id="search" action='https://shuanglu.life/search/' method="get" accept-charset="utf-8" target="_blank" _lpchecked="1">
<input type="text" name="q" maxlength="20" placeholder="Search">
<input type="hidden" name="sitesearch" value="https://shuanglu.life/">
<button type="submit" class="submit icon-search"></button>
</form>
</section>
<section class="widget">
<h3 class="widget-title">最近文章</h3>
<ul class="widget-list">
<li>
<a href="https://shuanglu.life/post/20240613_%E5%AE%B9%E5%99%A8%E5%86%85%E5%A6%82%E4%BD%95%E5%A4%84%E7%90%86SIGTERM/" title="20240613_容器内如何处理SIGTERM">20240613_容器内如何处理SIGTERM</a>
</li>
<li>
<a href="https://shuanglu.life/post/20240516_SQL%E9%80%9F%E6%88%90/" title="20240516_速成SQL">20240516_速成SQL</a>
</li>
<li>
<a href="https://shuanglu.life/post/20240420_getopts%E8%84%9A%E6%9C%AC%E7%9A%84%E4%BD%BF%E7%94%A8/" title="20240420_getopts脚本模板">20240420_getopts脚本模板</a>
</li>
<li>
<a href="https://shuanglu.life/post/20240416_python%E6%89%8B%E6%90%93http%E6%9C%8D%E5%8A%A1%E5%99%A8/" title="20240416_Python手搓Http服务器">20240416_Python手搓Http服务器</a>
</li>
<li>
<a href="https://shuanglu.life/post/20240410_pod%E5%A6%82%E4%BD%95%E8%8E%B7%E5%BE%97IP%E5%9C%B0%E5%9D%80/" title="20240410_pod如何获取IP地址">20240410_pod如何获取IP地址</a>
</li>
<li>
<a href="https://shuanglu.life/post/20240206_github%E5%A4%A7%E6%96%87%E4%BB%B6commit/" title="20240206_github大文件commit">20240206_github大文件commit</a>
</li>
<li>
<a href="https://shuanglu.life/post/20240110_golang%E6%8E%92%E5%BA%8F/" title="20240110_golang排序">20240110_golang排序</a>
</li>
<li>
<a href="https://shuanglu.life/post/20230807_eci%E4%B8%8Eswagent%E9%97%AE%E9%A2%98%E5%A4%84%E7%BD%AE%E6%96%B9%E5%BC%8F/" title="20230807_eci与swagent问题处置方式">20230807_eci与swagent问题处置方式</a>
</li>
<li>
<a href="https://shuanglu.life/post/20230727_velero%E5%A4%87%E4%BB%BD%E8%BF%81%E7%A7%BBkubernetes%E9%9B%86%E7%BE%A4/" title="20230727_velero备份迁移kubernetes集群">20230727_velero备份迁移kubernetes集群</a>
</li>
<li>
<a href="https://shuanglu.life/post/20230309_KuriseRollout%E5%AE%9E%E7%8E%B0%E7%9A%84%E7%81%B0%E5%BA%A6%E5%8F%91%E5%B8%83/" title="20230309_KuriseRollout灰度发布">20230309_KuriseRollout灰度发布</a>
</li>
</ul>
</section>
<section class="widget">
<h3 class="widget-title"><a href='/categories/'>分类</a></h3>
<ul class="widget-list">
<li><a href="https://shuanglu.life/categories/1.10+/">1.10+ (1)</a></li>
<li><a href="https://shuanglu.life/categories/CNI/">CNI (1)</a></li>
<li><a href="https://shuanglu.life/categories/docker/">Docker (4)</a></li>
<li><a href="https://shuanglu.life/categories/dockerfile/">Dockerfile (1)</a></li>
<li><a href="https://shuanglu.life/categories/etcd/">Etcd (2)</a></li>
<li><a href="https://shuanglu.life/categories/git/">Git (1)</a></li>
<li><a href="https://shuanglu.life/categories/github/">Github (1)</a></li>
<li><a href="https://shuanglu.life/categories/golang/">Golang (2)</a></li>
<li><a href="https://shuanglu.life/categories/Harbor/">Harbor (2)</a></li>
<li><a href="https://shuanglu.life/categories/IO%E5%A4%9A%E8%B7%AF%E5%A4%8D%E7%94%A8/">IO多路复用 (1)</a></li>
<li><a href="https://shuanglu.life/categories/KruiseRollout/">KruiseRollout (1)</a></li>
<li><a href="https://shuanglu.life/categories/Kubernetes/">Kubernetes (6)</a></li>
<li><a href="https://shuanglu.life/categories/Linux/">Linux (3)</a></li>
<li><a href="https://shuanglu.life/categories/openkruise/">Openkruise (1)</a></li>
<li><a href="https://shuanglu.life/categories/openssl/">Openssl (2)</a></li>
<li><a href="https://shuanglu.life/categories/os/">Os (1)</a></li>
<li><a href="https://shuanglu.life/categories/Python/">Python (1)</a></li>
<li><a href="https://shuanglu.life/categories/shell/">Shell (1)</a></li>
<li><a href="https://shuanglu.life/categories/SQL/">SQL (1)</a></li>
<li><a href="https://shuanglu.life/categories/systemd/">Systemd (1)</a></li>
<li><a href="https://shuanglu.life/categories/velero/">Velero (1)</a></li>
<li><a href="https://shuanglu.life/categories/web/">Web (1)</a></li>
<li><a href="https://shuanglu.life/categories/%E5%A4%9A%E7%BA%BF%E7%A8%8B/">多线程 (1)</a></li>
<li><a href="https://shuanglu.life/categories/%E5%AE%B9%E5%99%A8/">容器 (1)</a></li>
<li><a href="https://shuanglu.life/categories/%E5%AE%B9%E5%99%A8%E5%9F%BA%E7%A1%80/">容器基础 (1)</a></li>
<li><a href="https://shuanglu.life/categories/%E5%AE%B9%E5%99%A8%E7%BD%91%E7%BB%9C/">容器网络 (1)</a></li>
<li><a href="https://shuanglu.life/categories/%E6%95%B0%E6%8D%AE%E5%BA%93/">数据库 (1)</a></li>
<li><a href="https://shuanglu.life/categories/%E6%A8%A1%E6%9D%BF/">模板 (1)</a></li>
</ul>
</section>
<section class="widget">
<h3 class="widget-title"><a href='/tags/'>标签</a></h3>
<div class="tagcloud">
<a href="https://shuanglu.life/tags/CNI/">CNI</a>
<a href="https://shuanglu.life/tags/docker/">Docker</a>
<a href="https://shuanglu.life/tags/dockerfile/">Dockerfile</a>
<a href="https://shuanglu.life/tags/etcd/">Etcd</a>
<a href="https://shuanglu.life/tags/git/">Git</a>
<a href="https://shuanglu.life/tags/github/">Github</a>
<a href="https://shuanglu.life/tags/golang/">Golang</a>
<a href="https://shuanglu.life/tags/Haproxy/">Haproxy</a>
<a href="https://shuanglu.life/tags/IO%E5%A4%9A%E8%B7%AF%E5%A4%8D%E7%94%A8/">IO多路复用</a>
<a href="https://shuanglu.life/tags/k8s/">K8s</a>
<a href="https://shuanglu.life/tags/KruiseRollout/">KruiseRollout</a>
<a href="https://shuanglu.life/tags/Kubernete/">Kubernete</a>
<a href="https://shuanglu.life/tags/Linux/">Linux</a>
<a href="https://shuanglu.life/tags/nginx/">Nginx</a>
<a href="https://shuanglu.life/tags/os/">Os</a>
<a href="https://shuanglu.life/tags/Python/">Python</a>
<a href="https://shuanglu.life/tags/shell/">Shell</a>
<a href="https://shuanglu.life/tags/skywalking-swck-mutating-webhook-configuration/">Skywalking-Swck-Mutating-Webhook-Configuration</a>
<a href="https://shuanglu.life/tags/SQL/">SQL</a>
<a href="https://shuanglu.life/tags/velero/">Velero</a>
<a href="https://shuanglu.life/tags/%E4%BC%98%E5%8C%96/">优化</a>
<a href="https://shuanglu.life/tags/%E5%8D%87%E7%BA%A7%E9%94%99%E8%AF%AF/">升级错误</a>
<a href="https://shuanglu.life/tags/%E5%A4%9A%E7%BA%BF%E7%A8%8B/">多线程</a>
<a href="https://shuanglu.life/tags/%E5%AE%B9%E5%99%A8/">容器</a>
<a href="https://shuanglu.life/tags/%E6%95%B0%E6%8D%AE%E5%BA%93/">数据库</a>
<a href="https://shuanglu.life/tags/%E6%A8%A1%E6%9D%BF/">模板</a>
<a href="https://shuanglu.life/tags/%E8%AF%81%E4%B9%A6/">证书</a>
<a href="https://shuanglu.life/tags/%E8%BD%AC%E6%8D%A2/">转换</a>
<a href="https://shuanglu.life/tags/%E9%80%9A%E7%94%A8%E7%9F%A5%E8%AF%86/">通用知识</a>
<a href="https://shuanglu.life/tags/%E9%95%9C%E5%83%8F%E4%BB%93%E5%BA%93/">镜像仓库</a>
<a href="https://shuanglu.life/tags/%E9%97%AE%E9%A2%98/">问题</a>
</div>
</section>
<section class="widget">
<h3 class="widget-title">友情链接</h3>
<ul class="widget-list">
<li>
<a target="_blank" href="https://shuanglu.live" title="Shuanglu的博客">Shuanglu的博客</a>
</li>
<li>
<a target="_blank" href="http://docs.kubernetes.org.cn/" title="kubernetes相关指南">Kubernetes指南</a>
</li>
</ul>
</section>
<section class="widget">
<h3 class="widget-title">其它</h3>
<ul class="widget-list">
<li><a href="https://shuanglu.life/index.xml">文章 RSS</a></li>
</ul>
</section>
</div>
</div>
</div>
</div>
</body>
</html>