-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
1072 lines (647 loc) · 30.6 KB
/
index.html
File metadata and controls
1072 lines (647 loc) · 30.6 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
<!DOCTYPE html>
<html lang="en">
<!-- Head tag -->
<head><meta name="generator" content="Hexo 3.8.0">
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="google-site-verification" content="xBT4GhYoi5qRD5tr338pgPM5OWHHIDR6mNg1a3euekI">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content>
<meta name="keyword" content>
<link rel="shortcut icon" href="/images/favicon.ico">
<meta name="google-site-verification" content="wr0yzxswlBrw1yXEp211sdYpSlWoOeXRCAD6VZQqpys">
<!-- Place this tag in your head or just before your close body tag. -->
<script async defer src="https://buttons.github.io/buttons.js"></script>
<title>
ShenHengheng's Blog
</title>
<link rel="canonical" href="https://readailib.com/">
<!-- Bootstrap Core CSS -->
<link rel="stylesheet" href="/css/bootstrap.min.css">
<!-- Custom CSS -->
<link rel="stylesheet" href="/css/beantech.min.css">
<!-- Pygments Highlight CSS -->
<link rel="stylesheet" href="/css/highlight.css">
<link rel="stylesheet" href="/css/widget.css">
<link rel="stylesheet" href="/css/rocket.css">
<link rel="stylesheet" href="/css/signature.css">
<link rel="stylesheet" href="/css/toc.css">
<!-- Custom Fonts -->
<!-- <link href="https://maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css" rel="stylesheet" type="text/css"> -->
<!-- Hux change font-awesome CDN to qiniu -->
<link href="https://cdn.staticfile.org/font-awesome/4.5.0/css/font-awesome.min.css" rel="stylesheet" type="text/css">
<!-- Hux Delete, sad but pending in China
<link href='http://fonts.googleapis.com/css?family=Lora:400,700,400italic,700italic' rel='stylesheet' type='text/css'>
<link href='http://fonts.googleapis.com/css?family=Open+Sans:300italic,400italic,600italic,700italic,800italic,400,300,600,700,800' rel='stylesheet' type='text/
css'>
-->
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
<script src="https://oss.maxcdn.com/libs/respond.js/1.4.2/respond.min.js"></script>
<![endif]-->
<!-- ga & ba script hoook -->
<script></script>
</head>
<!-- hack iOS CSS :active style -->
<body ontouchstart="">
<!-- Modified by Yu-Hsuan Yen -->
<!-- Post Header -->
<style type="text/css">
header.intro-header{
background-image: url('/images/blog-bg.jpg')
/*config*/
}
</style>
<header class="intro-header">
<!-- Signature -->
<div id="signature">
<div class="container">
<div class="row">
<div class="col-lg-8 col-lg-offset-2 col-md-10 col-md-offset-1">
<div class="site-heading">
<h1>ShenH.'s Blog</h1>
<!--<hr class="small">-->
<span class="subheading">Learn Anything, Anytime, Anywhere~</span>
</div>
</div>
</div>
</div>
</div>
</header>
<!-- Navigation -->
<nav class="navbar navbar-default navbar-custom navbar-fixed-top">
<div class="container-fluid">
<!-- Brand and toggle get grouped for better mobile display -->
<div class="navbar-header page-scroll">
<button type="button" class="navbar-toggle">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="/">ShenH.'s Blog</a>
</div>
<!-- Collect the nav links, forms, and other content for toggling -->
<!-- Known Issue, found by Hux:
<nav>'s height woule be hold on by its content.
so, when navbar scale out, the <nav> will cover tags.
also mask any touch event of tags, unfortunately.
-->
<div id="huxblog_navbar">
<div class="navbar-collapse">
<ul class="nav navbar-nav navbar-right">
<li>
<a href="/">Home</a>
</li>
<li>
<a href="/about/">About Me</a>
</li>
<li>
<a href="/archive/">Archives</a>
</li>
<li>
<a href="/tags/">tags</a>
</li>
</ul>
</div>
</div>
<!-- /.navbar-collapse -->
</div>
<!-- /.container -->
</nav>
<script>
// Drop Bootstarp low-performance Navbar
// Use customize navbar with high-quality material design animation
// in high-perf jank-free CSS3 implementation
var $body = document.body;
var $toggle = document.querySelector('.navbar-toggle');
var $navbar = document.querySelector('#huxblog_navbar');
var $collapse = document.querySelector('.navbar-collapse');
$toggle.addEventListener('click', handleMagic)
function handleMagic(e){
if ($navbar.className.indexOf('in') > 0) {
// CLOSE
$navbar.className = " ";
// wait until animation end.
setTimeout(function(){
// prevent frequently toggle
if($navbar.className.indexOf('in') < 0) {
$collapse.style.height = "0px"
}
},400)
}else{
// OPEN
$collapse.style.height = "auto"
$navbar.className += " in";
}
}
</script>
<!-- Main Content -->
<!-- Main Content -->
<div class="container">
<div class="row">
<!-- USE SIDEBAR -->
<!-- Post Container -->
<div class="
col-lg-8 col-lg-offset-1
col-md-8 col-md-offset-1
col-sm-12
col-xs-12
post-container
">
<!-- Main Content -->
<div class="post-preview">
<a href="/2019/03/27/kubernetes/edge-computing/">
<h2 class="post-title">
物联网和边缘计算
</h2>
<h3 class="post-subtitle">
</h3>
<div class="post-content-preview">
目标当今许多开发团队的都在关注云原生应用开发, 这其实是有原因的。比如微服务和 devops 等概念,从根本上改变了开发团队构建应用程序的方式。
但还有另一类应用程序, 乍一看并不属于这个世界(IT)。物联网和 Edge 应用程序有很多分布式组件, 一方面,这些组件通常不在同一数据中心基础架构之中。另一方面, 这些应用程序的开发人员将大大受益于云原生环境下中正在开发的概念、基础架构和工具。 ......
</div>
</a>
<p class="post-meta" style="margin: 10px 0;">
Posted by ShenHengheng on
2019-03-27
</p>
<div class="tags">
<a href="/tags/#edge computing" title="edge computing">edge computing</a>
<a href="/tags/#IoT" title="IoT">IoT</a>
</div>
</div>
<hr>
<div class="post-preview">
<a href="/2019/03/20/kubernetes/gpu-device-plugins/">
<h2 class="post-title">
kubernetes GPU分布式集群配置与安装
</h2>
<h3 class="post-subtitle">
</h3>
<div class="post-content-preview">
最近单位刚来一台T630 GPU服务器,我想在日常的深度学习的训练此外,想让它docker容器化并且使其成为 Kubernetes 节点,让深度学习任务的训练在kubernetes中完成。注意:本教程的篇幅较长!
主要分为以下几部分:
环境准备
安装cuda环境并测试
安装docker
安装kubernetes
测试GPU
环境准备
节点
ip
配置
gpu服务器
172.1......
</div>
</a>
<p class="post-meta" style="margin: 10px 0;">
Posted by ShenHengheng on
2019-03-20
</p>
<div class="tags">
<a href="/tags/#Docker" title="Docker">Docker</a>
<a href="/tags/#Kubernetes" title="Kubernetes">Kubernetes</a>
<a href="/tags/#Helm" title="Helm">Helm</a>
<a href="/tags/#Minikube" title="Minikube">Minikube</a>
</div>
</div>
<hr>
<div class="post-preview">
<a href="/2019/03/14/kubernetes/helm-concepts-and-installation/">
<h2 class="post-title">
Helm 的基本概念与安装详解
</h2>
<h3 class="post-subtitle">
</h3>
<div class="post-content-preview">
在Kubernetes集群中运行和管理应用程序的最简单方法是使用Helm。Helm允许使用安装,升级或删除等操作来管理应用程序。
参考Kuberentes Helm 介紹 https://k2r2bai.com/2017/03/25/kubernetes/helm-quickstart/Get Started With Kubernetes Using Minikube https://do......
</div>
</a>
<p class="post-meta" style="margin: 10px 0;">
Posted by ShenHengheng on
2019-03-14
</p>
<div class="tags">
<a href="/tags/#Docker" title="Docker">Docker</a>
<a href="/tags/#Kubernetes" title="Kubernetes">Kubernetes</a>
<a href="/tags/#Helm" title="Helm">Helm</a>
<a href="/tags/#Minikube" title="Minikube">Minikube</a>
</div>
</div>
<hr>
<div class="post-preview">
<a href="/2019/03/13/kubernetes/client-go/pvc-watcher-example-for-client-go/">
<h2 class="post-title">
使用 Kubernetes API 写点东西
</h2>
<h3 class="post-subtitle">
</h3>
<div class="post-content-preview">
本篇文章翻译自博客:https://medium.com/programming-kubernetes/building-stuff-with-the-kubernetes-api-part-4-using-go-b1d0e3c1c899
由于一直向通过一个client-go案例进入kubernetes api的开发,因此我想借这篇文章开启我之后的kubernetes api开发。当然 ku......
</div>
</a>
<p class="post-meta" style="margin: 10px 0;">
Posted by ShenHengheng on
2019-03-13
</p>
<div class="tags">
<a href="/tags/#Kubernetes" title="Kubernetes">Kubernetes</a>
<a href="/tags/#Golang" title="Golang">Golang</a>
<a href="/tags/#client-go" title="client-go">client-go</a>
</div>
</div>
<hr>
<div class="post-preview">
<a href="/2019/03/07/golang/tensorflow/tensorflow-for-golang-on-raspberrypi/">
<h2 class="post-title">
在树莓派上编译安装Go版本的Tensorflow
</h2>
<h3 class="post-subtitle">
</h3>
<div class="post-content-preview">
0. Used Hardwares and SoftwaresAll steps were taken on my Raspberry Pi 3 B model with:
Minimum GPU memory allocated (16MB)
1GB of swap memory
External USB HDD (as root partition)
and software ve......
</div>
</a>
<p class="post-meta" style="margin: 10px 0;">
Posted by ShenHengheng on
2019-03-07
</p>
<div class="tags">
<a href="/tags/#Golang" title="Golang">Golang</a>
<a href="/tags/#RaspberryPi" title="RaspberryPi">RaspberryPi</a>
<a href="/tags/#Tensorflow" title="Tensorflow">Tensorflow</a>
<a href="/tags/#ARM" title="ARM">ARM</a>
</div>
</div>
<hr>
<div class="post-preview">
<a href="/2019/03/05/kubernetes/raspberrypi/deploy-a-microservice-on-k8s/">
<h2 class="post-title">
在树莓派kubernetes集群部署gRPC框架编写的微服务
</h2>
<h3 class="post-subtitle">
</h3>
<div class="post-content-preview">
今天带着大家如何在树莓派kubernetes集群中部署微服务,这次文章和上次文章的区别就是这个涉及两个微服务,如何使两个微服务在kubernetes中实现服务之间的调用可能是与上次的不同之处,这次也使用Google的开源框架gRPC框架来加快微服务的开发.
本次教程需要准备:
一个启动好的树莓派kubernetes集群(参考: 边缘智能-在树莓派上部署kubernetes集群)
prot......
</div>
</a>
<p class="post-meta" style="margin: 10px 0;">
Posted by ShenHengheng on
2019-03-05
</p>
<div class="tags">
<a href="/tags/#Golang" title="Golang">Golang</a>
<a href="/tags/#RaspberryPi" title="RaspberryPi">RaspberryPi</a>
<a href="/tags/#kubernetes" title="kubernetes">kubernetes</a>
<a href="/tags/#Edge computing" title="Edge computing">Edge computing</a>
<a href="/tags/#gRPC" title="gRPC">gRPC</a>
<a href="/tags/#REST" title="REST">REST</a>
</div>
</div>
<hr>
<div class="post-preview">
<a href="/2019/03/01/kubernetes/raspberrypi/simple-microservice-on-pis/">
<h2 class="post-title">
部署微服务到树莓派的kubernetes集群
</h2>
<h3 class="post-subtitle">
</h3>
<div class="post-content-preview">
最近一直在如何将微服务部署在我的边缘机器上(树莓派),通过kubernetes管理。然后就开始了今天的项目成果,为此特别对此总结。
本次的微服务我使用的golang,主要因为golang的天然适合开发云端服务的特性并且golang的轻便,包的管理方便等特点。并且golang的docker镜像稍微小,占用空间小。
准备那么下面就开始吧,本次的环境主要分为两台机器,分别我的本地计算机(这里使用......
</div>
</a>
<p class="post-meta" style="margin: 10px 0;">
Posted by ShenHengheng on
2019-03-01
</p>
<div class="tags">
<a href="/tags/#Kubernetes" title="Kubernetes">Kubernetes</a>
<a href="/tags/#Golang" title="Golang">Golang</a>
<a href="/tags/#Simple Example" title="Simple Example">Simple Example</a>
<a href="/tags/#RaspberryPi" title="RaspberryPi">RaspberryPi</a>
<a href="/tags/#Edge Computing" title="Edge Computing">Edge Computing</a>
<a href="/tags/#Gin" title="Gin">Gin</a>
</div>
</div>
<hr>
<div class="post-preview">
<a href="/2019/02/22/kubernetes/istio-minikube/">
<h2 class="post-title">
使用minikube快速安装istio集群
</h2>
<h3 class="post-subtitle">
</h3>
<div class="post-content-preview">
今天带着大家如何在minikube本地kubernetes测试集群中安装和尝试部署一个服务。
本节课不教:
使用minikube部署多节点的kubernetes集群,详细教程请看:https://www.41sh.cn/?id=53
本节课的目标是:
使用Helm或者手动方式来构建istio集群
使用istio框架来部微服务
服务治理与金丝雀发布等等
启动minikube集群......
</div>
</a>
<p class="post-meta" style="margin: 10px 0;">
Posted by ShenHengheng on
2019-02-22
</p>
<div class="tags">
<a href="/tags/#Kubernetes" title="Kubernetes">Kubernetes</a>
<a href="/tags/#Simple Example" title="Simple Example">Simple Example</a>
<a href="/tags/#istio" title="istio">istio</a>
</div>
</div>
<hr>
<div class="post-preview">
<a href="/2019/02/18/kubernetes/multi-nodes-kubernetes-using-minikube/">
<h2 class="post-title">
使用 Minikube 来部署本地 kubernetes 多节点集群
</h2>
<h3 class="post-subtitle">
</h3>
<div class="post-content-preview">
一般来讲,使用minikube的目的主要用于作为本地单机测试集群,也只能构建单节点的kubernetes集群,本文章参看凯仁兄的方法使得minikube能够借助vitual box软件来实现多节点的部署,其中包括Master/Worker节点的部署与安装,下面主要针对kubernetes的最新版本kubernetes 1.13.2, 网络插件为Calico,主要为了测试Network Pol......
</div>
</a>
<p class="post-meta" style="margin: 10px 0;">
Posted by ShenHengheng on
2019-02-18
</p>
<div class="tags">
<a href="/tags/#Kubernetes" title="Kubernetes">Kubernetes</a>
<a href="/tags/#Dooker" title="Dooker">Dooker</a>
<a href="/tags/#Calico" title="Calico">Calico</a>
</div>
</div>
<hr>
<div class="post-preview">
<a href="/2019/02/15/kubernetes/kubernetes-api-gomod/">
<h2 class="post-title">
在kubernetes API和client-go中使用 Go modules
</h2>
<h3 class="post-subtitle">
</h3>
<div class="post-content-preview">
现如今kubernetes和golang的发展非常之快,Golang的依赖管理也不断的更新换代,从最初的Go dep 到现在go mod。本篇文章主要介绍如何使用go mod来管理项目依赖。
这篇文章不是 Go module 教程,网上有很多关于这个主题的资料。大家可以参考下面的:
https://github.com/golang/go/wiki/Modules
justforfunc ......
</div>
</a>
<p class="post-meta" style="margin: 10px 0;">
Posted by ShenHengheng on
2019-02-15
</p>
<div class="tags">
<a href="/tags/#Golang" title="Golang">Golang</a>
<a href="/tags/#Go modules" title="Go modules">Go modules</a>
<a href="/tags/#client-go" title="client-go">client-go</a>
</div>
</div>
<hr>
<!-- Pager -->
<ul class="pager">
<li class="next">
<a href="/archives/2/">Older Posts →</a>
</li>
</ul>
<!-- 如果开启评论功能 -->
</div>
<!-- Sidebar Container -->
<div class="
col-lg-3 col-lg-offset-0
col-md-3 col-md-offset-0
col-sm-12
col-xs-12
sidebar-container
">
<!-- Short About -->
<section class="visible-md visible-lg">
<h5><a href="/about/">ABOUT ME</a></h5>
<div class="short-about">
<img id="avatar_pic" src="/images/profile.png">
<p>Hi, i'm ShenHengheng(aka ShenHeng),Recently learninng ML/DL/Kubernetes/Edge-Computing technology.</p>
<!-- SNS Link -->
<ul class="list-inline">
<li>
<a href="/atom.xml">
<span class="fa-stack fa-lg">
<i class="fa fa-circle fa-stack-2x"></i>
<i class="fa fa-rss fa-stack-1x fa-inverse"></i>
</span>
</a>
</li>
<li>
<a target="_blank" href="https://twitter.com/shenhengheng">
<span class="fa-stack fa-lg">
<i class="fa fa-circle fa-stack-2x"></i>
<i class="fa fa-twitter fa-stack-1x fa-inverse"></i>
</span>
</a>
</li>
<li>
<a target="_blank" href="https://www.facebook.com/shenhengheng">
<span class="fa-stack fa-lg">
<i class="fa fa-circle fa-stack-2x"></i>
<i class="fa fa-facebook fa-stack-1x fa-inverse"></i>
</span>
</a>
</li>
<li>
<a target="_blank" href="https://github.com/rh01">
<span class="fa-stack fa-lg">
<i class="fa fa-circle fa-stack-2x"></i>
<i class="fa fa-github fa-stack-1x fa-inverse"></i>
</span>
</a>
</li>
<li>
<a target="_blank" href="https://www.linkedin.com/in/heng960509">
<span class="fa-stack fa-lg">
<i class="fa fa-circle fa-stack-2x"></i>
<i class="fa fa-linkedin fa-stack-1x fa-inverse"></i>
</span>
</a>
</li>
</ul>
</div>
</section>
<hr>
<h5>RECENT POSTS
<div class="widget">
<ul>
<li>
<a href="/2019/03/27/kubernetes/edge-computing/">物联网和边缘计算</a>
</li>
<li>
<a href="/2019/03/20/kubernetes/gpu-device-plugins/">kubernetes GPU分布式集群配置与安装</a>
</li>
<li>
<a href="/2019/03/14/kubernetes/helm-concepts-and-installation/">Helm 的基本概念与安装详解</a>
</li>
<li>
<a href="/2019/03/13/kubernetes/client-go/pvc-watcher-example-for-client-go/">使用 Kubernetes API 写点东西</a>
</li>
<li>
<a href="/2019/03/07/golang/tensorflow/tensorflow-for-golang-on-raspberrypi/">在树莓派上编译安装Go版本的Tensorflow</a>
</li>
</ul>
</div>
</h5>
<hr>
<!-- Featured Tags -->
<section>
<!-- no hr -->
<h5><a href="/tags/">FEATURED TAGS</a></h5>
<div class="tags">
<a href="/tags/#Docker" title="Docker" rel="9">Docker</a>
<a href="/tags/#Kubernetes" title="Kubernetes" rel="11">Kubernetes</a>
<a href="/tags/#Golang" title="Golang" rel="8">Golang</a>
</div>
</section>
<hr>
<!-- Friends Blog -->
<h5>FRIENDS</h5>
<ul class="list-inline">
<li><a href="https://hwchiu.com" target="_blank">威猛邱牛的部落格</a></li>
<li><a href="http://www.evanlin.com" target="_blank">吃草爸爸的部落格</a></li>
<li><a href="https://ellis-wu.github.io" target="_blank">跟我一樣可悲的同事部落格</a></li>
<li><a href="https://blog.pichuang.com.tw" target="_blank">小飛機的部落格</a></li>
<li><a href="https://bestsamina.github.io/" target="_blank">超猛姍蓉的部落格</a></li>
<li><a href="https://igene.tw" target="_blank">郭大俠的部落格</a></li>
</ul>
<hr>
</div>
</div>
</div>
<!-- Footer -->
<!-- Footer -->
<footer>
<div class="container">
<div class="row">
<div class="col-lg-8 col-lg-offset-2 col-md-10 col-md-offset-1">
<ul class="list-inline text-center">
<li>
<a href="/atom.xml">
<span class="fa-stack fa-lg">
<i class="fa fa-circle fa-stack-2x"></i>
<i class="fa fa-rss fa-stack-1x fa-inverse"></i>
</span>
</a>
</li>
<li>
<a target="_blank" href="https://twitter.com/shenhengheng">
<span class="fa-stack fa-lg">
<i class="fa fa-circle fa-stack-2x"></i>
<i class="fa fa-twitter fa-stack-1x fa-inverse"></i>
</span>
</a>
</li>
<li>
<a target="_blank" href="https://www.facebook.com/shenhengheng">
<span class="fa-stack fa-lg">
<i class="fa fa-circle fa-stack-2x"></i>
<i class="fa fa-facebook fa-stack-1x fa-inverse"></i>
</span>
</a>
</li>
<li>
<a target="_blank" href="https://github.com/rh01">
<span class="fa-stack fa-lg">
<i class="fa fa-circle fa-stack-2x"></i>
<i class="fa fa-github fa-stack-1x fa-inverse"></i>
</span>
</a>
</li>
<li>
<a target="_blank" href="https://www.linkedin.com/in/heng960509">
<span class="fa-stack fa-lg">
<i class="fa fa-circle fa-stack-2x"></i>
<i class="fa fa-linkedin fa-stack-1x fa-inverse"></i>
</span>
</a>
</li>
</ul>
<p class="copyright text-muted">
Copyright © ShenHengheng 2019
<br>
Theme by <a href="http://huangxuan.me">Hux</a>
<span style="display: inline-block; margin: 0 5px;">
<i class="fa fa-heart"></i>
</span>
re-Ported by <a href="http://beantech.org">BeanTech</a> |
<iframe style="margin-left: 2px; margin-bottom:-5px;" frameborder="0" scrolling="0" width="91px" height="20px" src="https://ghbtns.com/github-btn.html?user=YenYuHsuan&repo=hexo-theme-beantech&type=star&count=true">
</iframe>
</p>
</div>
</div>
</div>
</footer>
<!-- jQuery -->
<script src="/js/jquery.min.js"></script>