-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
988 lines (804 loc) · 51.7 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
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
<!DOCTYPE html>
<html lang="en" data-figures="">
<head> <title>kinnylee</title>
<meta charset='utf-8'>
<meta name="generator" content="Hugo 0.75.0-DEV" />
<meta name = 'viewport' content = 'width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no'>
<meta http-equiv = 'X-UA-Compatible' content = 'IE=edge'>
<script async src="https://www.googletagmanager.com/gtag/js?id=XXXXXXXXXX"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'XXXXXXXXXX');
</script>
<meta property = "og:locale" content = "en_US" />
<meta property="og:type" content="website">
<meta name="description" content="">
<meta name = "twitter:card" content = "summary" />
<meta name = "twitter:creator" content = "@janedoe">
<meta name = "twitter:title" content = "" />
<meta property = "og:url" content = "https://kinnylee.github.io/" />
<meta property = "og:title" content = "" />
<meta property = "og:description" content = "" />
<meta property = "og:image" content = "https://kinnylee.github.io/images/thumbnail.png" />
<link rel='apple-touch-icon' sizes='180x180' href='https://kinnylee.github.io/icons/apple-touch-icon.png'>
<link rel='icon' type='image/png' sizes='32x32' href='https://kinnylee.github.io/icons/favicon-32x32.png'>
<link rel='icon' type='image/png' sizes='16x16' href='https://kinnylee.github.io/icons/favicon-16x16.png'>
<link rel='manifest' href='https://kinnylee.github.io/icons/site.webmanifest'>
<link rel="mask-icon" href= 'https://kinnylee.github.io/safari-pinned-tab.svg' color="#002538">
<meta name="msapplication-TileColor" content="#002538">
<meta name="theme-color" content="#002538">
<link rel='canonical' href='https://kinnylee.github.io/'>
<script async src="//busuanzi.ibruce.info/busuanzi/2.3/busuanzi.pure.mini.js"></script>
<link rel="preload" href="https://kinnylee.github.io/css/styles.8bc680de0775aea5cf0aed97e851ca175a505e7f48b18035e53401fb191c70c5c3e1916800a681af4e7d6211169c415c09fa178c63b103df859c63229acfcc81.css" integrity = "sha512-i8aA3gd1rqXPCu2X6FHKF1pQXn9IsYA15TQB+xkccMXD4ZFoAKaBr059YhEWnEFcCfoXjGOxA9+FnGMims/MgQ==" as="style" crossorigin="anonymous">
<link rel="preload" href="https://kinnylee.github.io/js/bundle.cc924be6a21a1d8e5a2606ace65fbbd1955525709f7db3cbbe7c2cf8b7b7132d0c6bc812aa1596f79f40d9c6bf506085c118bbf5e5c3e2c90483b950ec1e6e94.js" as="script" integrity=
"sha512-zJJL5qIaHY5aJgas5l+70ZVVJXCffbPLvnws+Le3Ey0Ma8gSqhWW959A2ca/UGCFwRi79eXD4skEg7lQ7B5ulA==" crossorigin="anonymous">
<link rel="stylesheet" type="text/css" href="https://kinnylee.github.io/css/styles.8bc680de0775aea5cf0aed97e851ca175a505e7f48b18035e53401fb191c70c5c3e1916800a681af4e7d6211169c415c09fa178c63b103df859c63229acfcc81.css" integrity="sha512-i8aA3gd1rqXPCu2X6FHKF1pQXn9IsYA15TQB+xkccMXD4ZFoAKaBr059YhEWnEFcCfoXjGOxA9+FnGMims/MgQ==" crossorigin="anonymous">
</head>
<body data-code="100" data-lines="true" id="documentTop">
<header class = 'nav_header' >
<nav class = 'nav'>
<a href='https://kinnylee.github.io/' class = 'nav_brand nav_item'>
<img src="https://kinnylee.github.io/logos/logo.png" class="logo">
<div class = 'nav_close'>
<div>
<svg class="icon">
<use xlink:href="#open-menu"></use>
</svg>
<svg class="icon">
<use xlink:href="#closeme"></use>
</svg>
</div>
</div>
</a>
<div class = 'nav_body nav_body_left'>
<div class = 'nav_parent nav_active'>
<a href = 'https://kinnylee.github.io/' class = 'nav_item'>首页 </a>
</div>
<div class = 'nav_parent'>
<a href = 'https://kinnylee.github.io/' class = 'nav_item'>编程语言 <img src= https://kinnylee.github.io/icons/caret-icon.svg alt="icon" class="nav_icon"></a>
<div class = 'nav_sub'>
<a href = 'https://kinnylee.github.io/categories/go/' class = 'nav_child nav_item'>Go</a>
<a href = 'https://kinnylee.github.io/categories/java' class = 'nav_child nav_item'>Java</a>
<a href = 'https://kinnylee.github.io/categories/c++' class = 'nav_child nav_item'>C++</a>
<a href = 'https://kinnylee.github.io/categories/python' class = 'nav_child nav_item'>Python</a>
</div>
</div>
<div class = 'nav_parent'>
<a href = 'https://kinnylee.github.io/' class = 'nav_item'>云原生 <img src= https://kinnylee.github.io/icons/caret-icon.svg alt="icon" class="nav_icon"></a>
<div class = 'nav_sub'>
<a href = 'https://kinnylee.github.io/categories/k8s' class = 'nav_child nav_item'>k8s</a>
<a href = 'https://kinnylee.github.io/categories/prometheus' class = 'nav_child nav_item'>prometheus</a>
</div>
</div>
<div class = 'nav_parent'>
<a href = 'https://kinnylee.github.io/' class = 'nav_item'>中间件 <img src= https://kinnylee.github.io/icons/caret-icon.svg alt="icon" class="nav_icon"></a>
<div class = 'nav_sub'>
<a href = 'https://kinnylee.github.io/categories/mysql' class = 'nav_child nav_item'>Mysql</a>
<a href = 'https://kinnylee.github.io/categories/redis' class = 'nav_child nav_item'>Redis</a>
<a href = 'https://kinnylee.github.io/categories/rocketmq' class = 'nav_child nav_item'>RocketMQ</a>
</div>
</div>
<div class = 'nav_parent'>
<a href = 'https://kinnylee.github.io/' class = 'nav_item'>源码阅读 <img src= https://kinnylee.github.io/icons/caret-icon.svg alt="icon" class="nav_icon"></a>
<div class = 'nav_sub'>
<a href = 'https://kinnylee.github.io/tags/breakpad' class = 'nav_child nav_item'>breakpad</a>
<a href = 'https://kinnylee.github.io/tags/redis' class = 'nav_child nav_item'>redis</a>
<a href = 'https://kinnylee.github.io/tags/go' class = 'nav_child nav_item'>go</a>
<a href = 'https://kinnylee.github.io/tags/k8s' class = 'nav_child nav_item'>k8s</a>
<a href = 'https://kinnylee.github.io/tags/linux' class = 'nav_child nav_item'>linux</a>
</div>
</div>
<div class = 'nav_parent'>
<a href = 'https://kinnylee.github.io/' class = 'nav_item'>技术 <img src= https://kinnylee.github.io/icons/caret-icon.svg alt="icon" class="nav_icon"></a>
<div class = 'nav_sub'>
<a href = 'https://kinnylee.github.io/categories/computer' class = 'nav_child nav_item'>计算机原理</a>
<a href = 'https://kinnylee.github.io/categories/ansible' class = 'nav_child nav_item'>Ansible</a>
<a href = 'https://kinnylee.github.io/categories/docker' class = 'nav_child nav_item'>Docker</a>
<a href = 'https://kinnylee.github.io/categories/linux' class = 'nav_child nav_item'>Linux内核</a>
<a href = 'https://kinnylee.github.io/categories/%E6%9C%BA%E5%99%A8%E5%AD%A6%E4%B9%A0' class = 'nav_child nav_item'>机器学习</a>
</div>
</div>
<div class = 'nav_parent'>
<a href = 'https://kinnylee.github.io/about/' class = 'nav_item'>关于我 </a>
</div>
<div class='follow'>
<a href='https://github.com/kinnylee'>
<svg class="icon">
<use xlink:href="#github"></use>
</svg>
</a>
<a href='https://juejin.im/user/3878732754069272'>
<svg class="icon">
<use xlink:href="#%e6%8e%98%e9%87%91"></use>
</svg>
</a>
<div class = 'color_mode'>
<input type = 'checkbox' class = 'color_choice' id = 'mode'>
</div>
</div>
</div>
</nav>
</header>
<main>
<div class='grid-inverse wrap content'>
<ul class='posts' id = 'posts'>
<li class = 'post_item'>
<div class = 'excerpt'>
<div class = 'excerpt_header'>
<h3 class = 'post_link'>
<a href='https://kinnylee.github.io/post/%E4%BA%91%E5%8E%9F%E7%94%9F/helm/helm%E6%BA%90%E7%A0%81%E5%88%86%E6%9E%90-wait/'>helm源码分析-storage</a>
</h3>
<div class = 'post_meta'>
<svg class="icon">
<use xlink:href="#calendar"></use>
</svg>
<span class="post_date">
Mar 24, 2021</span>
<a href = 'https://kinnylee.github.io/tags/%E6%BA%90%E7%A0%81%E5%88%86%E6%9E%90' class = 'post_tag button button_translucent'>源码分析
</a>
<a href = 'https://kinnylee.github.io/tags/helm' class = 'post_tag button button_translucent'>helm
</a>
</div>
</div>
<div class = 'excerpt_footer partition'>
<div class = 'excerpt_thumbnail'>
<img src = 'https://kinnylee.github.io/images/helm.png'>
</div>
<div>
<p class = 'pale'>helm源码分析-wait 概述 wait模块主要用于安装</p>
<a href='https://kinnylee.github.io/post/%E4%BA%91%E5%8E%9F%E7%94%9F/helm/helm%E6%BA%90%E7%A0%81%E5%88%86%E6%9E%90-wait/' class='excerpt_more button'>阅读原文</a>
</div>
</div>
</div>
</li>
<li class = 'post_item'>
<div class = 'excerpt'>
<div class = 'excerpt_header'>
<h3 class = 'post_link'>
<a href='https://kinnylee.github.io/post/%E4%BA%91%E5%8E%9F%E7%94%9F/argocd/argocd%E6%BA%90%E7%A0%81%E5%88%86%E6%9E%90-%E5%9F%BA%E6%9C%AC%E4%BB%8B%E7%BB%8D/'>argocd源码分析-基本介绍</a>
</h3>
<div class = 'post_meta'>
<svg class="icon">
<use xlink:href="#calendar"></use>
</svg>
<span class="post_date">
Mar 21, 2021</span>
<a href = 'https://kinnylee.github.io/tags/%E6%BA%90%E7%A0%81%E5%88%86%E6%9E%90' class = 'post_tag button button_translucent'>源码分析
</a>
<a href = 'https://kinnylee.github.io/tags/argocd' class = 'post_tag button button_translucent'>argocd
</a>
</div>
</div>
<div class = 'excerpt_footer partition'>
<div class = 'excerpt_thumbnail'>
<img src = 'https://kinnylee.github.io/images/argocd.png'>
</div>
<div>
<p class = 'pale'>helm源码分析-基本介绍 概述 argocd是一个基于k8s的声明式的、GitOps工具 为什么应该使用argocd 应用程序定义、配置、环境应该</p>
<a href='https://kinnylee.github.io/post/%E4%BA%91%E5%8E%9F%E7%94%9F/argocd/argocd%E6%BA%90%E7%A0%81%E5%88%86%E6%9E%90-%E5%9F%BA%E6%9C%AC%E4%BB%8B%E7%BB%8D/' class='excerpt_more button'>阅读原文</a>
</div>
</div>
</div>
</li>
<li class = 'post_item'>
<div class = 'excerpt'>
<div class = 'excerpt_header'>
<h3 class = 'post_link'>
<a href='https://kinnylee.github.io/post/%E4%BA%91%E5%8E%9F%E7%94%9F/helm/helm%E6%BA%90%E7%A0%81%E5%88%86%E6%9E%90-downloader/'>helm源码分析-downloader</a>
</h3>
<div class = 'post_meta'>
<svg class="icon">
<use xlink:href="#calendar"></use>
</svg>
<span class="post_date">
Mar 21, 2021</span>
<a href = 'https://kinnylee.github.io/tags/%E6%BA%90%E7%A0%81%E5%88%86%E6%9E%90' class = 'post_tag button button_translucent'>源码分析
</a>
<a href = 'https://kinnylee.github.io/tags/helm' class = 'post_tag button button_translucent'>helm
</a>
</div>
</div>
<div class = 'excerpt_footer partition'>
<div class = 'excerpt_thumbnail'>
<img src = 'https://kinnylee.github.io/images/helm.png'>
</div>
<div>
<p class = 'pale'>helm源码分析-downloader downloader模块主要负责 目录结构 源码位置:pkg/downloader 1➜ helm git:(041ce5a2) ✗ tree pkg/downloader 2pkg/downloader 3├──</p>
<a href='https://kinnylee.github.io/post/%E4%BA%91%E5%8E%9F%E7%94%9F/helm/helm%E6%BA%90%E7%A0%81%E5%88%86%E6%9E%90-downloader/' class='excerpt_more button'>阅读原文</a>
</div>
</div>
</div>
</li>
<li class = 'post_item'>
<div class = 'excerpt'>
<div class = 'excerpt_header'>
<h3 class = 'post_link'>
<a href='https://kinnylee.github.io/post/%E4%BA%91%E5%8E%9F%E7%94%9F/helm/helm%E6%BA%90%E7%A0%81%E5%88%86%E6%9E%90-install%E5%91%BD%E4%BB%A4/'>helm源码分析-install命令</a>
</h3>
<div class = 'post_meta'>
<svg class="icon">
<use xlink:href="#calendar"></use>
</svg>
<span class="post_date">
Mar 21, 2021</span>
<a href = 'https://kinnylee.github.io/tags/%E6%BA%90%E7%A0%81%E5%88%86%E6%9E%90' class = 'post_tag button button_translucent'>源码分析
</a>
<a href = 'https://kinnylee.github.io/tags/helm' class = 'post_tag button button_translucent'>helm
</a>
</div>
</div>
<div class = 'excerpt_footer partition'>
<div class = 'excerpt_thumbnail'>
<img src = 'https://kinnylee.github.io/images/helm.png'>
</div>
<div>
<p class = 'pale'>helm源码分析-install命令 helm install命令的代码入口:cmd/helm/install.go 使用介绍 第一个参数为部署后的应用名</p>
<a href='https://kinnylee.github.io/post/%E4%BA%91%E5%8E%9F%E7%94%9F/helm/helm%E6%BA%90%E7%A0%81%E5%88%86%E6%9E%90-install%E5%91%BD%E4%BB%A4/' class='excerpt_more button'>阅读原文</a>
</div>
</div>
</div>
</li>
<li class = 'post_item'>
<div class = 'excerpt'>
<div class = 'excerpt_header'>
<h3 class = 'post_link'>
<a href='https://kinnylee.github.io/post/%E4%BA%91%E5%8E%9F%E7%94%9F/helm/helm%E6%BA%90%E7%A0%81%E5%88%86%E6%9E%90-list%E5%91%BD%E4%BB%A4/'>helm源码分析-list命令</a>
</h3>
<div class = 'post_meta'>
<svg class="icon">
<use xlink:href="#calendar"></use>
</svg>
<span class="post_date">
Mar 21, 2021</span>
<a href = 'https://kinnylee.github.io/tags/%E6%BA%90%E7%A0%81%E5%88%86%E6%9E%90' class = 'post_tag button button_translucent'>源码分析
</a>
<a href = 'https://kinnylee.github.io/tags/helm' class = 'post_tag button button_translucent'>helm
</a>
</div>
</div>
<div class = 'excerpt_footer partition'>
<div class = 'excerpt_thumbnail'>
<img src = 'https://kinnylee.github.io/images/helm.png'>
</div>
<div>
<p class = 'pale'>helm源码分析-list命令 helm list 主要用于查看已经安装的release列表 源码位置:cmd/helm/list.go 实现逻辑 helm list 的代码比较简</p>
<a href='https://kinnylee.github.io/post/%E4%BA%91%E5%8E%9F%E7%94%9F/helm/helm%E6%BA%90%E7%A0%81%E5%88%86%E6%9E%90-list%E5%91%BD%E4%BB%A4/' class='excerpt_more button'>阅读原文</a>
</div>
</div>
</div>
</li>
<li class = 'post_item'>
<div class = 'excerpt'>
<div class = 'excerpt_header'>
<h3 class = 'post_link'>
<a href='https://kinnylee.github.io/post/%E4%BA%91%E5%8E%9F%E7%94%9F/helm/helm%E6%BA%90%E7%A0%81%E5%88%86%E6%9E%90-repo%E5%91%BD%E4%BB%A4/'>helm源码分析-repo命令</a>
</h3>
<div class = 'post_meta'>
<svg class="icon">
<use xlink:href="#calendar"></use>
</svg>
<span class="post_date">
Mar 21, 2021</span>
<a href = 'https://kinnylee.github.io/tags/%E6%BA%90%E7%A0%81%E5%88%86%E6%9E%90' class = 'post_tag button button_translucent'>源码分析
</a>
<a href = 'https://kinnylee.github.io/tags/helm' class = 'post_tag button button_translucent'>helm
</a>
</div>
</div>
<div class = 'excerpt_footer partition'>
<div class = 'excerpt_thumbnail'>
<img src = 'https://kinnylee.github.io/images/helm.png'>
</div>
<div>
<p class = 'pale'>helm源码分析-repo命令 helm repo 主要处理仓库相关信息,包括的所有命令和代码对应关系如下: helm repo 命令源码位置:cmd/helm/repo.go</p>
<a href='https://kinnylee.github.io/post/%E4%BA%91%E5%8E%9F%E7%94%9F/helm/helm%E6%BA%90%E7%A0%81%E5%88%86%E6%9E%90-repo%E5%91%BD%E4%BB%A4/' class='excerpt_more button'>阅读原文</a>
</div>
</div>
</div>
</li>
<li class = 'post_item'>
<div class = 'excerpt'>
<div class = 'excerpt_header'>
<h3 class = 'post_link'>
<a href='https://kinnylee.github.io/post/%E4%BA%91%E5%8E%9F%E7%94%9F/helm/helm%E6%BA%90%E7%A0%81%E5%88%86%E6%9E%90-storage/'>helm源码分析-storage</a>
</h3>
<div class = 'post_meta'>
<svg class="icon">
<use xlink:href="#calendar"></use>
</svg>
<span class="post_date">
Mar 21, 2021</span>
<a href = 'https://kinnylee.github.io/tags/%E6%BA%90%E7%A0%81%E5%88%86%E6%9E%90' class = 'post_tag button button_translucent'>源码分析
</a>
<a href = 'https://kinnylee.github.io/tags/helm' class = 'post_tag button button_translucent'>helm
</a>
</div>
</div>
<div class = 'excerpt_footer partition'>
<div class = 'excerpt_thumbnail'>
<img src = 'https://kinnylee.github.io/images/helm.png'>
</div>
<div>
<p class = 'pale'>helm源码分析-storage storage模块主要用于管理和操作发布的release信息,当我们通过`helm list、helm hist</p>
<a href='https://kinnylee.github.io/post/%E4%BA%91%E5%8E%9F%E7%94%9F/helm/helm%E6%BA%90%E7%A0%81%E5%88%86%E6%9E%90-storage/' class='excerpt_more button'>阅读原文</a>
</div>
</div>
</div>
</li>
<li class = 'post_item'>
<div class = 'excerpt'>
<div class = 'excerpt_header'>
<h3 class = 'post_link'>
<a href='https://kinnylee.github.io/post/%E4%BA%91%E5%8E%9F%E7%94%9F/helm/helm%E6%BA%90%E7%A0%81%E5%88%86%E6%9E%90-%E5%9F%BA%E6%9C%AC%E4%BB%8B%E7%BB%8D/'>helm源码分析-基本介绍</a>
</h3>
<div class = 'post_meta'>
<svg class="icon">
<use xlink:href="#calendar"></use>
</svg>
<span class="post_date">
Mar 20, 2021</span>
<a href = 'https://kinnylee.github.io/tags/%E6%BA%90%E7%A0%81%E5%88%86%E6%9E%90' class = 'post_tag button button_translucent'>源码分析
</a>
<a href = 'https://kinnylee.github.io/tags/helm' class = 'post_tag button button_translucent'>helm
</a>
</div>
</div>
<div class = 'excerpt_footer partition'>
<div class = 'excerpt_thumbnail'>
<img src = 'https://kinnylee.github.io/images/helm.png'>
</div>
<div>
<p class = 'pale'>helm源码分析-基本介绍 概述 官网介绍 Helm是k8s包管理器,是查找、分享和使用软件构建k8s的最优方式 Helm 帮助您管理 Kubernetes 应用——Helm 图表</p>
<a href='https://kinnylee.github.io/post/%E4%BA%91%E5%8E%9F%E7%94%9F/helm/helm%E6%BA%90%E7%A0%81%E5%88%86%E6%9E%90-%E5%9F%BA%E6%9C%AC%E4%BB%8B%E7%BB%8D/' class='excerpt_more button'>阅读原文</a>
</div>
</div>
</div>
</li>
<li class = 'post_item'>
<div class = 'excerpt'>
<div class = 'excerpt_header'>
<h3 class = 'post_link'>
<a href='https://kinnylee.github.io/post/%E4%BA%91%E5%8E%9F%E7%94%9F/helm/helm%E6%BA%90%E7%A0%81%E5%88%86%E6%9E%90-%E6%A0%B8%E5%BF%83%E6%95%B0%E6%8D%AE%E7%BB%93%E6%9E%84/'>helm源码分析-核心数据结构</a>
</h3>
<div class = 'post_meta'>
<svg class="icon">
<use xlink:href="#calendar"></use>
</svg>
<span class="post_date">
Mar 20, 2021</span>
<a href = 'https://kinnylee.github.io/tags/%E6%BA%90%E7%A0%81%E5%88%86%E6%9E%90' class = 'post_tag button button_translucent'>源码分析
</a>
<a href = 'https://kinnylee.github.io/tags/helm' class = 'post_tag button button_translucent'>helm
</a>
</div>
</div>
<div class = 'excerpt_footer partition'>
<div class = 'excerpt_thumbnail'>
<img src = 'https://kinnylee.github.io/images/helm.png'>
</div>
<div>
<p class = 'pale'>helm源码分析-核心数据结构 概述 包(Chart):表示一个k8s资源包,包括:元信息、默认配置、可选参数、依赖包 实例(Release):表</p>
<a href='https://kinnylee.github.io/post/%E4%BA%91%E5%8E%9F%E7%94%9F/helm/helm%E6%BA%90%E7%A0%81%E5%88%86%E6%9E%90-%E6%A0%B8%E5%BF%83%E6%95%B0%E6%8D%AE%E7%BB%93%E6%9E%84/' class='excerpt_more button'>阅读原文</a>
</div>
</div>
</div>
</li>
<li class = 'post_item'>
<div class = 'excerpt'>
<div class = 'excerpt_header'>
<h3 class = 'post_link'>
<a href='https://kinnylee.github.io/post/%E4%BA%91%E5%8E%9F%E7%94%9F/kubeapps/kubeapps%E6%BA%90%E7%A0%81%E5%88%86%E6%9E%90-kubeops/'>kubeapps源码分析-kubeops</a>
</h3>
<div class = 'post_meta'>
<svg class="icon">
<use xlink:href="#calendar"></use>
</svg>
<span class="post_date">
Mar 19, 2021</span>
<a href = 'https://kinnylee.github.io/tags/%E6%BA%90%E7%A0%81%E5%88%86%E6%9E%90' class = 'post_tag button button_translucent'>源码分析
</a>
<a href = 'https://kinnylee.github.io/tags/kubeapps' class = 'post_tag button button_translucent'>kubeapps
</a>
</div>
</div>
<div class = 'excerpt_footer partition'>
<div class = 'excerpt_thumbnail'>
<img src = 'https://kinnylee.github.io/images/kubeapps.png'>
</div>
<div>
<p class = 'pale'>kubeapps源码分析-kubeops 概述 这个组件主要是调用helm sdk执行相关release操作,相当于将helm的install、u</p>
<a href='https://kinnylee.github.io/post/%E4%BA%91%E5%8E%9F%E7%94%9F/kubeapps/kubeapps%E6%BA%90%E7%A0%81%E5%88%86%E6%9E%90-kubeops/' class='excerpt_more button'>阅读原文</a>
</div>
</div>
</div>
</li>
<li>
<ul class="pagination">
<li class="page-item">
<a href="/" class="page-link" aria-label="First"><span aria-hidden="true">««</span></a>
</li>
<li class="page-item disabled">
<a class="page-link" aria-label="Previous"><span aria-hidden="true">«</span></a>
</li>
<li class="page-item active">
<a class="page-link" href="/">1</a>
</li>
<li class="page-item">
<a class="page-link" href="/page/2/">2</a>
</li>
<li class="page-item">
<a class="page-link" href="/page/3/">3</a>
</li>
<li class="page-item disabled">
<span aria-hidden="true"> … </span>
</li>
<li class="page-item">
<a class="page-link" href="/page/11/">11</a>
</li>
<li class="page-item">
<a href="/page/2/" class="page-link" aria-label="Next"><span aria-hidden="true">»</span></a>
</li>
<li class="page-item">
<a href="/page/11/" class="page-link" aria-label="Last"><span aria-hidden="true">»»</span></a>
</li>
</ul>
</li>
</ul>
<aside class="sidebar">
<section class="sidebar_inner">
<h2>kinnylee</h2>
<div>
码农, 技术爱好者, 喜欢研究源码、关注新技术, 篮球爱好者
</div>
<a href = 'https://kinnylee.github.io/about/' class="button mt-1" role="button">查看更多</a>
<h2 class="mt-4">Featured Posts</h2>
<ul>
<li>
<a href="https://kinnylee.github.io/post/go/%E5%9F%BA%E7%A1%80%E5%85%A5%E9%97%A8/%E5%9B%BE%E8%A7%A3golang-channel%E6%BA%90%E7%A0%81/" class="nav-link">图解Golang channel源码</a>
</li>
<li>
<a href="https://kinnylee.github.io/post/go/%E5%9F%BA%E7%A1%80%E5%85%A5%E9%97%A8/go%E8%A7%A6%E5%8F%91%E8%B0%83%E5%BA%A6%E6%9C%BA%E5%88%B6/" class="nav-link">go触发调度机制</a>
</li>
<li>
<a href="https://kinnylee.github.io/post/go/%E5%9F%BA%E7%A1%80%E5%85%A5%E9%97%A8/go%E8%BF%9B%E7%A8%8B%E5%90%AF%E5%8A%A8%E5%88%86%E6%9E%90/" class="nav-link">go进程启动分析</a>
</li>
<li>
<a href="https://kinnylee.github.io/post/go/%E5%9F%BA%E7%A1%80%E5%85%A5%E9%97%A8/golang%E8%B0%83%E5%BA%A6%E6%BA%90%E7%A0%81%E5%88%86%E6%9E%90/" class="nav-link">go协程原理</a>
</li>
<li>
<a href="https://kinnylee.github.io/post/breakpad/dmp%E6%96%87%E4%BB%B6%E5%88%86%E6%9E%90%E4%B8%89-%E6%A0%88%E5%B8%A7%E7%BB%93%E6%9E%84%E5%92%8C%E5%8E%9F%E7%90%86/" class="nav-link">dmp文件分析(三)- 栈帧结构和原理</a>
</li>
<li>
<a href="https://kinnylee.github.io/post/breakpad/dmp%E6%96%87%E4%BB%B6%E5%88%86%E6%9E%90%E4%BA%8C-symbol/" class="nav-link">dmp文件分析(二)- symbol</a>
</li>
<li>
<a href="https://kinnylee.github.io/post/%E4%BA%91%E5%8E%9F%E7%94%9F/k8s/%E5%9F%BA%E6%9C%AC%E5%8E%9F%E7%90%86/k8s%E5%9F%BA%E6%9C%AC%E5%85%A5%E9%97%A8/" class="nav-link">K8s基本入门</a>
</li>
</ul>
<h2 class="mt-4">Recent Posts</h2>
<ul class="flex-column">
<li>
<a href="https://kinnylee.github.io/post/%E4%BA%91%E5%8E%9F%E7%94%9F/helm/helm%E6%BA%90%E7%A0%81%E5%88%86%E6%9E%90-wait/" class="nav-link">helm源码分析-storage</a>
</li>
<li>
<a href="https://kinnylee.github.io/post/%E4%BA%91%E5%8E%9F%E7%94%9F/argocd/argocd%E6%BA%90%E7%A0%81%E5%88%86%E6%9E%90-%E5%9F%BA%E6%9C%AC%E4%BB%8B%E7%BB%8D/" class="nav-link">argocd源码分析-基本介绍</a>
</li>
<li>
<a href="https://kinnylee.github.io/post/%E4%BA%91%E5%8E%9F%E7%94%9F/helm/helm%E6%BA%90%E7%A0%81%E5%88%86%E6%9E%90-downloader/" class="nav-link">helm源码分析-downloader</a>
</li>
<li>
<a href="https://kinnylee.github.io/post/%E4%BA%91%E5%8E%9F%E7%94%9F/helm/helm%E6%BA%90%E7%A0%81%E5%88%86%E6%9E%90-install%E5%91%BD%E4%BB%A4/" class="nav-link">helm源码分析-install命令</a>
</li>
<li>
<a href="https://kinnylee.github.io/post/%E4%BA%91%E5%8E%9F%E7%94%9F/helm/helm%E6%BA%90%E7%A0%81%E5%88%86%E6%9E%90-list%E5%91%BD%E4%BB%A4/" class="nav-link">helm源码分析-list命令</a>
</li>
<li>
<a href="https://kinnylee.github.io/post/%E4%BA%91%E5%8E%9F%E7%94%9F/helm/helm%E6%BA%90%E7%A0%81%E5%88%86%E6%9E%90-repo%E5%91%BD%E4%BB%A4/" class="nav-link">helm源码分析-repo命令</a>
</li>
<li>
<a href="https://kinnylee.github.io/post/%E4%BA%91%E5%8E%9F%E7%94%9F/helm/helm%E6%BA%90%E7%A0%81%E5%88%86%E6%9E%90-storage/" class="nav-link">helm源码分析-storage</a>
</li>
<li>
<a href="https://kinnylee.github.io/post/%E4%BA%91%E5%8E%9F%E7%94%9F/helm/helm%E6%BA%90%E7%A0%81%E5%88%86%E6%9E%90-%E5%9F%BA%E6%9C%AC%E4%BB%8B%E7%BB%8D/" class="nav-link">helm源码分析-基本介绍</a>
</li>
</ul>
<div>
<h2 class="mt-4 taxonomy" id="categories-section">categories</h2>
<nav class="tags_nav">
<a href='https://kinnylee.github.io/categories/%E4%BA%91%E5%8E%9F%E7%94%9F/' class=" post_tag button button_translucent">
云原生
<span class='button_tally'>14</span>
</a>
<a href='https://kinnylee.github.io/categories/k8s/' class=" post_tag button button_translucent">
K8S
<span class='button_tally'>13</span>
</a>
<a href='https://kinnylee.github.io/categories/go/' class=" post_tag button button_translucent">
GO
<span class='button_tally'>10</span>
</a>
<a href='https://kinnylee.github.io/categories/java/' class=" post_tag button button_translucent">
JAVA
<span class='button_tally'>6</span>
</a>
<a href='https://kinnylee.github.io/categories/%E6%BA%90%E7%A0%81%E5%88%86%E6%9E%90/' class=" post_tag button button_translucent">
源码分析
<span class='button_tally'>6</span>
</a>
<a href='https://kinnylee.github.io/categories/go%E7%AC%AC%E4%B8%89%E6%96%B9%E5%BA%93/' class=" post_tag button button_translucent">
GO第三方库
<span class='button_tally'>4</span>
</a>
<a href='https://kinnylee.github.io/categories/c++/' class=" post_tag button button_translucent">
C++
<span class='button_tally'>3</span>
</a>
<a href='https://kinnylee.github.io/categories/mysql/' class=" post_tag button button_translucent">
MYSQL
<span class='button_tally'>2</span>
</a>
<a href='https://kinnylee.github.io/categories/ansible/' class=" post_tag button button_translucent">
ANSIBLE
<span class='button_tally'>1</span>
</a>
<a href='https://kinnylee.github.io/categories/docker/' class=" post_tag button button_translucent">
DOCKER
<span class='button_tally'>1</span>
</a>
<a href='https://kinnylee.github.io/categories/mongodb/' class=" post_tag button button_translucent">
MONGODB
<span class='button_tally'>1</span>
</a>
<a href='https://kinnylee.github.io/categories/python/' class=" post_tag button button_translucent">
PYTHON
<span class='button_tally'>1</span>
</a>
<a href='https://kinnylee.github.io/categories/redis/' class=" post_tag button button_translucent">
REDIS
<span class='button_tally'>1</span>
</a>
<a href='https://kinnylee.github.io/categories/%E5%8D%9A%E5%AE%A2%E6%90%AD%E5%BB%BA/' class=" post_tag button button_translucent">
博客搭建
<span class='button_tally'>1</span>
</a>
<br>
<div class="post_tags_toggle button">All categories</div>
<div class="post_tags">
<div class="tags_list">
<a href='https://kinnylee.github.io/categories/ansible/' class=" post_tag button button_translucent" data-position=1>ANSIBLE<span class='button_tally'>1</span>
</a>
<a href='https://kinnylee.github.io/categories/c++/' class=" post_tag button button_translucent" data-position=3>C++<span class='button_tally'>3</span>
</a>
<a href='https://kinnylee.github.io/categories/docker/' class=" post_tag button button_translucent" data-position=1>DOCKER<span class='button_tally'>1</span>
</a>
<a href='https://kinnylee.github.io/categories/go/' class=" post_tag button button_translucent" data-position=10>GO<span class='button_tally'>10</span>
</a>
<a href='https://kinnylee.github.io/categories/go%E7%AC%AC%E4%B8%89%E6%96%B9%E5%BA%93/' class=" post_tag button button_translucent" data-position=4>GO第三方库<span class='button_tally'>4</span>
</a>
<a href='https://kinnylee.github.io/categories/java/' class=" post_tag button button_translucent" data-position=6>JAVA<span class='button_tally'>6</span>
</a>
<a href='https://kinnylee.github.io/categories/k8s/' class=" post_tag button button_translucent" data-position=13>K8S<span class='button_tally'>13</span>
</a>
<a href='https://kinnylee.github.io/categories/mongodb/' class=" post_tag button button_translucent" data-position=1>MONGODB<span class='button_tally'>1</span>
</a>
<a href='https://kinnylee.github.io/categories/mysql/' class=" post_tag button button_translucent" data-position=2>MYSQL<span class='button_tally'>2</span>
</a>
<a href='https://kinnylee.github.io/categories/python/' class=" post_tag button button_translucent" data-position=1>PYTHON<span class='button_tally'>1</span>
</a>
<a href='https://kinnylee.github.io/categories/redis/' class=" post_tag button button_translucent" data-position=1>REDIS<span class='button_tally'>1</span>
</a>
<a href='https://kinnylee.github.io/categories/%E4%BA%91%E5%8E%9F%E7%94%9F/' class=" post_tag button button_translucent" data-position=14>云原生<span class='button_tally'>14</span>
</a>
<a href='https://kinnylee.github.io/categories/%E5%8D%9A%E5%AE%A2%E6%90%AD%E5%BB%BA/' class=" post_tag button button_translucent" data-position=1>博客搭建<span class='button_tally'>1</span>
</a>
<a href='https://kinnylee.github.io/categories/%E6%BA%90%E7%A0%81%E5%88%86%E6%9E%90/' class=" post_tag button button_translucent" data-position=6>源码分析<span class='button_tally'>6</span>
</a>
<a href='https://kinnylee.github.io/categories/%E8%AE%A1%E7%AE%97%E6%9C%BA%E5%8E%9F%E7%90%86/' class=" post_tag button button_translucent" data-position=1>计算机原理<span class='button_tally'>1</span>
</a>
<div class="tags_sort"><span title="sort alphabetically">[A~Z]</span><span title="sort by count">[0~9]</span>
</div>
<span class="tags_hide"><svg class="icon">
<use xlink:href="#closeme"></use>
</svg></span>
</div>
</div>
</nav>
</div>
<div>
<h2 class="mt-4 taxonomy" id="tags-section">tags</h2>
<nav class="tags_nav">
<a href='https://kinnylee.github.io/tags/%E6%BA%90%E7%A0%81%E5%88%86%E6%9E%90/' class=" post_tag button button_translucent">
源码分析
<span class='button_tally'>36</span>
</a>
<a href='https://kinnylee.github.io/tags/breakpad/' class=" post_tag button button_translucent">
BREAKPAD
<span class='button_tally'>11</span>
</a>
<a href='https://kinnylee.github.io/tags/k8s/' class=" post_tag button button_translucent">
K8S
<span class='button_tally'>10</span>
</a>
<a href='https://kinnylee.github.io/tags/go/' class=" post_tag button button_translucent">
GO
<span class='button_tally'>9</span>
</a>
<a href='https://kinnylee.github.io/tags/go%E5%9F%BA%E7%A1%80%E5%85%A5%E9%97%A8/' class=" post_tag button button_translucent">
GO基础入门
<span class='button_tally'>8</span>
</a>
<a href='https://kinnylee.github.io/tags/helm/' class=" post_tag button button_translucent">
HELM
<span class='button_tally'>8</span>
</a>
<a href='https://kinnylee.github.io/tags/java%E5%9F%BA%E7%A1%80/' class=" post_tag button button_translucent">
JAVA基础
<span class='button_tally'>5</span>
</a>
<a href='https://kinnylee.github.io/tags/kubeapps/' class=" post_tag button button_translucent">
KUBEAPPS
<span class='button_tally'>5</span>
</a>
<a href='https://kinnylee.github.io/tags/c++/' class=" post_tag button button_translucent">
C++
<span class='button_tally'>3</span>
</a>
<a href='https://kinnylee.github.io/tags/client-go/' class=" post_tag button button_translucent">
CLIENT-GO
<span class='button_tally'>3</span>
</a>
<a href='https://kinnylee.github.io/tags/mysql/' class=" post_tag button button_translucent">
MYSQL
<span class='button_tally'>2</span>
</a>
<a href='https://kinnylee.github.io/tags/ansible/' class=" post_tag button button_translucent">
ANSIBLE
<span class='button_tally'>1</span>
</a>
<a href='https://kinnylee.github.io/tags/argocd/' class=" post_tag button button_translucent">
ARGOCD
<span class='button_tally'>1</span>
</a>
<a href='https://kinnylee.github.io/tags/docker/' class=" post_tag button button_translucent">
DOCKER
<span class='button_tally'>1</span>
</a>
<br>
<div class="post_tags_toggle button">All tags</div>
<div class="post_tags">
<div class="tags_list">
<a href='https://kinnylee.github.io/tags/ansible/' class=" post_tag button button_translucent" data-position=1>ANSIBLE<span class='button_tally'>1</span>
</a>
<a href='https://kinnylee.github.io/tags/argocd/' class=" post_tag button button_translucent" data-position=1>ARGOCD<span class='button_tally'>1</span>
</a>
<a href='https://kinnylee.github.io/tags/breakpad/' class=" post_tag button button_translucent" data-position=11>BREAKPAD<span class='button_tally'>11</span>
</a>
<a href='https://kinnylee.github.io/tags/c++/' class=" post_tag button button_translucent" data-position=3>C++<span class='button_tally'>3</span>
</a>
<a href='https://kinnylee.github.io/tags/client-go/' class=" post_tag button button_translucent" data-position=3>CLIENT-GO<span class='button_tally'>3</span>
</a>
<a href='https://kinnylee.github.io/tags/docker/' class=" post_tag button button_translucent" data-position=1>DOCKER<span class='button_tally'>1</span>
</a>
<a href='https://kinnylee.github.io/tags/go/' class=" post_tag button button_translucent" data-position=9>GO<span class='button_tally'>9</span>
</a>
<a href='https://kinnylee.github.io/tags/go%E5%9F%BA%E7%A1%80%E5%85%A5%E9%97%A8/' class=" post_tag button button_translucent" data-position=8>GO基础入门<span class='button_tally'>8</span>
</a>
<a href='https://kinnylee.github.io/tags/go%E7%AC%AC%E4%B8%89%E6%96%B9%E5%BA%93/' class=" post_tag button button_translucent" data-position=1>GO第三方库<span class='button_tally'>1</span>
</a>
<a href='https://kinnylee.github.io/tags/helm/' class=" post_tag button button_translucent" data-position=8>HELM<span class='button_tally'>8</span>
</a>
<a href='https://kinnylee.github.io/tags/index/' class=" post_tag button button_translucent" data-position=1>INDEX<span class='button_tally'>1</span>
</a>
<a href='https://kinnylee.github.io/tags/java%E5%9F%BA%E7%A1%80/' class=" post_tag button button_translucent" data-position=5>JAVA基础<span class='button_tally'>5</span>
</a>
<a href='https://kinnylee.github.io/tags/jvm/' class=" post_tag button button_translucent" data-position=1>JVM<span class='button_tally'>1</span>
</a>
<a href='https://kinnylee.github.io/tags/k8s/' class=" post_tag button button_translucent" data-position=10>K8S<span class='button_tally'>10</span>
</a>
<a href='https://kinnylee.github.io/tags/kubeapps/' class=" post_tag button button_translucent" data-position=5>KUBEAPPS<span class='button_tally'>5</span>
</a>
<a href='https://kinnylee.github.io/tags/mongodb/' class=" post_tag button button_translucent" data-position=1>MONGODB<span class='button_tally'>1</span>
</a>
<a href='https://kinnylee.github.io/tags/mysql/' class=" post_tag button button_translucent" data-position=2>MYSQL<span class='button_tally'>2</span>
</a>
<a href='https://kinnylee.github.io/tags/python/' class=" post_tag button button_translucent" data-position=1>PYTHON<span class='button_tally'>1</span>
</a>
<a href='https://kinnylee.github.io/tags/redis/' class=" post_tag button button_translucent" data-position=1>REDIS<span class='button_tally'>1</span>
</a>
<a href='https://kinnylee.github.io/tags/vscode/' class=" post_tag button button_translucent" data-position=1>VSCODE<span class='button_tally'>1</span>
</a>
<a href='https://kinnylee.github.io/tags/%E6%BA%90%E7%A0%81%E5%88%86%E6%9E%90/' class=" post_tag button button_translucent" data-position=36>源码分析<span class='button_tally'>36</span>
</a>
<a href='https://kinnylee.github.io/tags/%E8%AE%A1%E7%AE%97%E6%9C%BA%E5%8E%9F%E7%90%86/' class=" post_tag button button_translucent" data-position=1>计算机原理<span class='button_tally'>1</span>
</a>
<div class="tags_sort"><span title="sort alphabetically">[A~Z]</span><span title="sort by count">[0~9]</span>
</div>
<span class="tags_hide"><svg class="icon">
<use xlink:href="#closeme"></use>
</svg></span>
</div>
</div>
</nav>
</div>
</section>
</aside>
</div>
</main><svg width="0" height="0" class="hidden">
<symbol viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg" id="facebook">
<path d="M437 0H75C33.648 0 0 33.648 0 75v362c0 41.352 33.648 75 75 75h151V331h-60v-90h60v-61c0-49.629 40.371-90 90-90h91v90h-91v61h91l-15 90h-76v181h121c41.352 0 75-33.648 75-75V75c0-41.352-33.648-75-75-75zm0 0"></path>
</symbol>
<symbol xmlns="http://www.w3.org/2000/svg" viewBox="0 0 18.001 18.001" id="twitter">
<path d="M15.891 4.013c.808-.496 1.343-1.173 1.605-2.034a8.68 8.68 0 0 1-2.351.861c-.703-.756-1.593-1.14-2.66-1.14-1.043 0-1.924.366-2.643 1.078a3.56 3.56 0 0 0-1.076 2.605c0 .309.039.585.117.819-3.076-.105-5.622-1.381-7.628-3.837-.34.601-.51 1.213-.51 1.846 0 1.301.549 2.332 1.645 3.089-.625-.053-1.176-.211-1.645-.47 0 .929.273 1.705.82 2.388a3.623 3.623 0 0 0 2.115 1.291c-.312.08-.641.118-.979.118-.312 0-.533-.026-.664-.083.23.757.664 1.371 1.291 1.841a3.652 3.652 0 0 0 2.152.743C4.148 14.173 2.625 14.69.902 14.69c-.422 0-.721-.006-.902-.038 1.697 1.102 3.586 1.649 5.676 1.649 2.139 0 4.029-.542 5.674-1.626 1.645-1.078 2.859-2.408 3.639-3.974a10.77 10.77 0 0 0 1.172-4.892v-.468a7.788 7.788 0 0 0 1.84-1.921 8.142 8.142 0 0 1-2.11.593z"
></path>
</symbol>
<symbol aria-hidden="true" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512" id="mail">
<path d="M502.3 190.8c3.9-3.1 9.7-.2 9.7 4.7V400c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V195.6c0-5 5.7-7.8 9.7-4.7 22.4 17.4 52.1 39.5 154.1 113.6 21.1 15.4 56.7 47.8 92.2 47.6 35.7.3 72-32.8 92.3-47.6 102-74.1 131.6-96.3 154-113.7zM256 320c23.2.4 56.6-29.2 73.4-41.4 132.7-96.3 142.8-104.7 173.4-128.7 5.8-4.5 9.2-11.5 9.2-18.9v-19c0-26.5-21.5-48-48-48H48C21.5 64 0 85.5 0 112v19c0 7.4 3.4 14.3 9.2 18.9 30.6 23.9 40.7 32.4 173.4 128.7 16.8 12.2 50.2 41.8 73.4 41.4z"></path>
</symbol>
<symbol xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512" id="calendar">
<path d="M452 40h-24V0h-40v40H124V0H84v40H60C26.916 40 0 66.916 0 100v352c0 33.084 26.916 60 60 60h392c33.084 0 60-26.916 60-60V100c0-33.084-26.916-60-60-60zm20 412c0 11.028-8.972 20-20 20H60c-11.028 0-20-8.972-20-20V188h432v264zm0-304H40v-48c0-11.028 8.972-20 20-20h24v40h40V80h264v40h40V80h24c11.028 0 20 8.972 20 20v48z"></path>
<path d="M76 230h40v40H76zm80 0h40v40h-40zm80 0h40v40h-40zm80 0h40v40h-40zm80 0h40v40h-40zM76 310h40v40H76zm80 0h40v40h-40zm80 0h40v40h-40zm80 0h40v40h-40zM76 390h40v40H76zm80 0h40v40h-40zm80 0h40v40h-40zm80 0h40v40h-40zm80-80h40v40h-40z"></path>
</symbol>
<symbol viewBox="-21 0 512 512" xmlns="http://www.w3.org/2000/svg" id="yank">
<path d="M410.668 405.332H165.332c-32.363 0-58.664-26.3-58.664-58.664v-288c0-32.363 26.3-58.668 58.664-58.668h181.504c21.059 0 41.687 8.535 56.555 23.445l42.496 42.496c15.125 15.125 23.445 35.223 23.445 56.575v224.152c0 32.363-26.3 58.664-58.664 58.664zM165.332 32c-14.7 0-26.664 11.969-26.664 26.668v288c0 14.7 11.965 26.664 26.664 26.664h245.336c14.7 0 26.664-11.965 26.664-26.664V122.516c0-12.82-4.992-24.871-14.059-33.942l-42.496-42.496C371.84 37.121 359.488 32 346.836 32zm0 0"></path>
<path d="M314.668 512h-256C26.305 512 0 485.695 0 453.332V112c0-32.363 26.305-58.668 58.668-58.668h10.664c8.832 0 16 7.168 16 16s-7.168 16-16 16H58.668C43.968 85.332 32 97.301 32 112v341.332C32 468.032 43.969 480 58.668 480h256c14.7 0 26.664-11.969 26.664-26.668v-10.664c0-8.832 7.168-16 16-16s16 7.168 16 16v10.664c0 32.363-26.3 58.668-58.664 58.668zM368 181.332H208c-8.832 0-16-7.168-16-16s7.168-16 16-16h160c8.832 0 16 7.168 16 16s-7.168 16-16 16zm0 0"></path>
<path d="M368 245.332H208c-8.832 0-16-7.168-16-16s7.168-16 16-16h160c8.832 0 16 7.168 16 16s-7.168 16-16 16zm0 64H208c-8.832 0-16-7.168-16-16s7.168-16 16-16h160c8.832 0 16 7.168 16 16s-7.168 16-16 16zm0 0"></path>
</symbol>
<symbol xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512" id="github">
<path d="M255.968 5.329C114.624 5.329 0 120.401 0 262.353c0 113.536 73.344 209.856 175.104 243.872 12.8 2.368 17.472-5.568 17.472-12.384 0-6.112-.224-22.272-.352-43.712-71.2 15.52-86.24-34.464-86.24-34.464-11.616-29.696-28.416-37.6-28.416-37.6-23.264-15.936 1.728-15.616 1.728-15.616 25.696 1.824 39.2 26.496 39.2 26.496 22.848 39.264 59.936 27.936 74.528 21.344 2.304-16.608 8.928-27.936 16.256-34.368-56.832-6.496-116.608-28.544-116.608-127.008 0-28.064 9.984-51.008 26.368-68.992-2.656-6.496-11.424-32.64 2.496-68 0 0 21.504-6.912 70.4 26.336 20.416-5.696 42.304-8.544 64.096-8.64 21.728.128 43.648 2.944 64.096 8.672 48.864-33.248 70.336-26.336 70.336-26.336 13.952 35.392 5.184 61.504 2.56 68 16.416 17.984 26.304 40.928 26.304 68.992 0 98.72-59.84 120.448-116.864 126.816 9.184 7.936 17.376 23.616 17.376 47.584 0 34.368-.32 62.08-.32 70.496 0 6.88 4.608 14.88 17.6 12.352C438.72 472.145 512 375.857 512 262.353 512 120.401 397.376 5.329 255.968 5.329z"></path>
</symbol>
<symbol viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" id="rss">
<circle cx="3.429" cy="20.571" r="3.429"></circle>
<path d="M11.429 24h4.57C15.999 15.179 8.821 8.001 0 8v4.572c6.302.001 11.429 5.126 11.429 11.428z"></path>
<path d="M24 24C24 10.766 13.234 0 0 0v4.571c10.714 0 19.43 8.714 19.43 19.429z"></path>
</symbol>
<symbol viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg" id="linkedin">
<path d="M437 0H75C33.648 0 0 33.648 0 75v362c0 41.352 33.648 75 75 75h362c41.352 0 75-33.648 75-75V75c0-41.352-33.648-75-75-75zM181 406h-60V196h60zm0-240h-60v-60h60zm210 240h-60V286c0-16.54-13.46-30-30-30s-30 13.46-30 30v120h-60V196h60v11.309C286.719 202.422 296.93 196 316 196c40.691.043 75 36.547 75 79.688zm0 0"></path>
</symbol>
<symbol xmlns="http://www.w3.org/2000/svg" viewBox="0 0 612 612" id="arrow">
<path d="M604.501 440.509L325.398 134.956c-5.331-5.357-12.423-7.627-19.386-7.27-6.989-.357-14.056 1.913-19.387 7.27L7.499 440.509c-9.999 10.024-9.999 26.298 0 36.323s26.223 10.024 36.222 0l262.293-287.164L568.28 476.832c9.999 10.024 26.222 10.024 36.221 0 9.999-10.023 9.999-26.298 0-36.323z"></path>
</symbol>
<symbol viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg" id="carly">
<path d="M504.971 239.029L448 182.059V84c0-46.317-37.682-84-84-84h-44c-13.255 0-24 10.745-24 24s10.745 24 24 24h44c19.851 0 36 16.149 36 36v108c0 6.365 2.529 12.47 7.029 16.971L454.059 256l-47.029 47.029A24.002 24.002 0 0 0 400 320v108c0 19.851-16.149 36-36 36h-44c-13.255 0-24 10.745-24 24s10.745 24 24 24h44c46.318 0 84-37.683 84-84v-98.059l56.971-56.971c9.372-9.372 9.372-24.568 0-33.941zM112 192V84c0-19.851 16.149-36 36-36h44c13.255 0 24-10.745 24-24S205.255 0 192 0h-44c-46.318 0-84 37.683-84 84v98.059l-56.971 56.97c-9.373 9.373-9.373 24.568 0 33.941L64 329.941V428c0 46.317 37.682 84 84 84h44c13.255 0 24-10.745 24-24s-10.745-24-24-24h-44c-19.851 0-36-16.149-36-36V320c0-6.365-2.529-12.47-7.029-16.971L57.941 256l47.029-47.029A24.002 24.002 0 0 0 112 192z"></path>
</symbol>
<symbol xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512" id="copy">
<path d="M366.345 406.069H66.207c-9.751 0-17.655-7.904-17.655-17.655V17.655C48.552 7.904 56.456 0 66.207 0h300.138C376.096 0 384 7.904 384 17.655v370.759c0 9.751-7.904 17.655-17.655 17.655z" fill="#f1f4fb"></path>
<path d="M384 388.414v-76.992c-.907.322-1.869.494-2.751.882-6.307-6.593-14.733-11.025-24.111-11.964a40.49 40.49 0 0 0-8.448.039v-92.93c0-21.903-17.82-39.723-39.723-39.724a40.5 40.5 0 0 0-4.036.202c-20.012 2.004-35.689 19.916-35.689 40.781v101.773l-21.581 21.581c-15.241 15.241-21.393 36.866-16.456 57.847l3.802 16.16h131.338c9.75 0 17.655-7.905 17.655-17.655z"
fill="#d5dced"></path>
<circle cx="128" cy="105.931" r="26.483" fill="#b4e66e"></circle>
<circle cx="128" cy="203.034" r="26.483" fill="#dae169"></circle>
<circle cx="128" cy="300.138" r="26.483" fill="#ffdc64"></circle>
<path d="M331.034 229.517H189.793c-4.879 0-8.828-3.953-8.828-8.828s3.948-8.828 8.828-8.828h141.241c4.879 0 8.828 3.953 8.828 8.828s-3.948 8.828-8.828 8.828z" fill="#7f8499"></path>
<path d="M295.724 194.207H189.793a8.826 8.826 0 0 1-8.828-8.828 8.826 8.826 0 0 1 8.828-8.828h105.931a8.826 8.826 0 0 1 8.828 8.828 8.826 8.826 0 0 1-8.828 8.828z" fill="#5b5d6e"></path>
<path d="M331.034 326.621H189.793c-4.879 0-8.828-3.953-8.828-8.828s3.948-8.828 8.828-8.828h141.241c4.879 0 8.828 3.953 8.828 8.828s-3.948 8.828-8.828 8.828z" fill="#7f8499"></path>
<path d="M295.724 291.31H189.793c-4.879 0-8.828-3.953-8.828-8.828s3.948-8.828 8.828-8.828h105.931c4.879 0 8.828 3.953 8.828 8.828s-3.948 8.828-8.828 8.828z" fill="#5b5d6e"></path>
<path d="M331.034 132.414H189.793a8.826 8.826 0 0 1-8.828-8.828 8.826 8.826 0 0 1 8.828-8.828h141.241a8.826 8.826 0 0 1 8.828 8.828 8.826 8.826 0 0 1-8.828 8.828z" fill="#7f8499"></path>
<path d="M295.724 97.103H189.793a8.826 8.826 0 0 1-8.828-8.828 8.826 8.826 0 0 1 8.828-8.828h105.931a8.826 8.826 0 0 1 8.828 8.828 8.825 8.825 0 0 1-8.828 8.828z" fill="#5b5d6e"></path>
<path d="M443.656 335.563c-13.21-1.323-24.345 9.015-24.345 21.954v-7.569c0-11.544-8.306-22.063-19.794-23.213-13.209-1.323-24.344 9.015-24.344 21.954v-7.569c0-11.544-8.306-22.063-19.794-23.213-13.209-1.323-24.344 9.015-24.344 21.954V207.448c0-12.939-11.135-23.277-24.345-21.954-11.486 1.15-19.793 11.669-19.793 23.213v109.086l-26.752 26.752a44.14 44.14 0 0 0-11.754 41.32l18.47 78.495c6.567 27.913 31.475 47.64 60.15 47.64h74.645c34.127 0 61.793-27.666 61.793-61.793v-91.431c-.001-11.544-8.306-22.063-19.793-23.213z"
fill="#f0c087"></path>
<path d="M339.862 361.377a8.829 8.829 0 0 0 8.828-8.828v-34.194c-10.052 2.061-17.655 10.844-17.655 21.506v12.687a8.827 8.827 0 0 0 8.827 8.829zM384 370.205a8.829 8.829 0 0 0 8.828-8.828v-34.194c-10.052 2.061-17.655 10.844-17.655 21.506v12.687a8.827 8.827 0 0 0 8.827 8.829zm44.138 8.827a8.829 8.829 0 0 0 8.828-8.828V336.01c-10.052 2.061-17.655 10.844-17.655 21.506v12.687a8.827 8.827 0 0 0 8.827 8.829zM288.885 464.36l-20.467-86.985a28.482 28.482 0 0 1 7.585-26.663l10.893-10.894v22.113a8.829 8.829 0 0 0 17.656 0V185.933c-10.344 2.173-17.655 11.972-17.655 22.773v109.087l-26.752 26.752a44.14 44.14 0 0 0-11.754 41.32l18.47 78.495c6.567 27.913 31.475 47.64 60.15 47.64h22.026c-28.677 0-53.584-19.727-60.152-47.64z"
fill="#e6af78"></path>
</symbol>
<symbol xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512.001 512.001" id="closeme">
<path d="M284.286 256.002L506.143 34.144c7.811-7.811 7.811-20.475 0-28.285-7.811-7.81-20.475-7.811-28.285 0L256 227.717 34.143 5.859c-7.811-7.811-20.475-7.811-28.285 0-7.81 7.811-7.811 20.475 0 28.285l221.857 221.857L5.858 477.859c-7.811 7.811-7.811 20.475 0 28.285a19.938 19.938 0 0 0 14.143 5.857 19.94 19.94 0 0 0 14.143-5.857L256 284.287l221.857 221.857c3.905 3.905 9.024 5.857 14.143 5.857s10.237-1.952 14.143-5.857c7.811-7.811 7.811-20.475 0-28.285L284.286 256.002z"></path>
</symbol>
<symbol xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512" id="open-menu">
<path d="M492 236H20c-11.046 0-20 8.954-20 20s8.954 20 20 20h472c11.046 0 20-8.954 20-20s-8.954-20-20-20zm0-160H20C8.954 76 0 84.954 0 96s8.954 20 20 20h472c11.046 0 20-8.954 20-20s-8.954-20-20-20zm0 320H20c-11.046 0-20 8.954-20 20s8.954 20 20 20h472c11.046 0 20-8.954 20-20s-8.954-20-20-20z"></path>
</symbol>
</svg>
<footer class = 'footer'>
<div class = 'footer_inner wrap pale'>
<img src = 'https://kinnylee.github.io/icons/apple-touch-icon.png' class = 'icon icon_2 transparent'>
<p>Copyright © <span class = 'year'></span> KINNYLEE. All Rights Reserved</p>
<a class='to_top' href="#documentTop">
<svg class="icon">
<use xlink:href="#arrow"></use>
</svg>
</a>
</div>
</footer>
<script type="text/javascript" src = "https://kinnylee.github.io/js/bundle.cc924be6a21a1d8e5a2606ace65fbbd1955525709f7db3cbbe7c2cf8b7b7132d0c6bc812aa1596f79f40d9c6bf506085c118bbf5e5c3e2c90483b950ec1e6e94.js" integrity=
"sha512-zJJL5qIaHY5aJgas5l+70ZVVJXCffbPLvnws+Le3Ey0Ma8gSqhWW959A2ca/UGCFwRi79eXD4skEg7lQ7B5ulA==" crossorigin="anonymous"></script>
</body>
</html>