-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathcilium-install.yaml
1885 lines (1860 loc) · 65.5 KB
/
cilium-install.yaml
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
---
# Source: cilium/templates/cilium-agent/serviceaccount.yaml
apiVersion: v1
kind: ServiceAccount
metadata:
name: "cilium"
namespace: kube-system
---
# Source: cilium/templates/cilium-envoy/serviceaccount.yaml
apiVersion: v1
kind: ServiceAccount
metadata:
name: "cilium-envoy"
namespace: kube-system
---
# Source: cilium/templates/cilium-operator/serviceaccount.yaml
apiVersion: v1
kind: ServiceAccount
metadata:
name: "cilium-operator"
namespace: kube-system
---
# Source: cilium/templates/cilium-ca-secret.yaml
apiVersion: v1
kind: Secret
metadata:
name: cilium-ca
namespace: kube-system
data:
ca.crt: LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSURGRENDQWZ5Z0F3SUJBZ0lSQUo4TjBWNXBzL2hWYS9jRUxKd1FCUmt3RFFZSktvWklodmNOQVFFTEJRQXcKRkRFU01CQUdBMVVFQXhNSlEybHNhWFZ0SUVOQk1CNFhEVEkwTVRJeU5qSXdNamMxTlZvWERUSTNNVEl5TmpJdwpNamMxTlZvd0ZERVNNQkFHQTFVRUF4TUpRMmxzYVhWdElFTkJNSUlCSWpBTkJna3Foa2lHOXcwQkFRRUZBQU9DCkFROEFNSUlCQ2dLQ0FRRUEwYlBMZ2lqNEtjbmovQm5NM3dkZWdydHpqQnRoMmdVUmFWdnpuNitpOVdSYWZPdzgKRGpvV1pydVU3SjJXajJiVjZPaDNYNUhTdEY1ckpjN1lyNjFDcnJJNUtsYWVkY0hGV09PZWxnaUNyb2xMbU9ncApJZ1c0RGg0MDZtMm4wTVlsVW51b2ZJKzZ0OXVBbTdDQXBCb0hTUzVSQ202L3hNWm9Tdm1JNVRqQ2FWYS8wV3FFCkpwenJQb2R6dGd3ZlhZNDdIYjFXb2FHYWtvQzdnTEFjVFphR0VZUHNRaEZJa24yZ1VOYm85WkJzNGhLUnhjUjUKZFJhWXFoSS8xd2RhbnhKS0NDMjd2M2xkbHFsUk9KV1h0TStxUlFnSFJQbjMwbGEyWVZrZTJ2SXNQS0hqVHZ2RQpud0oxMXpKZzB3UmJmc0hSWmNVSXQraTB0QnRETzRQeUdqMDZVd0lEQVFBQm8yRXdYekFPQmdOVkhROEJBZjhFCkJBTUNBcVF3SFFZRFZSMGxCQll3RkFZSUt3WUJCUVVIQXdFR0NDc0dBUVVGQndNQ01BOEdBMVVkRXdFQi93UUYKTUFNQkFmOHdIUVlEVlIwT0JCWUVGRHRIOVAzWDBwazg3dFdnWm9IdmlGTk9lcjlUTUEwR0NTcUdTSWIzRFFFQgpDd1VBQTRJQkFRQjBWN3NHTmQwQWxPTzlQOVZmUUkveWx6bmpqdWN3ajFCeDdZKzZRLzA3Unk4QVhZenFKd0ptCkNFalU5QldNUkk2MjRoa0VDUWtLdUxvTzdjSUVUZUFXT0NxRXZ1SkRzclBKZGlxMFFaTk9ub2o2WkhucERUeFYKTThiQnpnSXpoZFYwYzBhYU5MOFBHdGs1U05ST2JwRkx0OVBMN3RYbEhrL1RNaCtwcGpFRkt0WUxZaHR4MnZLZQpRNHlVU0VKY0MweG9DOWJGZHAvVGhXMUdVOUIvM2taQVVNN29Da3ZNRXVrZERRbUZvVUlXN1cyU3h3RGw3b21LCklXSFRYWFdxMUVvcTFsazcyUzhyVVJMb3VKeVJXK1hLU3NLb21KSmN4dDZSTmVwQ095ZDhiZHBPMi85dTBUdkEKdjFQTTloSHc0eDNzdm9SYmRCaEJsUFp3cjdFVU03U3IKLS0tLS1FTkQgQ0VSVElGSUNBVEUtLS0tLQo=
ca.key: LS0tLS1CRUdJTiBSU0EgUFJJVkFURSBLRVktLS0tLQpNSUlFb3dJQkFBS0NBUUVBMGJQTGdpajRLY25qL0JuTTN3ZGVncnR6akJ0aDJnVVJhVnZ6bjYraTlXUmFmT3c4CkRqb1dacnVVN0oyV2oyYlY2T2gzWDVIU3RGNXJKYzdZcjYxQ3JySTVLbGFlZGNIRldPT2VsZ2lDcm9sTG1PZ3AKSWdXNERoNDA2bTJuME1ZbFVudW9mSSs2dDl1QW03Q0FwQm9IU1M1UkNtNi94TVpvU3ZtSTVUakNhVmEvMFdxRQpKcHpyUG9kenRnd2ZYWTQ3SGIxV29hR2Frb0M3Z0xBY1RaYUdFWVBzUWhGSWtuMmdVTmJvOVpCczRoS1J4Y1I1CmRSYVlxaEkvMXdkYW54SktDQzI3djNsZGxxbFJPSldYdE0rcVJRZ0hSUG4zMGxhMllWa2UydklzUEtIalR2dkUKbndKMTF6Smcwd1JiZnNIUlpjVUl0K2kwdEJ0RE80UHlHajA2VXdJREFRQUJBb0lCQUcrZEpOcDRkKzIyR1hTYgpQdUlPaUExSlBHejhQZzdPMTcrZVE0Tmc5bmxxR29lWExUZmRUd01MSUc3NFNhUzE5WERzR20xeHJoWjJrczBpCjFVNWNCN3YzL0ZrK2xVVFVCL2dSM3R5NFZ1WVRDWHV2UmdWbnlka3AxcnhYOVJRNEFyRnVRL1ZZZ3VkTkc1ekMKU3hZTkRJZTA4VWwrUE8rOU10R0ZFNG45dGV4ZVcwQ1JUc2ZMZUFDU2FYQlFlVlEzcGphcEFMTGw3aTR6NlhkOQozWlZaeVQyVE16UENzZFQwanE2Qjl1cVZWemRKWDdyeWNaNVRscE5DenFRL1pwVWRGYWRUYVoveVE3Si8zK2doCkpWQ2dLYURnYTRmRGlXRll2OUZMWUpsWFlMT1RTSlBhTis3OVBjYm1kT1kzaHNOTEwvWkF2TC9yTWt4SXpnWmMKcWVDdlp2RUNnWUVBNkt2T21PT0ZFQ1JBZjhwdTRGVWUrTGdZbmE1Uk5SMi82My9RS3JnZy9XT0lvQXE0WXQ2dworVWJtNC9BUWtSWm40T093OVM0TEMyWHgrOUFESVl1bDYwaHpJWnhJZUlzSGw2U0UrNDIzSDlmemNzYVJhSWJ2CkttR2dQazdsNlJSbDVZR0NIM3ZvY2ZXZ242U1BCbG1PNzMyUTJJUDNBRGxCd1VTamw3aGxHVWNDZ1lFQTVycHMKLzM2NmNqcEZ0SUYrRmxyZnczVjhvSEJXVGJ3LzB2ekkxU0Q2aXNpRUxmanNGNEh2YWEwOXE3ZFdQMnoxcUxSLwo1VFNzakg4aTZKTkxYSVVFN1o5RWxXTHdTTllBVW0rR0FsZlE4SFhYeEJCamVRVjk3K0g5aHZZcm9RZnhWbk1qCi9FbGIwM0ZIenR0Q2pkTnhQWVJVU0NjV0tlaDhsQ0NTV2lNd1hKVUNnWUJ3UVN2dEFhQmFPRk5TRkZYSUwrbEEKY0htWDRkbFdPaU0xT0xZelZpQzhmOEFVRHZnRTQ1SVl3b2QxSTRhcXFWZTIzY09ybHVwSE5vazRSNVNySTVnSwpXeXNJNVVEbHY1WUxLSm5zVCtReEhkeGIzTWVjMmJVY0Nudm9jK0ppd0sra3VnWVFzSlJtSHU2Kzl3TDJPbEZHCjVKcjBpejZwUWZhaWl6NHVYZzJRMHdLQmdRQ1AwcDJuRmNQNitFQURLTVVFQWxtQmFYYnFPNXhRa0l2b1pSSjcKYURkRTA0RXhkdjBVR2phMjFQcWdVNFE3dlJ2VXNjOFhmU0loNGc1TWs2UmlZN2lTdHJqMXRkcTZURXVmRjAyZApvRWZwM0V0SE9FQUpiRmI0ZFJLb1VrTVgrZStDUi91aWc4ZnRvYXQxVWsvR1FJdFNJVzY0RzBWQmtsNDFwNmdTCjcrUnhrUUtCZ0VFVUs4bnFOeDhVa2hyR29UbnZXNGpuZ1NVNzMvZkpRLy9vczBiYStRdW1MVXFaSDdsN2RPM08KaEc1cVJjN09zVUYzbldKRjUxY2lMWVE3ZzNIU2dpeVoveit6WUtGVjhKOHN3SHllbTJuNVYvNFdoSnlhSVhtZwoyUEpDOHZaempUY2JIV2pZWFNQaWxuQjUvRGdieDdSQUNqZkJ5OXJ3cWdFTkVKdStqdGQ0Ci0tLS0tRU5EIFJTQSBQUklWQVRFIEtFWS0tLS0tCg==
---
# Source: cilium/templates/hubble/tls-helm/server-secret.yaml
apiVersion: v1
kind: Secret
metadata:
name: hubble-server-certs
namespace: kube-system
type: kubernetes.io/tls
data:
ca.crt: LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSURGRENDQWZ5Z0F3SUJBZ0lSQUo4TjBWNXBzL2hWYS9jRUxKd1FCUmt3RFFZSktvWklodmNOQVFFTEJRQXcKRkRFU01CQUdBMVVFQXhNSlEybHNhWFZ0SUVOQk1CNFhEVEkwTVRJeU5qSXdNamMxTlZvWERUSTNNVEl5TmpJdwpNamMxTlZvd0ZERVNNQkFHQTFVRUF4TUpRMmxzYVhWdElFTkJNSUlCSWpBTkJna3Foa2lHOXcwQkFRRUZBQU9DCkFROEFNSUlCQ2dLQ0FRRUEwYlBMZ2lqNEtjbmovQm5NM3dkZWdydHpqQnRoMmdVUmFWdnpuNitpOVdSYWZPdzgKRGpvV1pydVU3SjJXajJiVjZPaDNYNUhTdEY1ckpjN1lyNjFDcnJJNUtsYWVkY0hGV09PZWxnaUNyb2xMbU9ncApJZ1c0RGg0MDZtMm4wTVlsVW51b2ZJKzZ0OXVBbTdDQXBCb0hTUzVSQ202L3hNWm9Tdm1JNVRqQ2FWYS8wV3FFCkpwenJQb2R6dGd3ZlhZNDdIYjFXb2FHYWtvQzdnTEFjVFphR0VZUHNRaEZJa24yZ1VOYm85WkJzNGhLUnhjUjUKZFJhWXFoSS8xd2RhbnhKS0NDMjd2M2xkbHFsUk9KV1h0TStxUlFnSFJQbjMwbGEyWVZrZTJ2SXNQS0hqVHZ2RQpud0oxMXpKZzB3UmJmc0hSWmNVSXQraTB0QnRETzRQeUdqMDZVd0lEQVFBQm8yRXdYekFPQmdOVkhROEJBZjhFCkJBTUNBcVF3SFFZRFZSMGxCQll3RkFZSUt3WUJCUVVIQXdFR0NDc0dBUVVGQndNQ01BOEdBMVVkRXdFQi93UUYKTUFNQkFmOHdIUVlEVlIwT0JCWUVGRHRIOVAzWDBwazg3dFdnWm9IdmlGTk9lcjlUTUEwR0NTcUdTSWIzRFFFQgpDd1VBQTRJQkFRQjBWN3NHTmQwQWxPTzlQOVZmUUkveWx6bmpqdWN3ajFCeDdZKzZRLzA3Unk4QVhZenFKd0ptCkNFalU5QldNUkk2MjRoa0VDUWtLdUxvTzdjSUVUZUFXT0NxRXZ1SkRzclBKZGlxMFFaTk9ub2o2WkhucERUeFYKTThiQnpnSXpoZFYwYzBhYU5MOFBHdGs1U05ST2JwRkx0OVBMN3RYbEhrL1RNaCtwcGpFRkt0WUxZaHR4MnZLZQpRNHlVU0VKY0MweG9DOWJGZHAvVGhXMUdVOUIvM2taQVVNN29Da3ZNRXVrZERRbUZvVUlXN1cyU3h3RGw3b21LCklXSFRYWFdxMUVvcTFsazcyUzhyVVJMb3VKeVJXK1hLU3NLb21KSmN4dDZSTmVwQ095ZDhiZHBPMi85dTBUdkEKdjFQTTloSHc0eDNzdm9SYmRCaEJsUFp3cjdFVU03U3IKLS0tLS1FTkQgQ0VSVElGSUNBVEUtLS0tLQo=
tls.crt: LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSURWakNDQWo2Z0F3SUJBZ0lRVHBqSGsxOWhuNW1OUjR0dHRoclhxekFOQmdrcWhraUc5dzBCQVFzRkFEQVUKTVJJd0VBWURWUVFERXdsRGFXeHBkVzBnUTBFd0hoY05NalF4TWpJMk1qQXlOelUxV2hjTk1qVXhNakkyTWpBeQpOelUxV2pBcU1TZ3dKZ1lEVlFRRERCOHFMbVJsWm1GMWJIUXVhSFZpWW14bExXZHljR011WTJsc2FYVnRMbWx2Ck1JSUJJakFOQmdrcWhraUc5dzBCQVFFRkFBT0NBUThBTUlJQkNnS0NBUUVBdTM5aHZ6MVJyaEE2NndRTWNycVQKRU9QKzB1U2ZuSUFWTW04U1V3dTNXdXE4cU9HR0hxWEErZUk0WHIvLzB0N3lidmtWZW52TFNqZ1RteSs2cFROZQpqVDRYWjBhMUdWQWZlWkRRWkR0dVBoZ0FRcnBlYURaSTYvK09GdnI4WVR1aktHQjJxMm1ubzlsS0RsUDcyNCtiCjlEQWYvMG5CeUNtYUZScXcvL0RkN0tJaUk1TnZJYUp3dFZacm1qM1QzUVRCOHBzeDcxUW0wQlBXUUhLaXRsS2wKR1drR3kyZTlHaG15MkhWZ2R2WlJRTEY1U1FDazR6UU5oWXFtVU1uVDBBOWk4ejB3SFI2QWRhOEMwSG5VSWVPUQpNUFkzUmkyMXVuOFFhdEdGZUt6YXJEcXVabVd5QWp0dGoyY3ZkZ2R4YzlOYmpQeElicS9ucE8yS21qRkg1MHNaCkp3SURBUUFCbzRHTk1JR0tNQTRHQTFVZER3RUIvd1FFQXdJRm9EQWRCZ05WSFNVRUZqQVVCZ2dyQmdFRkJRY0QKQVFZSUt3WUJCUVVIQXdJd0RBWURWUjBUQVFIL0JBSXdBREFmQmdOVkhTTUVHREFXZ0JRN1IvVDkxOUtaUE83VgpvR2FCNzRoVFRucS9VekFxQmdOVkhSRUVJekFoZ2g4cUxtUmxabUYxYkhRdWFIVmlZbXhsTFdkeWNHTXVZMmxzCmFYVnRMbWx2TUEwR0NTcUdTSWIzRFFFQkN3VUFBNElCQVFCczYvRTdZR3h5ZWhSN0IxcG9WQkRUQit3TFEvTnQKYVhaU1YwZWlzSE9ndlZNWjdzTDVEbjA3cEhWNEJ2RXB6MEtNd0tDSUxNYldrK3JmQ21CRGR6dUhlSGhibENSZQo2ZmJMdEp2UUdxTG83emNVdUhlYVNZdy9kZWtwM2xVbitnc0dZT2tXK0xyb2hHeEUwdERrLzQrRGViTm5wbnE1CmdhMFp5TzZrTGdDL2pDVm9Hcy90SzdCL0xMRTB1YzBsWGl3RWRHZzR4SkhrR2xMWHVRNnZpVDRZVVcvUGdndUgKbFQ5bU5jY0hGbzVlbERTTmNLazhmSzZST0tLVk80TGd3ODFvTXkybXhmemJUVEIzUzVla1djMzNwRysraWdVbwoyZU9GMS9GZmpBRXMxOHJKcFBSWjQ2YUNJZHFYZmpCK0NIT2xVT1ovZU9oU2dackVDZnNrdU1qQwotLS0tLUVORCBDRVJUSUZJQ0FURS0tLS0tCg==
tls.key: LS0tLS1CRUdJTiBSU0EgUFJJVkFURSBLRVktLS0tLQpNSUlFb3dJQkFBS0NBUUVBdTM5aHZ6MVJyaEE2NndRTWNycVRFT1ArMHVTZm5JQVZNbThTVXd1M1d1cThxT0dHCkhxWEErZUk0WHIvLzB0N3lidmtWZW52TFNqZ1RteSs2cFROZWpUNFhaMGExR1ZBZmVaRFFaRHR1UGhnQVFycGUKYURaSTYvK09GdnI4WVR1aktHQjJxMm1ubzlsS0RsUDcyNCtiOURBZi8wbkJ5Q21hRlJxdy8vRGQ3S0lpSTVOdgpJYUp3dFZacm1qM1QzUVRCOHBzeDcxUW0wQlBXUUhLaXRsS2xHV2tHeTJlOUdobXkySFZnZHZaUlFMRjVTUUNrCjR6UU5oWXFtVU1uVDBBOWk4ejB3SFI2QWRhOEMwSG5VSWVPUU1QWTNSaTIxdW44UWF0R0ZlS3phckRxdVptV3kKQWp0dGoyY3ZkZ2R4YzlOYmpQeElicS9ucE8yS21qRkg1MHNaSndJREFRQUJBb0lCQUU0bkFXSktOK0thNTBRUQprdk83YXhPT1JTZzRuWU1KTEV5eVdXditKVFlqUS9JTTF1K3RYV3VLN0w0cHY0Tnc1SkozQm9uZ1VkTWszcDgvCjNNZUJTdmNLbTR5enYwYkd5K2ZMQWVIVmw5VVFBZ1BPVlEyUkd3SXJxbGxQMHFUZ3k5aEhwUTg3NGVGODc4NWIKR1U3aVpEbjdXVXI2dm1nbFZ4Rlc1OUkyM3ZvRHY4Mm81R1c3UlJCWHVOVjVudUN3NmtuZWVEcTVZT05DdXF5UQpPQ25kTEg2clA1N2JnS3FXOEVoa1hlVW1RZGZaQ3B2MHBzcDVBQjc4K0RoclNaMFcyWk5kenB3UXlmS21oWXlSCm4wbm5RTzFsc3V1ek14a04yUjBuVmFKL3JkK1BzYlh1OXJrVDA1blBSMjNlcnhPbDcwSWxraHkwdTN5YUZoNEQKNzZYNjRrRUNnWUVBNkRTM2NyUUF4aFh3bGZDdU1YRkZlbFVaNzdPS3RkcTdvQTBSVUFQS3VRZEVRWERuK2ZvVwpOUytCZFI1VjViMGlKeTQvWkEvSzBYK25VblZRZWM0bC95WWRZNGwvL3Mya25QRjdjNkpIV1JlRHZLanNKL2RECmxQMjNKYTVIb21zOVUxQ3NFVk40dEE0L3JTMThOKzVoS3NrekVydEgyeU1hTXlFUWdxdG8ydUVDZ1lFQXpyWGQKY0NhR0oyRUt5ZzhESFpaRWRTbWNSQzVWU1NSM3hCbTdRM0NiNWhNYUdCZlVVMGFnc3J5ZURpelFUSDVRR3lHdgo5TFd2MEkrR2s0ckZqUEo0K1JpS3hrVlY3dzM4L3JERnBMeUp6N0JOajlQWCtoTlVwdndVUDBxK2JyZnZxOElBCjYyYWZtQlIzSUdXclZQQmttazRxblQ1UHcvOC9hbm8rSW1WMXZRY0NnWUFvNlpqazZkZzFEb3FNTUpMUWZVK3IKaFRFRHJkT2p4UDFIN3VWOC9wNEtTY0I1ODBXOElwY2xHZENxYlFUZmJKcUc0cndpaWpISEJjSGFZbmNpYnZMOAo2SjlHK1dRRzVmNjU5RVkzRW9HVnJmSDFIS0kzVEhhbzJxY1pTWUt2bUV0KzBYanZ1SkJNMFRIZzltR3JqU0dyCm96V1BlRlhwdzE2TFlha0NET2Qxb1FLQmdHREphdHUrVGdaV085VU1YbXNXRnd1ODVmeE9yWVJIM1FRbkFEVzkKbm1HR0JDdlB6STBKZnVqeHhCZmpCODBwUDV6VWt5ekRmWVRzRHhrNld2RjUvd2F6WlJjZEUvV1EyU3J2M2pzYQpSSFRJbWlpRUNwWi9RcDNGWGoyY1k3bzN5YkxrYmNYTEVXTUdBaGxiUVhQTjgyMEV1Sk5UdjhtSDFFdW8zVHNCCndyVTFBb0dCQUxITTliVTlka1A0OUdnSnUrM2ZnUEJ4OUtCS0pMRmlnRzh1VWZsL2ovY1BLWTY3eXhtWDlwaW4KYVE5Vk5yL05oZnhCMlA0M2c1MXg5OFQ5V3pHL1FHSkZST1NZQVlKR1BUUitiTVcxTm5vSW1VY3VNZytaRytaQwpGaE9LU0d4WXRrK1JzQlRvdlVEdUlIY0ZzWWdmaHZKYXBDZmlGcHBlTktvUGwwaExNQU5qCi0tLS0tRU5EIFJTQSBQUklWQVRFIEtFWS0tLS0tCg==
---
# Source: cilium/templates/cilium-configmap.yaml
apiVersion: v1
kind: ConfigMap
metadata:
name: cilium-config
namespace: kube-system
data:
# Identity allocation mode selects how identities are shared between cilium
# nodes by setting how they are stored. The options are "crd" or "kvstore".
# - "crd" stores identities in kubernetes as CRDs (custom resource definition).
# These can be queried with:
# kubectl get ciliumid
# - "kvstore" stores identities in an etcd kvstore, that is
# configured below. Cilium versions before 1.6 supported only the kvstore
# backend. Upgrades from these older cilium versions should continue using
# the kvstore by commenting out the identity-allocation-mode below, or
# setting it to "kvstore".
identity-allocation-mode: crd
identity-heartbeat-timeout: "30m0s"
identity-gc-interval: "15m0s"
cilium-endpoint-gc-interval: "5m0s"
nodes-gc-interval: "5m0s"
# If you want to run cilium in debug mode change this value to true
debug: "false"
debug-verbose: ""
# The agent can be put into the following three policy enforcement modes
# default, always and never.
# https://docs.cilium.io/en/latest/security/policy/intro/#policy-enforcement-modes
enable-policy: "default"
policy-cidr-match-mode: ""
# If you want metrics enabled in cilium-operator, set the port for
# which the Cilium Operator will have their metrics exposed.
# NOTE that this will open the port on the nodes where Cilium operator pod
# is scheduled.
operator-prometheus-serve-addr: ":9963"
enable-metrics: "true"
# Enable IPv4 addressing. If enabled, all endpoints are allocated an IPv4
# address.
enable-ipv4: "true"
# Enable IPv6 addressing. If enabled, all endpoints are allocated an IPv6
# address.
enable-ipv6: "false"
# Users who wish to specify their own custom CNI configuration file must set
# custom-cni-conf to "true", otherwise Cilium may overwrite the configuration.
custom-cni-conf: "false"
enable-bpf-clock-probe: "false"
# If you want cilium monitor to aggregate tracing for packets, set this level
# to "low", "medium", or "maximum". The higher the level, the less packets
# that will be seen in monitor output.
monitor-aggregation: medium
# The monitor aggregation interval governs the typical time between monitor
# notification events for each allowed connection.
#
# Only effective when monitor aggregation is set to "medium" or higher.
monitor-aggregation-interval: "5s"
# The monitor aggregation flags determine which TCP flags which, upon the
# first observation, cause monitor notifications to be generated.
#
# Only effective when monitor aggregation is set to "medium" or higher.
monitor-aggregation-flags: all
# Specifies the ratio (0.0-1.0] of total system memory to use for dynamic
# sizing of the TCP CT, non-TCP CT, NAT and policy BPF maps.
bpf-map-dynamic-size-ratio: "0.0025"
# bpf-policy-map-max specifies the maximum number of entries in endpoint
# policy map (per endpoint)
bpf-policy-map-max: "16384"
# bpf-lb-map-max specifies the maximum number of entries in bpf lb service,
# backend and affinity maps.
bpf-lb-map-max: "65536"
bpf-lb-external-clusterip: "false"
bpf-events-drop-enabled: "true"
bpf-events-policy-verdict-enabled: "true"
bpf-events-trace-enabled: "true"
# Pre-allocation of map entries allows per-packet latency to be reduced, at
# the expense of up-front memory allocation for the entries in the maps. The
# default value below will minimize memory usage in the default installation;
# users who are sensitive to latency may consider setting this to "true".
#
# This option was introduced in Cilium 1.4. Cilium 1.3 and earlier ignore
# this option and behave as though it is set to "true".
#
# If this value is modified, then during the next Cilium startup the restore
# of existing endpoints and tracking of ongoing connections may be disrupted.
# As a result, reply packets may be dropped and the load-balancing decisions
# for established connections may change.
#
# If this option is set to "false" during an upgrade from 1.3 or earlier to
# 1.4 or later, then it may cause one-time disruptions during the upgrade.
preallocate-bpf-maps: "false"
# Name of the cluster. Only relevant when building a mesh of clusters.
cluster-name: default
# Unique ID of the cluster. Must be unique across all conneted clusters and
# in the range of 1 and 255. Only relevant when building a mesh of clusters.
cluster-id: "0"
# Encapsulation mode for communication between nodes
# Possible values:
# - disabled
# - vxlan (default)
# - geneve
# Default case
routing-mode: "tunnel"
tunnel-protocol: "vxlan"
service-no-backend-response: "reject"
# Enables L7 proxy for L7 policy enforcement and visibility
enable-l7-proxy: "true"
enable-ipv4-masquerade: "true"
enable-ipv4-big-tcp: "false"
enable-ipv6-big-tcp: "false"
enable-ipv6-masquerade: "true"
enable-tcx: "true"
datapath-mode: "veth"
enable-masquerade-to-route-source: "false"
enable-xt-socket-fallback: "true"
install-no-conntrack-iptables-rules: "false"
auto-direct-node-routes: "false"
direct-routing-skip-unreachable: "false"
enable-local-redirect-policy: "false"
enable-runtime-device-detection: "true"
kube-proxy-replacement: "false"
kube-proxy-replacement-healthz-bind-address: ""
bpf-lb-sock: "false"
bpf-lb-sock-terminate-pod-connections: "false"
enable-host-port: "false"
enable-external-ips: "false"
enable-node-port: "false"
nodeport-addresses: ""
enable-health-check-nodeport: "true"
enable-health-check-loadbalancer-ip: "false"
node-port-bind-protection: "true"
enable-auto-protect-node-port-range: "true"
bpf-lb-acceleration: "disabled"
enable-svc-source-range-check: "true"
enable-l2-neigh-discovery: "true"
arping-refresh-period: "30s"
k8s-require-ipv4-pod-cidr: "false"
k8s-require-ipv6-pod-cidr: "false"
enable-k8s-networkpolicy: "true"
# Tell the agent to generate and write a CNI configuration file
write-cni-conf-when-ready: /host/etc/cni/net.d/05-cilium.conflist
cni-exclusive: "true"
cni-log-file: "/var/run/cilium/cilium-cni.log"
enable-endpoint-health-checking: "true"
enable-health-checking: "true"
enable-well-known-identities: "false"
enable-node-selector-labels: "false"
synchronize-k8s-nodes: "true"
operator-api-serve-addr: "127.0.0.1:9234"
# Enable Hubble gRPC service.
enable-hubble: "true"
# UNIX domain socket for Hubble server to listen to.
hubble-socket-path: "/var/run/cilium/hubble.sock"
hubble-export-file-max-size-mb: "10"
hubble-export-file-max-backups: "5"
# An additional address for Hubble server to listen to (e.g. ":4244").
hubble-listen-address: ":4244"
hubble-disable-tls: "false"
hubble-tls-cert-file: /var/lib/cilium/tls/hubble/server.crt
hubble-tls-key-file: /var/lib/cilium/tls/hubble/server.key
hubble-tls-client-ca-files: /var/lib/cilium/tls/hubble/client-ca.crt
ipam: "cluster-pool"
ipam-cilium-node-update-rate: "15s"
cluster-pool-ipv4-cidr: "10.0.0.0/8"
cluster-pool-ipv4-mask-size: "24"
egress-gateway-reconciliation-trigger-interval: "1s"
enable-vtep: "false"
vtep-endpoint: ""
vtep-cidr: ""
vtep-mask: ""
vtep-mac: ""
procfs: "/host/proc"
bpf-root: "/sys/fs/bpf"
cgroup-root: "/run/cilium/cgroupv2"
enable-k8s-terminating-endpoint: "true"
enable-sctp: "false"
k8s-client-qps: "10"
k8s-client-burst: "20"
remove-cilium-node-taints: "true"
set-cilium-node-taints: "true"
set-cilium-is-up-condition: "true"
unmanaged-pod-watcher-interval: "15"
# default DNS proxy to transparent mode in non-chaining modes
dnsproxy-enable-transparent-mode: "true"
dnsproxy-socket-linger-timeout: "10"
tofqdns-dns-reject-response-code: "refused"
tofqdns-enable-dns-compression: "true"
tofqdns-endpoint-max-ip-per-hostname: "50"
tofqdns-idle-connection-grace-period: "0s"
tofqdns-max-deferred-connection-deletes: "10000"
tofqdns-proxy-response-max-delay: "100ms"
agent-not-ready-taint-key: "node.cilium.io/agent-not-ready"
mesh-auth-enabled: "true"
mesh-auth-queue-size: "1024"
mesh-auth-rotated-identities-queue-size: "1024"
mesh-auth-gc-interval: "5m0s"
proxy-xff-num-trusted-hops-ingress: "0"
proxy-xff-num-trusted-hops-egress: "0"
proxy-connect-timeout: "2"
proxy-initial-fetch-timeout: "30"
proxy-max-requests-per-connection: "0"
proxy-max-connection-duration-seconds: "0"
proxy-idle-timeout-seconds: "60"
external-envoy-proxy: "true"
envoy-base-id: "0"
envoy-keep-cap-netbindservice: "false"
max-connected-clusters: "255"
clustermesh-enable-endpoint-sync: "false"
clustermesh-enable-mcs-api: "false"
nat-map-stats-entries: "32"
nat-map-stats-interval: "30s"
# Extra config allows adding arbitrary properties to the cilium config.
# By putting it at the end of the ConfigMap, it's also possible to override existing properties.
---
# Source: cilium/templates/cilium-envoy/configmap.yaml
apiVersion: v1
kind: ConfigMap
metadata:
name: cilium-envoy-config
namespace: kube-system
data:
bootstrap-config.json: |
{
"node": {
"id": "host~127.0.0.1~no-id~localdomain",
"cluster": "ingress-cluster"
},
"staticResources": {
"listeners": [
{
"name": "envoy-prometheus-metrics-listener",
"address": {
"socket_address": {
"address": "0.0.0.0",
"port_value": 9964
}
},
"filter_chains": [
{
"filters": [
{
"name": "envoy.filters.network.http_connection_manager",
"typed_config": {
"@type": "type.googleapis.com/envoy.extensions.filters.network.http_connection_manager.v3.HttpConnectionManager",
"stat_prefix": "envoy-prometheus-metrics-listener",
"route_config": {
"virtual_hosts": [
{
"name": "prometheus_metrics_route",
"domains": [
"*"
],
"routes": [
{
"name": "prometheus_metrics_route",
"match": {
"prefix": "/metrics"
},
"route": {
"cluster": "/envoy-admin",
"prefix_rewrite": "/stats/prometheus"
}
}
]
}
]
},
"http_filters": [
{
"name": "envoy.filters.http.router",
"typed_config": {
"@type": "type.googleapis.com/envoy.extensions.filters.http.router.v3.Router"
}
}
],
"internal_address_config": {
"cidr_ranges": [
{
"address_prefix": "10.0.0.0",
"prefix_len": 8
},
{
"address_prefix": "172.16.0.0",
"prefix_len": 12
},
{
"address_prefix": "192.168.0.0",
"prefix_len": 16
},
{
"address_prefix": "127.0.0.1",
"prefix_len": 32
},
{
"address_prefix": "::1",
"prefix_len": 128
}
]
},
"stream_idle_timeout": "0s"
}
}
]
}
]
},
{
"name": "envoy-health-listener",
"address": {
"socket_address": {
"address": "127.0.0.1",
"port_value": 9878
}
},
"filter_chains": [
{
"filters": [
{
"name": "envoy.filters.network.http_connection_manager",
"typed_config": {
"@type": "type.googleapis.com/envoy.extensions.filters.network.http_connection_manager.v3.HttpConnectionManager",
"stat_prefix": "envoy-health-listener",
"route_config": {
"virtual_hosts": [
{
"name": "health",
"domains": [
"*"
],
"routes": [
{
"name": "health",
"match": {
"prefix": "/healthz"
},
"route": {
"cluster": "/envoy-admin",
"prefix_rewrite": "/ready"
}
}
]
}
]
},
"http_filters": [
{
"name": "envoy.filters.http.router",
"typed_config": {
"@type": "type.googleapis.com/envoy.extensions.filters.http.router.v3.Router"
}
}
],
"internal_address_config": {
"cidr_ranges": [
{
"address_prefix": "10.0.0.0",
"prefix_len": 8
},
{
"address_prefix": "172.16.0.0",
"prefix_len": 12
},
{
"address_prefix": "192.168.0.0",
"prefix_len": 16
},
{
"address_prefix": "127.0.0.1",
"prefix_len": 32
},
{
"address_prefix": "::1",
"prefix_len": 128
}
]
},
"stream_idle_timeout": "0s"
}
}
]
}
]
}
],
"clusters": [
{
"name": "ingress-cluster",
"type": "ORIGINAL_DST",
"connectTimeout": "2s",
"lbPolicy": "CLUSTER_PROVIDED",
"typedExtensionProtocolOptions": {
"envoy.extensions.upstreams.http.v3.HttpProtocolOptions": {
"@type": "type.googleapis.com/envoy.extensions.upstreams.http.v3.HttpProtocolOptions",
"commonHttpProtocolOptions": {
"idleTimeout": "60s",
"maxConnectionDuration": "0s",
"maxRequestsPerConnection": 0
},
"useDownstreamProtocolConfig": {}
}
},
"cleanupInterval": "2.500s"
},
{
"name": "egress-cluster-tls",
"type": "ORIGINAL_DST",
"connectTimeout": "2s",
"lbPolicy": "CLUSTER_PROVIDED",
"typedExtensionProtocolOptions": {
"envoy.extensions.upstreams.http.v3.HttpProtocolOptions": {
"@type": "type.googleapis.com/envoy.extensions.upstreams.http.v3.HttpProtocolOptions",
"commonHttpProtocolOptions": {
"idleTimeout": "60s",
"maxConnectionDuration": "0s",
"maxRequestsPerConnection": 0
},
"upstreamHttpProtocolOptions": {},
"useDownstreamProtocolConfig": {}
}
},
"cleanupInterval": "2.500s",
"transportSocket": {
"name": "cilium.tls_wrapper",
"typedConfig": {
"@type": "type.googleapis.com/cilium.UpstreamTlsWrapperContext"
}
}
},
{
"name": "egress-cluster",
"type": "ORIGINAL_DST",
"connectTimeout": "2s",
"lbPolicy": "CLUSTER_PROVIDED",
"typedExtensionProtocolOptions": {
"envoy.extensions.upstreams.http.v3.HttpProtocolOptions": {
"@type": "type.googleapis.com/envoy.extensions.upstreams.http.v3.HttpProtocolOptions",
"commonHttpProtocolOptions": {
"idleTimeout": "60s",
"maxConnectionDuration": "0s",
"maxRequestsPerConnection": 0
},
"useDownstreamProtocolConfig": {}
}
},
"cleanupInterval": "2.500s"
},
{
"name": "ingress-cluster-tls",
"type": "ORIGINAL_DST",
"connectTimeout": "2s",
"lbPolicy": "CLUSTER_PROVIDED",
"typedExtensionProtocolOptions": {
"envoy.extensions.upstreams.http.v3.HttpProtocolOptions": {
"@type": "type.googleapis.com/envoy.extensions.upstreams.http.v3.HttpProtocolOptions",
"commonHttpProtocolOptions": {
"idleTimeout": "60s",
"maxConnectionDuration": "0s",
"maxRequestsPerConnection": 0
},
"upstreamHttpProtocolOptions": {},
"useDownstreamProtocolConfig": {}
}
},
"cleanupInterval": "2.500s",
"transportSocket": {
"name": "cilium.tls_wrapper",
"typedConfig": {
"@type": "type.googleapis.com/cilium.UpstreamTlsWrapperContext"
}
}
},
{
"name": "xds-grpc-cilium",
"type": "STATIC",
"connectTimeout": "2s",
"loadAssignment": {
"clusterName": "xds-grpc-cilium",
"endpoints": [
{
"lbEndpoints": [
{
"endpoint": {
"address": {
"pipe": {
"path": "/var/run/cilium/envoy/sockets/xds.sock"
}
}
}
}
]
}
]
},
"typedExtensionProtocolOptions": {
"envoy.extensions.upstreams.http.v3.HttpProtocolOptions": {
"@type": "type.googleapis.com/envoy.extensions.upstreams.http.v3.HttpProtocolOptions",
"explicitHttpConfig": {
"http2ProtocolOptions": {}
}
}
}
},
{
"name": "/envoy-admin",
"type": "STATIC",
"connectTimeout": "2s",
"loadAssignment": {
"clusterName": "/envoy-admin",
"endpoints": [
{
"lbEndpoints": [
{
"endpoint": {
"address": {
"pipe": {
"path": "/var/run/cilium/envoy/sockets/admin.sock"
}
}
}
}
]
}
]
}
}
]
},
"dynamicResources": {
"ldsConfig": {
"initialFetchTimeout": "30s",
"apiConfigSource": {
"apiType": "GRPC",
"transportApiVersion": "V3",
"grpcServices": [
{
"envoyGrpc": {
"clusterName": "xds-grpc-cilium"
}
}
],
"setNodeOnFirstMessageOnly": true
},
"resourceApiVersion": "V3"
},
"cdsConfig": {
"initialFetchTimeout": "30s",
"apiConfigSource": {
"apiType": "GRPC",
"transportApiVersion": "V3",
"grpcServices": [
{
"envoyGrpc": {
"clusterName": "xds-grpc-cilium"
}
}
],
"setNodeOnFirstMessageOnly": true
},
"resourceApiVersion": "V3"
}
},
"bootstrapExtensions": [
{
"name": "envoy.bootstrap.internal_listener",
"typed_config": {
"@type": "type.googleapis.com/envoy.extensions.bootstrap.internal_listener.v3.InternalListener"
}
}
],
"overload_manager": {
"resource_monitors": [
{
"name": "envoy.resource_monitors.global_downstream_max_connections",
"typed_config": {
"@type": "type.googleapis.com/envoy.extensions.resource_monitors.downstream_connections.v3.DownstreamConnectionsConfig",
"max_active_downstream_connections": "50000"
}
}
]
},
"admin": {
"address": {
"pipe": {
"path": "/var/run/cilium/envoy/sockets/admin.sock"
}
}
}
}
---
# Source: cilium/templates/cilium-agent/clusterrole.yaml
apiVersion: rbac.authorization.k8s.io/v1
kind: ClusterRole
metadata:
name: cilium
labels:
app.kubernetes.io/part-of: cilium
rules:
- apiGroups:
- networking.k8s.io
resources:
- networkpolicies
verbs:
- get
- list
- watch
- apiGroups:
- discovery.k8s.io
resources:
- endpointslices
verbs:
- get
- list
- watch
- apiGroups:
- ""
resources:
- namespaces
- services
- pods
- endpoints
- nodes
verbs:
- get
- list
- watch
- apiGroups:
- apiextensions.k8s.io
resources:
- customresourcedefinitions
verbs:
- list
- watch
# This is used when validating policies in preflight. This will need to stay
# until we figure out how to avoid "get" inside the preflight, and then
# should be removed ideally.
- get
- apiGroups:
- cilium.io
resources:
- ciliumloadbalancerippools
- ciliumbgppeeringpolicies
- ciliumbgpnodeconfigs
- ciliumbgpadvertisements
- ciliumbgppeerconfigs
- ciliumclusterwideenvoyconfigs
- ciliumclusterwidenetworkpolicies
- ciliumegressgatewaypolicies
- ciliumendpoints
- ciliumendpointslices
- ciliumenvoyconfigs
- ciliumidentities
- ciliumlocalredirectpolicies
- ciliumnetworkpolicies
- ciliumnodes
- ciliumnodeconfigs
- ciliumcidrgroups
- ciliuml2announcementpolicies
- ciliumpodippools
verbs:
- list
- watch
- apiGroups:
- cilium.io
resources:
- ciliumidentities
- ciliumendpoints
- ciliumnodes
verbs:
- create
- apiGroups:
- cilium.io
# To synchronize garbage collection of such resources
resources:
- ciliumidentities
verbs:
- update
- apiGroups:
- cilium.io
resources:
- ciliumendpoints
verbs:
- delete
- get
- apiGroups:
- cilium.io
resources:
- ciliumnodes
- ciliumnodes/status
verbs:
- get
- update
- apiGroups:
- cilium.io
resources:
- ciliumendpoints/status
- ciliumendpoints
- ciliuml2announcementpolicies/status
- ciliumbgpnodeconfigs/status
verbs:
- patch
---
# Source: cilium/templates/cilium-operator/clusterrole.yaml
apiVersion: rbac.authorization.k8s.io/v1
kind: ClusterRole
metadata:
name: cilium-operator
labels:
app.kubernetes.io/part-of: cilium
rules:
- apiGroups:
- ""
resources:
- pods
verbs:
- get
- list
- watch
# to automatically delete [core|kube]dns pods so that are starting to being
# managed by Cilium
- delete
- apiGroups:
- ""
resources:
- configmaps
resourceNames:
- cilium-config
verbs:
# allow patching of the configmap to set annotations
- patch
- apiGroups:
- ""
resources:
- nodes
verbs:
- list
- watch
- apiGroups:
- ""
resources:
# To remove node taints
- nodes
# To set NetworkUnavailable false on startup
- nodes/status
verbs:
- patch
- apiGroups:
- discovery.k8s.io
resources:
- endpointslices
verbs:
- get
- list
- watch
- apiGroups:
- ""
resources:
# to perform LB IP allocation for BGP
- services/status
verbs:
- update
- patch
- apiGroups:
- ""
resources:
# to check apiserver connectivity
- namespaces
verbs:
- get
- list
- watch
- apiGroups:
- ""
resources:
# to perform the translation of a CNP that contains `ToGroup` to its endpoints
- services
- endpoints
verbs:
- get
- list
- watch
- apiGroups:
- cilium.io
resources:
- ciliumnetworkpolicies
- ciliumclusterwidenetworkpolicies
verbs:
# Create auto-generated CNPs and CCNPs from Policies that have 'toGroups'
- create
- update
- deletecollection
# To update the status of the CNPs and CCNPs
- patch
- get
- list
- watch
- apiGroups:
- cilium.io
resources:
- ciliumnetworkpolicies/status
- ciliumclusterwidenetworkpolicies/status
verbs:
# Update the auto-generated CNPs and CCNPs status.
- patch
- update
- apiGroups:
- cilium.io
resources:
- ciliumendpoints
- ciliumidentities
verbs:
# To perform garbage collection of such resources
- delete
- list
- watch
- apiGroups:
- cilium.io
resources:
- ciliumidentities
verbs:
# To synchronize garbage collection of such resources
- update
- apiGroups:
- cilium.io
resources:
- ciliumnodes
verbs:
- create
- update
- get
- list
- watch
# To perform CiliumNode garbage collector
- delete
- apiGroups:
- cilium.io
resources:
- ciliumnodes/status
verbs:
- update
- apiGroups:
- cilium.io
resources:
- ciliumendpointslices
- ciliumenvoyconfigs
- ciliumbgppeerconfigs
- ciliumbgpadvertisements
- ciliumbgpnodeconfigs
verbs:
- create
- update
- get
- list
- watch
- delete
- patch
- apiGroups:
- apiextensions.k8s.io
resources:
- customresourcedefinitions
verbs:
- create
- get
- list
- watch
- apiGroups:
- apiextensions.k8s.io
resources:
- customresourcedefinitions
verbs:
- update
resourceNames:
- ciliumloadbalancerippools.cilium.io
- ciliumbgppeeringpolicies.cilium.io
- ciliumbgpclusterconfigs.cilium.io
- ciliumbgppeerconfigs.cilium.io
- ciliumbgpadvertisements.cilium.io
- ciliumbgpnodeconfigs.cilium.io
- ciliumbgpnodeconfigoverrides.cilium.io
- ciliumclusterwideenvoyconfigs.cilium.io
- ciliumclusterwidenetworkpolicies.cilium.io
- ciliumegressgatewaypolicies.cilium.io
- ciliumendpoints.cilium.io
- ciliumendpointslices.cilium.io
- ciliumenvoyconfigs.cilium.io
- ciliumexternalworkloads.cilium.io
- ciliumidentities.cilium.io
- ciliumlocalredirectpolicies.cilium.io
- ciliumnetworkpolicies.cilium.io
- ciliumnodes.cilium.io
- ciliumnodeconfigs.cilium.io
- ciliumcidrgroups.cilium.io
- ciliuml2announcementpolicies.cilium.io
- ciliumpodippools.cilium.io
- apiGroups:
- cilium.io
resources:
- ciliumloadbalancerippools
- ciliumpodippools
- ciliumbgppeeringpolicies
- ciliumbgpclusterconfigs
- ciliumbgpnodeconfigoverrides
verbs:
- get
- list
- watch
- apiGroups:
- cilium.io
resources:
- ciliumpodippools
verbs:
- create
- apiGroups:
- cilium.io
resources:
- ciliumloadbalancerippools/status
verbs:
- patch
# For cilium-operator running in HA mode.
#
# Cilium operator running in HA mode requires the use of ResourceLock for Leader Election
# between multiple running instances.
# The preferred way of doing this is to use LeasesResourceLock as edits to Leases are less
# common and fewer objects in the cluster watch "all Leases".
- apiGroups:
- coordination.k8s.io
resources:
- leases
verbs:
- create
- get
- update
---
# Source: cilium/templates/cilium-agent/clusterrolebinding.yaml
apiVersion: rbac.authorization.k8s.io/v1
kind: ClusterRoleBinding