-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
862 lines (245 loc) · 30.6 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
<!DOCTYPE html>
<html lang="en" class="js csstransforms3d">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="generator" content="Hugo 0.46" />
<meta name="description" content="Main page">
<meta name="author" content="Keleustes Team">
<link rel="shortcut icon" href="https://keleustes.github.io/images/favicon.png" type="image/x-icon" />
<link rel="icon" href="https://keleustes.github.io/images/favicon.png" type="image/x-icon" />
<title>Keleustes :: KELEUSTES's Blog</title>
<link href="https://keleustes.github.io/css/nucleus.css?1562621961" rel="stylesheet">
<link href="https://keleustes.github.io/css/fontawesome-all.min.css?1562621961" rel="stylesheet">
<link href="https://keleustes.github.io/css/hybrid.css?1562621961" rel="stylesheet">
<link href="https://keleustes.github.io/css/featherlight.min.css?1562621961" rel="stylesheet">
<link href="https://keleustes.github.io/css/perfect-scrollbar.min.css?1562621961" rel="stylesheet">
<link href="https://keleustes.github.io/css/auto-complete.css?1562621961" rel="stylesheet">
<link href="https://keleustes.github.io/css/theme.css?1562621961" rel="stylesheet">
<link href="https://keleustes.github.io/css/hugo-theme.css?1562621961" rel="stylesheet">
<link href="https://keleustes.github.io/css/theme-keleustes.css?1562621961" rel="stylesheet">
<script src="https://keleustes.github.io/js/jquery-2.x.min.js?1562621961"></script>
<style type="text/css">
:root #header + #content > #left > #rlblock_left{
display:none !important;
}
</style>
</head>
<body class="" data-url="/">
<nav id="sidebar" class="">
<div id="header-wrapper">
<div id="header">
<a id="logo" href="https://keleustes.github.io/">
<svg id="grav-logo" width="100%" height="100%" viewBox="110 125 225 125" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xml:space="preserve" >
<style type="text/css">
.st0{fill:#1B75BC;stroke:#1B75BC;stroke-width:4;stroke-miterlimit:10;}
.st1{fill:#FFFFFF;stroke:#1B75BC;stroke-width:0.25;stroke-miterlimit:10;}
</style>
<g>
<path id="path0" d="M187.618 11.870 C 181.894 13.408,181.324 15.655,182.967 30.224 C 183.600 35.843,184.936 47.685,185.935 56.542 C 186.933 65.398,188.083 75.691,188.490 79.414 C 190.092 94.066,191.879 96.232,202.379 96.247 C 207.180 96.254,213.354 96.976,219.750 98.278 C 228.630 100.086,230.593 99.837,231.888 96.738 C 233.871 91.992,229.665 89.744,214.500 87.442 C 200.081 85.253,200.720 86.374,201.057 63.861 C 201.703 20.679,201.525 15.896,199.177 13.446 C 197.320 11.508,191.778 10.752,187.618 11.870 M137.054 22.392 C 119.818 28.294,98.508 40.027,84.113 51.539 C 75.736 58.239,73.727 60.741,73.781 64.407 C 73.850 69.067,71.294 66.456,115.802 107.330 C 132.362 122.538,132.717 122.643,142.726 115.292 C 148.656 110.937,152.625 108.539,159.195 105.344 C 167.868 101.125,169.076 100.108,169.076 97.023 C 169.076 90.944,160.411 92.867,144.354 102.509 C 135.705 107.703,134.501 107.458,127.260 99.029 C 118.156 88.432,116.979 85.183,120.973 81.668 C 123.634 79.326,132.912 73.649,139.616 70.262 C 148.473 65.788,149.314 65.065,149.314 61.929 C 149.314 55.610,138.312 58.996,119.089 71.230 C 110.341 76.798,108.882 76.794,103.647 71.189 C 95.494 62.458,93.609 57.809,96.861 54.453 C 101.659 49.502,120.199 39.042,134.391 33.280 C 141.422 30.426,143.135 29.417,143.980 27.635 C 145.942 23.502,142.164 20.642,137.054 22.392 M285.453 35.543 C 282.567 36.690,284.305 33.790,254.221 87.649 C 244.339 105.340,244.358 105.679,255.693 114.209 C 260.803 118.055,264.720 121.588,270.428 127.502 C 275.900 133.171,278.564 134.409,280.810 132.328 C 284.255 129.135,282.374 125.714,270.930 114.351 C 259.186 102.691,259.302 103.355,267.154 92.772 C 277.578 78.723,278.947 78.943,298.097 97.756 C 306.245 105.760,307.152 106.341,309.789 105.239 C 311.100 104.691,312.168 102.986,312.168 101.443 C 312.168 98.457,303.953 89.204,293.687 80.626 C 283.314 71.958,283.083 70.786,289.962 61.667 C 295.638 54.141,297.600 52.638,300.747 53.406 C 306.429 54.792,323.815 70.355,336.232 85.170 C 342.435 92.570,347.667 93.465,347.667 87.124 C 347.667 80.719,323.843 56.378,305.398 43.940 C 293.230 35.735,289.219 34.046,285.453 35.543 M45.137 94.971 C 43.389 96.796,41.393 100.474,40.471 103.569 C 37.989 111.908,43.989 135.032,53.812 154.986 C 59.784 167.118,59.176 167.452,36.152 164.707 C 27.169 163.636,25.222 163.610,23.374 164.540 C 18.783 166.848,17.671 177.964,21.634 181.927 C 23.917 184.209,23.743 184.192,46.494 184.421 C 72.491 184.683,70.544 183.944,67.180 192.269 C 62.716 203.315,61.862 207.862,60.946 225.435 C 60.156 240.603,58.644 244.802,53.227 246.871 C 40.643 251.677,29.026 229.502,31.799 205.971 C 32.882 196.788,32.043 193.962,28.238 193.962 C 20.663 193.962,19.742 218.229,26.613 236.780 C 35.577 260.979,54.370 272.780,66.532 261.845 C 71.668 257.227,72.487 253.496,72.835 233.120 C 73.236 209.627,74.899 203.807,82.159 200.483 C 92.980 195.528,103.823 207.167,106.506 226.615 C 107.706 235.316,109.620 238.100,112.992 236.050 C 115.958 234.246,116.642 229.662,115.153 221.573 C 113.110 210.470,109.666 203.107,100.700 190.668 C 97.535 186.277,97.606 185.627,101.418 184.116 C 108.059 181.485,107.733 174.237,100.900 172.594 C 100.339 172.459,95.975 171.857,91.202 171.257 C 64.877 167.944,63.199 165.431,80.931 155.873 C 89.655 151.170,97.841 147.996,107.411 145.604 C 118.172 142.915,122.462 139.033,119.440 134.718 C 116.245 130.157,93.547 135.225,74.010 144.861 C 65.625 148.997,63.425 148.196,60.196 139.835 C 56.290 129.723,53.493 116.771,52.324 103.385 C 51.599 95.082,50.881 93.321,48.220 93.321 C 46.917 93.321,46.508 93.540,45.137 94.971 M362.123 123.595 C 359.937 124.130,316.899 140.493,313.768 141.979 C 298.932 149.017,291.983 160.971,291.953 179.506 C 291.917 201.242,299.715 215.172,315.833 222.163 C 318.678 223.396,348.789 233.543,361.304 237.484 C 369.751 240.145,373.745 237.299,375.112 227.646 C 376.125 220.493,374.561 219.533,355.718 215.742 C 322.077 208.975,319.198 208.294,314.753 206.050 C 298.270 197.730,296.170 171.576,311.064 160.115 C 315.988 156.326,318.185 155.595,343.621 149.285 C 356.414 146.112,367.627 143.195,368.539 142.802 C 372.841 140.952,374.130 136.974,372.300 131.199 C 370.263 124.770,367.067 122.382,362.123 123.595 M283.421 232.170 C 275.792 234.559,262.756 246.707,258.052 255.810 C 250.918 269.613,254.654 285.615,266.001 289.861 C 274.793 293.151,283.521 291.399,303.385 282.358 C 318.986 275.257,323.284 274.588,327.479 278.610 C 336.559 287.313,322.213 306.385,300.690 314.226 C 293.729 316.762,292.038 318.091,292.042 321.025 C 292.055 333.060,321.908 318.797,335.089 300.457 C 349.166 280.870,347.580 261.555,331.693 259.097 C 325.052 258.070,318.967 260.041,303.385 268.267 C 283.842 278.584,275.813 280.020,269.885 274.258 C 261.808 266.408,266.946 254.651,283.257 243.655 C 287.556 240.757,289.296 239.261,290.059 237.804 C 292.024 234.053,288.084 230.709,283.421 232.170 M127.510 244.884 C 121.663 247.721,127.447 255.287,143.524 265.828 C 151.294 270.923,151.375 272.734,144.406 285.621 C 139.689 294.344,137.387 296.207,133.025 294.832 C 129.283 293.652,121.631 288.526,113.266 281.595 C 105.501 275.161,102.239 274.026,100.323 277.094 C 97.530 281.566,104.923 288.740,125.912 301.921 C 131.738 305.580,131.701 308.941,125.718 319.502 C 122.118 325.856,119.844 327.493,116.025 326.474 C 110.485 324.997,91.700 311.983,82.159 303.013 C 73.043 294.442,71.798 293.570,69.335 294.032 C 67.647 294.349,66.240 296.093,66.240 297.869 C 66.240 308.225,121.233 345.607,132.494 342.906 C 136.800 341.873,136.323 342.812,150.436 307.556 C 167.565 264.765,167.205 268.079,155.419 261.677 C 147.538 257.396,143.653 254.695,136.520 248.538 C 132.172 244.785,129.743 243.800,127.510 244.884 M207.413 273.584 C 204.880 274.958,204.334 278.099,204.906 288.017 C 205.132 291.941,205.474 299.597,205.666 305.032 C 205.858 310.467,206.295 320.512,206.636 327.356 C 207.648 347.656,208.022 347.127,192.681 347.101 C 183.900 347.087,182.046 346.974,176.029 346.093 C 172.306 345.547,168.600 345.022,167.795 344.925 C 160.506 344.046,158.924 351.598,165.926 353.851 C 182.434 359.162,220.378 358.116,245.881 351.647 C 266.748 346.354,273.833 342.680,272.275 337.960 C 271.111 334.433,268.338 334.324,259.202 337.448 C 242.707 343.087,232.362 345.187,229.218 343.533 C 226.291 341.993,226.194 341.651,222.498 319.854 C 214.686 273.783,215.216 276.271,212.750 274.105 C 211.324 272.853,209.151 272.641,207.413 273.584 " stroke="none" fill="#609ed5" fill-rule="evenodd">
</path>
<path id="path1" d="M0.000 182.983 L 0.000 365.965 200.000 365.965 L 400.000 365.965 400.000 182.983 L 400.000 0.000 200.000 0.000 L 0.000 0.000 0.000 182.983 M196.380 11.885 C 201.719 13.471,201.798 14.344,201.057 63.861 C 200.720 86.374,200.081 85.253,214.500 87.442 C 229.665 89.744,233.871 91.992,231.888 96.738 C 230.593 99.837,228.630 100.086,219.750 98.278 C 213.354 96.976,207.180 96.254,202.379 96.247 C 191.879 96.232,190.092 94.066,188.490 79.414 C 188.083 75.691,186.933 65.398,185.935 56.542 C 184.936 47.685,183.600 35.843,182.967 30.224 C 181.504 17.250,181.708 15.412,184.874 13.068 C 187.071 11.441,192.875 10.844,196.380 11.885 M143.487 23.028 C 146.833 26.375,144.263 29.272,134.391 33.280 C 120.199 39.042,101.659 49.502,96.861 54.453 C 93.609 57.809,95.494 62.458,103.647 71.189 C 108.882 76.794,110.341 76.798,119.089 71.230 C 138.312 58.996,149.314 55.610,149.314 61.929 C 149.314 65.065,148.473 65.788,139.616 70.262 C 132.912 73.649,123.634 79.326,120.973 81.668 C 116.979 85.183,118.156 88.432,127.260 99.029 C 134.501 107.458,135.705 107.703,144.354 102.509 C 160.411 92.867,169.076 90.944,169.076 97.023 C 169.076 100.108,167.868 101.125,159.195 105.344 C 152.625 108.539,148.656 110.937,142.726 115.292 C 132.717 122.643,132.362 122.538,115.802 107.330 C 71.294 66.456,73.850 69.067,73.781 64.407 C 73.649 55.448,108.923 32.025,137.054 22.392 C 139.442 21.574,142.317 21.858,143.487 23.028 M291.758 35.745 C 308.177 42.177,347.667 78.468,347.667 87.124 C 347.667 93.465,342.435 92.570,336.232 85.170 C 323.815 70.355,306.429 54.792,300.747 53.406 C 297.600 52.638,295.638 54.141,289.962 61.667 C 283.083 70.786,283.314 71.958,293.687 80.626 C 303.953 89.204,312.168 98.457,312.168 101.443 C 312.168 102.986,311.100 104.691,309.789 105.239 C 307.152 106.341,306.245 105.760,298.097 97.756 C 284.545 84.443,279.552 81.199,275.689 83.197 C 272.175 85.014,261.665 99.396,261.665 102.387 C 261.665 104.981,262.239 105.723,270.930 114.351 C 282.374 125.714,284.255 129.135,280.810 132.328 C 278.564 134.409,275.900 133.171,270.428 127.502 C 264.720 121.588,260.803 118.055,255.693 114.209 C 244.358 105.679,244.339 105.340,254.221 87.649 C 281.939 38.026,281.514 38.764,283.495 36.892 C 285.448 35.047,288.792 34.583,291.758 35.745 M50.465 94.365 C 51.433 95.725,51.818 97.593,52.324 103.385 C 53.493 116.771,56.290 129.723,60.196 139.835 C 63.425 148.196,65.625 148.997,74.010 144.861 C 93.547 135.225,116.245 130.157,119.440 134.718 C 122.462 139.033,118.172 142.915,107.411 145.604 C 97.841 147.996,89.655 151.170,80.931 155.873 C 63.199 165.431,64.877 167.944,91.202 171.257 C 95.975 171.857,100.339 172.459,100.900 172.594 C 107.733 174.237,108.059 181.485,101.418 184.116 C 97.606 185.627,97.535 186.277,100.700 190.668 C 109.666 203.107,113.110 210.470,115.153 221.573 C 116.642 229.662,115.958 234.246,112.992 236.050 C 109.620 238.100,107.706 235.316,106.506 226.615 C 103.823 207.167,92.980 195.528,82.159 200.483 C 74.899 203.807,73.236 209.627,72.835 233.120 C 72.487 253.496,71.668 257.227,66.532 261.845 C 54.370 272.780,35.577 260.979,26.613 236.780 C 19.742 218.229,20.663 193.962,28.238 193.962 C 32.043 193.962,32.882 196.788,31.799 205.971 C 29.026 229.502,40.643 251.677,53.227 246.871 C 58.644 244.802,60.156 240.603,60.946 225.435 C 61.862 207.862,62.716 203.315,67.180 192.269 C 70.544 183.944,72.491 184.683,46.494 184.421 C 23.743 184.192,23.917 184.209,21.634 181.927 C 17.671 177.964,18.783 166.848,23.374 164.540 C 25.222 163.610,27.169 163.636,36.152 164.707 C 51.875 166.581,55.062 166.532,56.748 164.389 C 57.752 163.113,57.647 162.777,53.812 154.986 C 43.989 135.032,37.989 111.908,40.471 103.569 C 42.795 95.764,48.028 90.943,50.465 94.365 M367.356 123.847 C 370.927 125.712,374.080 133.657,372.935 137.908 C 371.753 142.298,371.687 142.323,343.621 149.285 C 318.185 155.595,315.988 156.326,311.064 160.115 C 296.170 171.576,298.270 197.730,314.753 206.050 C 319.198 208.294,322.077 208.975,355.718 215.742 C 374.561 219.533,376.125 220.493,375.112 227.646 C 373.745 237.299,369.751 240.145,361.304 237.484 C 348.789 233.543,318.678 223.396,315.833 222.163 C 299.715 215.172,291.917 201.242,291.953 179.506 C 291.983 160.971,298.932 149.017,313.768 141.979 C 316.899 140.493,359.937 124.130,362.123 123.595 C 363.656 123.219,366.407 123.351,367.356 123.847 M287.351 232.035 C 289.032 232.502,290.576 234.270,290.576 235.728 C 290.576 238.104,289.068 239.738,283.257 243.655 C 266.946 254.651,261.808 266.408,269.885 274.258 C 275.813 280.020,283.842 278.584,303.385 268.267 C 318.967 260.041,325.052 258.070,331.693 259.097 C 347.580 261.555,349.166 280.870,335.089 300.457 C 321.908 318.797,292.055 333.060,292.042 321.025 C 292.038 318.091,293.729 316.762,300.690 314.226 C 322.213 306.385,336.559 287.313,327.479 278.610 C 323.284 274.588,318.986 275.257,303.385 282.358 C 283.521 291.399,274.793 293.151,266.001 289.861 C 256.306 286.233,251.857 273.524,255.874 260.933 C 260.053 247.836,279.606 229.884,287.351 232.035 M131.930 245.161 C 132.736 245.534,134.801 247.054,136.520 248.538 C 143.653 254.695,147.538 257.396,155.419 261.677 C 164.283 266.492,165.400 268.626,162.900 275.961 C 161.536 279.963,139.293 335.533,138.162 337.765 C 135.290 343.433,131.126 344.447,123.733 341.276 C 99.179 330.746,66.240 305.877,66.240 297.869 C 66.240 296.093,67.647 294.349,69.335 294.032 C 71.798 293.570,73.043 294.442,82.159 303.013 C 91.700 311.983,110.485 324.997,116.025 326.474 C 119.844 327.493,122.118 325.856,125.718 319.502 C 131.701 308.941,131.738 305.580,125.912 301.921 C 104.923 288.740,97.530 281.566,100.323 277.094 C 102.239 274.026,105.501 275.161,113.266 281.595 C 121.631 288.526,129.283 293.652,133.025 294.832 C 137.387 296.207,139.689 294.344,144.406 285.621 C 151.375 272.734,151.294 270.923,143.524 265.828 C 128.907 256.244,123.708 250.401,126.137 246.288 C 127.253 244.399,129.393 243.982,131.930 245.161 M212.750 274.105 C 215.216 276.271,214.686 273.783,222.498 319.854 C 226.194 341.651,226.291 341.993,229.218 343.533 C 232.362 345.187,242.707 343.087,259.202 337.448 C 268.338 334.324,271.111 334.433,272.275 337.960 C 273.833 342.680,266.748 346.354,245.881 351.647 C 220.378 358.116,182.434 359.162,165.926 353.851 C 158.924 351.598,160.506 344.046,167.795 344.925 C 168.600 345.022,172.306 345.547,176.029 346.093 C 182.046 346.974,183.900 347.087,192.681 347.101 C 208.022 347.127,207.648 347.656,206.636 327.356 C 206.295 320.512,205.858 310.467,205.666 305.032 C 205.474 299.597,205.132 291.941,204.906 288.017 C 204.450 280.112,204.602 277.669,205.681 275.555 C 207.076 272.821,210.490 272.121,212.750 274.105 " stroke="none" fill="#fbfbfb" fill-rule="evenodd">
</path>
</g>
</svg>
</a>
</div>
<div class="searchbox">
<label for="search-by"><i class="fas fa-search"></i></label>
<input data-search-input id="search-by" type="text" placeholder="Search...">
<span data-search-clear=""><i class="fas fa-close"></i></span>
</div>
<script type="text/javascript" src="https://keleustes.github.io/js/lunr.min.js?1562621961"></script>
<script type="text/javascript" src="https://keleustes.github.io/js/auto-complete.js?1562621961"></script>
<script type="text/javascript">
var baseurl = "https:\/\/keleustes.github.io\/";
</script>
<script type="text/javascript" src="https://keleustes.github.io/js/search.js?1562621961"></script>
</div>
<div class="highlightable">
<ul class="topics">
<li data-nav-id="/post/" title="Latest News" class="dd-item
">
<a href="https://keleustes.github.io/post/">
Latest News
</a>
</li>
<li data-nav-id="/kustomize/" title="Kustomize" class="dd-item
">
<a href="https://keleustes.github.io/kustomize/">
<b>1. </b>Kustomize
</a>
</li>
<li data-nav-id="/armada-operator/" title="Armada" class="dd-item
">
<a href="https://keleustes.github.io/armada-operator/">
<b>2. </b>Armada
</a>
<ul>
<li data-nav-id="/armada-operator/children/crds/" title="CRDs" class="dd-item ">
<a href="https://keleustes.github.io/armada-operator/children/crds/">
CRDs
</a>
</li>
<li data-nav-id="/armada-operator/children/operator/" title="Deployment Flows" class="dd-item ">
<a href="https://keleustes.github.io/armada-operator/children/operator/">
Deployment Flows
</a>
</li>
<li data-nav-id="/armada-operator/children/todo/" title="Ideas" class="dd-item ">
<a href="https://keleustes.github.io/armada-operator/children/todo/">
Ideas
</a>
</li>
</ul>
</li>
<li data-nav-id="/airship-treasuremap/" title="TreasureMap" class="dd-item
">
<a href="https://keleustes.github.io/airship-treasuremap/">
<b>3. </b>TreasureMap
</a>
</li>
<li data-nav-id="/oslc-operator/" title="LifeCycle Manager" class="dd-item
">
<a href="https://keleustes.github.io/oslc-operator/">
<b>4. </b>LifeCycle Manager
</a>
<ul>
<li data-nav-id="/oslc-operator/children/lifecycle/" title="LifeCycle" class="dd-item ">
<a href="https://keleustes.github.io/oslc-operator/children/lifecycle/">
LifeCycle
</a>
</li>
<li data-nav-id="/oslc-operator/children/flowcharts/" title="FlowCharts" class="dd-item ">
<a href="https://keleustes.github.io/oslc-operator/children/flowcharts/">
FlowCharts
</a>
</li>
<li data-nav-id="/oslc-operator/children/oslc_crd/" title="Oslc CRD" class="dd-item ">
<a href="https://keleustes.github.io/oslc-operator/children/oslc_crd/">
Oslc CRD
</a>
</li>
<li data-nav-id="/oslc-operator/children/phase_crd/" title="Phase CRD" class="dd-item ">
<a href="https://keleustes.github.io/oslc-operator/children/phase_crd/">
Phase CRD
</a>
</li>
</ul>
</li>
<li data-nav-id="/cluster-api/" title="Cluster-API" class="dd-item
">
<a href="https://keleustes.github.io/cluster-api/">
<b>5. </b>Cluster-API
</a>
</li>
<li data-nav-id="/kubeadm/" title="Kubeadm" class="dd-item
">
<a href="https://keleustes.github.io/kubeadm/">
<b>6. </b>Kubeadm
</a>
</li>
<li data-nav-id="/argo/" title="Argo" class="dd-item
">
<a href="https://keleustes.github.io/argo/">
<b>7. </b>Argo
</a>
</li>
<li data-nav-id="/about/" title="About KELEUSTES" class="dd-item
">
<a href="https://keleustes.github.io/about/">
About KELEUSTES
</a>
</li>
</ul>
<section id="footer">
<p>Built with <a href="https://github.com/matcornic/hugo-theme-learn"><i class="fas fa-heart"></i></a> from <a href="http://getgrav.org">Grav</a> and <a href="http://gohugo.io/">Hugo</a></p>
</section>
</div>
</nav>
<section id="body">
<div id="overlay"></div>
<div class="padding highlightable">
<div id="chapter">
<div id="body-inner">
<span id="sidebar-toggle-span">
<a href="#" id="sidebar-toggle" data-sidebar-toggle=""><i class="fas fa-bars"></i> navigation</a>
</span>
<h1 id="keleustes">Keleustes</h1>
<h2 id="rationale">Rationale</h2>
<ul>
<li>The projects listed here are POC intended to help make educated decisions
for the implementation of OpenInfrastructure Airship project.</li>
<li>Interesting links regarding Configuration Management and Kubernetes:
<ul>
<li><a href="https://blog.argoproj.io/the-state-of-kubernetes-configuration-management-d8b06c1205" target="_blank">The State of Kubernetes Configuration Management</a></li>
<li><a href="https://github.com/kubernetes/community/blob/master/contributors/design-proposals/architecture/declarative-application-management.md" target="_blank">Declarative application management in Kubernetes</a></li>
</ul></li>
</ul>
<div class="notices warning" ><p>None of thoses POC aimed at replacing for airship components. Those POC merely aim to highlight the potential advantages and pitfalls of choosing one technology versus another.</p>
</div>
<h2 id="airship-design">Airship Design</h2>
<ul>
<li><a href="https://www.airshipit.org/" target="_blank">Airship</a></li>
<li><a href="https://opendev.org/airship/governance" target="_blank">Governance</a></li>
<li><a href="https://etherpad.openstack.org/p/Airship_OpenDesignDiscussions" target="_blank">OpenDiscussion</a></li>
<li><a href="https://storyboard.openstack.org/#!/project/airship/specs" target="_blank">StoryBoard</a></li>
<li><a href="https://opendev.org/airship/specs" target="_blank">Airship Specs</a></li>
<li><a href="https://review.opendev.org/#/q/project:airship/specs" target="_blank">Inflight Specs</a></li>
</ul>
<h2 id="airship-related-links">Airship Related Links</h2>
<ul>
<li><a href="https://opendev.org/airship" target="_blank">airship</a></li>
<li><a href="https://opendev.org/airship/treasuremap" target="_blank">treasuremap</a></li>
<li><a href="https://opendev.org/airship/pegleg" target="_blank">pegleg</a></li>
<li><a href="https://opendev.org/airship/spyglass" target="_blank">spyglass</a></li>
<li><a href="https://opendev.org/airship/shipyard" target="_blank">shipyard</a></li>
<li><a href="https://opendev.org/airship/armada" target="_blank">armada</a></li>
<li><a href="https://opendev.org/airship/deckhand" target="_blank">deckhand</a></li>
<li><a href="https://opendev.org/airship/drydock" target="_blank">drydock</a></li>
<li><a href="https://opendev.org/airship/promenade" target="_blank">promenade</a></li>
<li><a href="https://opendev.org/airship/divingbell" target="_blank">divingbell</a></li>
<li><a href="https://opendev.org/airship/maas" target="_blank">maas</a></li>
</ul>
<h2 id="openstack-related-links">Openstack Related Links</h2>
<ul>
<li><a href="https://opendev.org/openstack" target="_blank">openstack</a></li>
<li><a href="https://opendev.org/openstack-helm" target="_blank">openstack-helm</a></li>
<li><a href="https://opendev.org/openstack-helm-infra" target="_blank">openstack-helm-infra</a></li>
</ul>
</div>
</div>
</div>
<div id="navigation">
<a class="nav nav-next" href="https://keleustes.github.io/post/" title="Latest News" style="margin-right: 0px;"><i class="fas fa-chevron-right"></i></a>
</div>
</section>
<div style="left: -1000px; overflow: scroll; position: absolute; top: -1000px; border: none; box-sizing: content-box; height: 200px; margin: 0px; padding: 0px; width: 200px;">
<div style="border: none; box-sizing: content-box; height: 200px; margin: 0px; padding: 0px; width: 200px;"></div>
</div>
<script src="https://keleustes.github.io/js/clipboard.min.js?1562621961"></script>
<script src="https://keleustes.github.io/js/perfect-scrollbar.min.js?1562621961"></script>
<script src="https://keleustes.github.io/js/perfect-scrollbar.jquery.min.js?1562621961"></script>
<script src="https://keleustes.github.io/js/jquery.sticky.js?1562621961"></script>
<script src="https://keleustes.github.io/js/featherlight.min.js?1562621961"></script>
<script src="https://keleustes.github.io/js/html5shiv-printshiv.min.js?1562621961"></script>
<script src="https://keleustes.github.io/js/highlight.pack.js?1562621961"></script>
<script>hljs.initHighlightingOnLoad();</script>
<script src="https://keleustes.github.io/js/modernizr.custom.71422.js?1562621961"></script>
<script src="https://keleustes.github.io/js/learn.js?1562621961"></script>
<script src="https://keleustes.github.io/js/hugo-learn.js?1562621961"></script>
<link href="https://keleustes.github.io/mermaid/mermaid.css?1562621961" type="text/css" rel="stylesheet" />
<script src="https://keleustes.github.io/mermaid/mermaid.js?1562621961"></script>
<script>
mermaid.initialize({ startOnLoad: true });
</script>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-123357787-3', 'auto');
ga('send', 'pageview');
</script>
</body>
</html>