forked from projectcalico/calico
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinternal.go
More file actions
2715 lines (2709 loc) · 69.6 KB
/
Copy pathinternal.go
File metadata and controls
2715 lines (2709 loc) · 69.6 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
// Copyright (c) 2026 Tigera, Inc. All rights reserved.
// Code generated by applyconfiguration-gen. DO NOT EDIT.
package internal
import (
fmt "fmt"
sync "sync"
typed "sigs.k8s.io/structured-merge-diff/v6/typed"
)
func Parser() *typed.Parser {
parserOnce.Do(func() {
var err error
parser, err = typed.NewParser(schemaYAML)
if err != nil {
panic(fmt.Sprintf("Failed to parse schema: %v", err))
}
})
return parser
}
var parserOnce sync.Once
var parser *typed.Parser
var schemaYAML = typed.YAMLObject(`types:
- name: com.github.projectcalico.api.pkg.apis.projectcalico.v3.AllocationAttribute
map:
fields:
- name: alternateOwnerAttrs
type:
map:
elementType:
scalar: string
- name: handle_id
type:
scalar: string
- name: secondary
type:
map:
elementType:
scalar: string
- name: com.github.projectcalico.api.pkg.apis.projectcalico.v3.AutoHostEndpointConfig
map:
fields:
- name: autoCreate
type:
scalar: string
- name: createDefaultHostEndpoint
type:
scalar: string
- name: templates
type:
list:
elementType:
namedType: com.github.projectcalico.api.pkg.apis.projectcalico.v3.Template
elementRelationship: atomic
- name: com.github.projectcalico.api.pkg.apis.projectcalico.v3.BGPConfiguration
map:
fields:
- name: apiVersion
type:
scalar: string
- name: kind
type:
scalar: string
- name: metadata
type:
namedType: io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta
default: {}
- name: spec
type:
namedType: com.github.projectcalico.api.pkg.apis.projectcalico.v3.BGPConfigurationSpec
default: {}
- name: com.github.projectcalico.api.pkg.apis.projectcalico.v3.BGPConfigurationSpec
map:
fields:
- name: asNumber
type:
scalar: numeric
- name: bindMode
type:
scalar: string
- name: communities
type:
list:
elementType:
namedType: com.github.projectcalico.api.pkg.apis.projectcalico.v3.Community
elementRelationship: atomic
- name: ignoredInterfaces
type:
list:
elementType:
scalar: string
elementRelationship: associative
- name: ipv4NormalRoutePriority
type:
scalar: numeric
- name: ipv6NormalRoutePriority
type:
scalar: numeric
- name: listenPort
type:
scalar: numeric
- name: localWorkloadPeeringIPV4
type:
scalar: string
- name: localWorkloadPeeringIPV6
type:
scalar: string
- name: logSeverityScreen
type:
scalar: string
- name: nodeMeshMaxRestartTime
type:
namedType: io.k8s.apimachinery.pkg.apis.meta.v1.Duration
- name: nodeMeshPassword
type:
namedType: com.github.projectcalico.api.pkg.apis.projectcalico.v3.BGPPassword
- name: nodeToNodeMeshEnabled
type:
scalar: boolean
- name: prefixAdvertisements
type:
list:
elementType:
namedType: com.github.projectcalico.api.pkg.apis.projectcalico.v3.PrefixAdvertisement
elementRelationship: atomic
- name: programClusterRoutes
type:
scalar: string
- name: serviceClusterIPs
type:
list:
elementType:
namedType: com.github.projectcalico.api.pkg.apis.projectcalico.v3.ServiceClusterIPBlock
elementRelationship: atomic
- name: serviceExternalIPs
type:
list:
elementType:
namedType: com.github.projectcalico.api.pkg.apis.projectcalico.v3.ServiceExternalIPBlock
elementRelationship: atomic
- name: serviceLoadBalancerAggregation
type:
scalar: string
- name: serviceLoadBalancerIPs
type:
list:
elementType:
namedType: com.github.projectcalico.api.pkg.apis.projectcalico.v3.ServiceLoadBalancerIPBlock
elementRelationship: atomic
- name: com.github.projectcalico.api.pkg.apis.projectcalico.v3.BGPDaemonStatus
map:
fields:
- name: lastBootTime
type:
scalar: string
- name: lastReconfigurationTime
type:
scalar: string
- name: routerID
type:
scalar: string
- name: state
type:
scalar: string
- name: version
type:
scalar: string
- name: com.github.projectcalico.api.pkg.apis.projectcalico.v3.BGPFilter
map:
fields:
- name: apiVersion
type:
scalar: string
- name: kind
type:
scalar: string
- name: metadata
type:
namedType: io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta
default: {}
- name: spec
type:
namedType: com.github.projectcalico.api.pkg.apis.projectcalico.v3.BGPFilterSpec
default: {}
- name: com.github.projectcalico.api.pkg.apis.projectcalico.v3.BGPFilterAddCommunity
map:
fields:
- name: value
type:
scalar: string
elementRelationship: atomic
- name: com.github.projectcalico.api.pkg.apis.projectcalico.v3.BGPFilterCommunityMatch
map:
fields:
- name: values
type:
list:
elementType:
scalar: string
elementRelationship: atomic
elementRelationship: atomic
- name: com.github.projectcalico.api.pkg.apis.projectcalico.v3.BGPFilterOperation
map:
fields:
- name: addCommunity
type:
namedType: com.github.projectcalico.api.pkg.apis.projectcalico.v3.BGPFilterAddCommunity
- name: prependASPath
type:
namedType: com.github.projectcalico.api.pkg.apis.projectcalico.v3.BGPFilterPrependASPath
- name: setPriority
type:
namedType: com.github.projectcalico.api.pkg.apis.projectcalico.v3.BGPFilterSetPriority
elementRelationship: atomic
- name: com.github.projectcalico.api.pkg.apis.projectcalico.v3.BGPFilterPrefixLengthV4
map:
fields:
- name: max
type:
scalar: numeric
- name: min
type:
scalar: numeric
elementRelationship: atomic
- name: com.github.projectcalico.api.pkg.apis.projectcalico.v3.BGPFilterPrefixLengthV6
map:
fields:
- name: max
type:
scalar: numeric
- name: min
type:
scalar: numeric
elementRelationship: atomic
- name: com.github.projectcalico.api.pkg.apis.projectcalico.v3.BGPFilterPrependASPath
map:
fields:
- name: prefix
type:
list:
elementType:
scalar: numeric
elementRelationship: atomic
elementRelationship: atomic
- name: com.github.projectcalico.api.pkg.apis.projectcalico.v3.BGPFilterRuleV4
map:
fields:
- name: action
type:
scalar: string
default: ""
- name: asPathPrefix
type:
list:
elementType:
scalar: numeric
elementRelationship: atomic
- name: cidr
type:
scalar: string
- name: communities
type:
namedType: com.github.projectcalico.api.pkg.apis.projectcalico.v3.BGPFilterCommunityMatch
- name: interface
type:
scalar: string
- name: matchOperator
type:
scalar: string
- name: operations
type:
list:
elementType:
namedType: com.github.projectcalico.api.pkg.apis.projectcalico.v3.BGPFilterOperation
elementRelationship: atomic
- name: peerType
type:
scalar: string
- name: prefixLength
type:
namedType: com.github.projectcalico.api.pkg.apis.projectcalico.v3.BGPFilterPrefixLengthV4
- name: priority
type:
scalar: numeric
- name: source
type:
scalar: string
elementRelationship: atomic
- name: com.github.projectcalico.api.pkg.apis.projectcalico.v3.BGPFilterRuleV6
map:
fields:
- name: action
type:
scalar: string
default: ""
- name: asPathPrefix
type:
list:
elementType:
scalar: numeric
elementRelationship: atomic
- name: cidr
type:
scalar: string
- name: communities
type:
namedType: com.github.projectcalico.api.pkg.apis.projectcalico.v3.BGPFilterCommunityMatch
- name: interface
type:
scalar: string
- name: matchOperator
type:
scalar: string
- name: operations
type:
list:
elementType:
namedType: com.github.projectcalico.api.pkg.apis.projectcalico.v3.BGPFilterOperation
elementRelationship: atomic
- name: peerType
type:
scalar: string
- name: prefixLength
type:
namedType: com.github.projectcalico.api.pkg.apis.projectcalico.v3.BGPFilterPrefixLengthV6
- name: priority
type:
scalar: numeric
- name: source
type:
scalar: string
elementRelationship: atomic
- name: com.github.projectcalico.api.pkg.apis.projectcalico.v3.BGPFilterSetPriority
map:
fields:
- name: value
type:
scalar: numeric
elementRelationship: atomic
- name: com.github.projectcalico.api.pkg.apis.projectcalico.v3.BGPFilterSpec
map:
fields:
- name: exportV4
type:
list:
elementType:
namedType: com.github.projectcalico.api.pkg.apis.projectcalico.v3.BGPFilterRuleV4
elementRelationship: atomic
- name: exportV6
type:
list:
elementType:
namedType: com.github.projectcalico.api.pkg.apis.projectcalico.v3.BGPFilterRuleV6
elementRelationship: atomic
- name: importV4
type:
list:
elementType:
namedType: com.github.projectcalico.api.pkg.apis.projectcalico.v3.BGPFilterRuleV4
elementRelationship: atomic
- name: importV6
type:
list:
elementType:
namedType: com.github.projectcalico.api.pkg.apis.projectcalico.v3.BGPFilterRuleV6
elementRelationship: atomic
- name: com.github.projectcalico.api.pkg.apis.projectcalico.v3.BGPPassword
map:
fields:
- name: secretKeyRef
type:
namedType: io.k8s.api.core.v1.SecretKeySelector
- name: com.github.projectcalico.api.pkg.apis.projectcalico.v3.BGPPeer
map:
fields:
- name: apiVersion
type:
scalar: string
- name: kind
type:
scalar: string
- name: metadata
type:
namedType: io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta
default: {}
- name: spec
type:
namedType: com.github.projectcalico.api.pkg.apis.projectcalico.v3.BGPPeerSpec
default: {}
- name: com.github.projectcalico.api.pkg.apis.projectcalico.v3.BGPPeerSpec
map:
fields:
- name: asNumber
type:
scalar: numeric
- name: filters
type:
list:
elementType:
scalar: string
elementRelationship: atomic
- name: keepOriginalNextHop
type:
scalar: boolean
- name: keepaliveTime
type:
namedType: io.k8s.apimachinery.pkg.apis.meta.v1.Duration
- name: localASNumber
type:
scalar: numeric
- name: localWorkloadSelector
type:
scalar: string
- name: maxRestartTime
type:
namedType: io.k8s.apimachinery.pkg.apis.meta.v1.Duration
- name: nextHopMode
type:
scalar: string
- name: node
type:
scalar: string
- name: nodeSelector
type:
scalar: string
- name: numAllowedLocalASNumbers
type:
scalar: numeric
- name: password
type:
namedType: com.github.projectcalico.api.pkg.apis.projectcalico.v3.BGPPassword
- name: peerIP
type:
scalar: string
- name: peerSelector
type:
scalar: string
- name: reachableBy
type:
scalar: string
- name: reversePeering
type:
scalar: string
- name: sourceAddress
type:
scalar: string
- name: ttlSecurity
type:
scalar: numeric
- name: com.github.projectcalico.api.pkg.apis.projectcalico.v3.BPFConntrackTimeouts
map:
fields:
- name: creationGracePeriod
type:
scalar: string
- name: genericTimeout
type:
scalar: string
- name: icmpTimeout
type:
scalar: string
- name: tcpEstablished
type:
scalar: string
- name: tcpFinsSeen
type:
scalar: string
- name: tcpResetSeen
type:
scalar: string
- name: tcpSynSent
type:
scalar: string
- name: udpTimeout
type:
scalar: string
- name: com.github.projectcalico.api.pkg.apis.projectcalico.v3.BlockAffinity
map:
fields:
- name: apiVersion
type:
scalar: string
- name: kind
type:
scalar: string
- name: metadata
type:
namedType: io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta
default: {}
- name: spec
type:
namedType: com.github.projectcalico.api.pkg.apis.projectcalico.v3.BlockAffinitySpec
default: {}
- name: com.github.projectcalico.api.pkg.apis.projectcalico.v3.BlockAffinitySpec
map:
fields:
- name: cidr
type:
scalar: string
default: ""
- name: deleted
type:
scalar: boolean
default: false
- name: node
type:
scalar: string
default: ""
- name: state
type:
scalar: string
default: ""
- name: type
type:
scalar: string
- name: com.github.projectcalico.api.pkg.apis.projectcalico.v3.CalicoNodeAgentStatus
map:
fields:
- name: birdV4
type:
namedType: com.github.projectcalico.api.pkg.apis.projectcalico.v3.BGPDaemonStatus
default: {}
- name: birdV6
type:
namedType: com.github.projectcalico.api.pkg.apis.projectcalico.v3.BGPDaemonStatus
default: {}
- name: com.github.projectcalico.api.pkg.apis.projectcalico.v3.CalicoNodeBGPRouteStatus
map:
fields:
- name: routesV4
type:
list:
elementType:
namedType: com.github.projectcalico.api.pkg.apis.projectcalico.v3.CalicoNodeRoute
elementRelationship: atomic
- name: routesV6
type:
list:
elementType:
namedType: com.github.projectcalico.api.pkg.apis.projectcalico.v3.CalicoNodeRoute
elementRelationship: atomic
- name: com.github.projectcalico.api.pkg.apis.projectcalico.v3.CalicoNodeBGPStatus
map:
fields:
- name: numberEstablishedV4
type:
scalar: numeric
default: 0
- name: numberEstablishedV6
type:
scalar: numeric
default: 0
- name: numberNotEstablishedV4
type:
scalar: numeric
default: 0
- name: numberNotEstablishedV6
type:
scalar: numeric
default: 0
- name: peersV4
type:
list:
elementType:
namedType: com.github.projectcalico.api.pkg.apis.projectcalico.v3.CalicoNodePeer
elementRelationship: atomic
- name: peersV6
type:
list:
elementType:
namedType: com.github.projectcalico.api.pkg.apis.projectcalico.v3.CalicoNodePeer
elementRelationship: atomic
- name: com.github.projectcalico.api.pkg.apis.projectcalico.v3.CalicoNodePeer
map:
fields:
- name: peerIP
type:
scalar: string
- name: since
type:
scalar: string
- name: state
type:
scalar: string
- name: type
type:
scalar: string
- name: com.github.projectcalico.api.pkg.apis.projectcalico.v3.CalicoNodeRoute
map:
fields:
- name: destination
type:
scalar: string
- name: gateway
type:
scalar: string
- name: interface
type:
scalar: string
- name: learnedFrom
type:
namedType: com.github.projectcalico.api.pkg.apis.projectcalico.v3.CalicoNodeRouteLearnedFrom
default: {}
- name: type
type:
scalar: string
- name: com.github.projectcalico.api.pkg.apis.projectcalico.v3.CalicoNodeRouteLearnedFrom
map:
fields:
- name: peerIP
type:
scalar: string
- name: sourceType
type:
scalar: string
- name: com.github.projectcalico.api.pkg.apis.projectcalico.v3.CalicoNodeStatus
map:
fields:
- name: apiVersion
type:
scalar: string
- name: kind
type:
scalar: string
- name: metadata
type:
namedType: io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta
default: {}
- name: spec
type:
namedType: com.github.projectcalico.api.pkg.apis.projectcalico.v3.CalicoNodeStatusSpec
default: {}
- name: status
type:
namedType: com.github.projectcalico.api.pkg.apis.projectcalico.v3.CalicoNodeStatusStatus
default: {}
- name: com.github.projectcalico.api.pkg.apis.projectcalico.v3.CalicoNodeStatusSpec
map:
fields:
- name: classes
type:
list:
elementType:
scalar: string
elementRelationship: associative
- name: node
type:
scalar: string
- name: updatePeriodSeconds
type:
scalar: numeric
- name: com.github.projectcalico.api.pkg.apis.projectcalico.v3.CalicoNodeStatusStatus
map:
fields:
- name: agent
type:
namedType: com.github.projectcalico.api.pkg.apis.projectcalico.v3.CalicoNodeAgentStatus
default: {}
- name: bgp
type:
namedType: com.github.projectcalico.api.pkg.apis.projectcalico.v3.CalicoNodeBGPStatus
default: {}
- name: lastUpdated
type:
namedType: io.k8s.apimachinery.pkg.apis.meta.v1.Time
- name: routes
type:
namedType: com.github.projectcalico.api.pkg.apis.projectcalico.v3.CalicoNodeBGPRouteStatus
default: {}
- name: com.github.projectcalico.api.pkg.apis.projectcalico.v3.ClusterInformation
map:
fields:
- name: apiVersion
type:
scalar: string
- name: kind
type:
scalar: string
- name: metadata
type:
namedType: io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta
default: {}
- name: spec
type:
namedType: com.github.projectcalico.api.pkg.apis.projectcalico.v3.ClusterInformationSpec
default: {}
- name: com.github.projectcalico.api.pkg.apis.projectcalico.v3.ClusterInformationSpec
map:
fields:
- name: calicoVersion
type:
scalar: string
- name: clusterGUID
type:
scalar: string
- name: clusterType
type:
scalar: string
- name: datastoreReady
type:
scalar: boolean
- name: variant
type:
scalar: string
- name: com.github.projectcalico.api.pkg.apis.projectcalico.v3.Community
map:
fields:
- name: name
type:
scalar: string
- name: value
type:
scalar: string
elementRelationship: atomic
- name: com.github.projectcalico.api.pkg.apis.projectcalico.v3.ControllersConfig
map:
fields:
- name: loadBalancer
type:
namedType: com.github.projectcalico.api.pkg.apis.projectcalico.v3.LoadBalancerControllerConfig
- name: migration
type:
namedType: com.github.projectcalico.api.pkg.apis.projectcalico.v3.MigrationControllerConfig
- name: namespace
type:
namedType: com.github.projectcalico.api.pkg.apis.projectcalico.v3.NamespaceControllerConfig
- name: node
type:
namedType: com.github.projectcalico.api.pkg.apis.projectcalico.v3.NodeControllerConfig
- name: policy
type:
namedType: com.github.projectcalico.api.pkg.apis.projectcalico.v3.PolicyControllerConfig
- name: serviceAccount
type:
namedType: com.github.projectcalico.api.pkg.apis.projectcalico.v3.ServiceAccountControllerConfig
- name: workloadEndpoint
type:
namedType: com.github.projectcalico.api.pkg.apis.projectcalico.v3.WorkloadEndpointControllerConfig
- name: com.github.projectcalico.api.pkg.apis.projectcalico.v3.EndpointPort
map:
fields:
- name: name
type:
scalar: string
default: ""
- name: port
type:
scalar: numeric
default: 0
- name: protocol
type:
namedType: com.github.projectcalico.api.pkg.lib.numorstring.Protocol
- name: com.github.projectcalico.api.pkg.apis.projectcalico.v3.EntityRule
map:
fields:
- name: namespaceSelector
type:
scalar: string
- name: nets
type:
list:
elementType:
scalar: string
elementRelationship: associative
- name: notNets
type:
list:
elementType:
scalar: string
elementRelationship: associative
- name: notPorts
type:
list:
elementType:
namedType: com.github.projectcalico.api.pkg.lib.numorstring.Port
elementRelationship: atomic
- name: notSelector
type:
scalar: string
- name: ports
type:
list:
elementType:
namedType: com.github.projectcalico.api.pkg.lib.numorstring.Port
elementRelationship: atomic
- name: selector
type:
scalar: string
- name: serviceAccounts
type:
namedType: com.github.projectcalico.api.pkg.apis.projectcalico.v3.ServiceAccountMatch
- name: services
type:
namedType: com.github.projectcalico.api.pkg.apis.projectcalico.v3.ServiceMatch
- name: com.github.projectcalico.api.pkg.apis.projectcalico.v3.FelixConfiguration
map:
fields:
- name: apiVersion
type:
scalar: string
- name: kind
type:
scalar: string
- name: metadata
type:
namedType: io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta
default: {}
- name: spec
type:
namedType: com.github.projectcalico.api.pkg.apis.projectcalico.v3.FelixConfigurationSpec
default: {}
- name: com.github.projectcalico.api.pkg.apis.projectcalico.v3.FelixConfigurationSpec
map:
fields:
- name: allowIPIPPacketsFromWorkloads
type:
scalar: boolean
- name: allowVXLANPacketsFromWorkloads
type:
scalar: boolean
- name: awsSrcDstCheck
type:
scalar: string
- name: bpfAttachType
type:
scalar: string
- name: bpfCTLBLogFilter
type:
scalar: string
- name: bpfConnectTimeLoadBalancing
type:
scalar: string
- name: bpfConnectTimeLoadBalancingEnabled
type:
scalar: boolean
- name: bpfConntrackLogLevel
type:
scalar: string
- name: bpfConntrackMode
type:
scalar: string
- name: bpfConntrackTimeouts
type:
namedType: com.github.projectcalico.api.pkg.apis.projectcalico.v3.BPFConntrackTimeouts
- name: bpfDSROptoutCIDRs
type:
list:
elementType:
scalar: string
elementRelationship: atomic
- name: bpfDataIfacePattern
type:
scalar: string
- name: bpfDisableGROForIfaces
type:
scalar: string
- name: bpfDisableUnprivileged
type:
scalar: boolean
- name: bpfEnabled
type:
scalar: boolean
- name: bpfEnforceRPF
type:
scalar: string
- name: bpfExcludeCIDRsFromNAT
type:
list:
elementType:
scalar: string
elementRelationship: atomic
- name: bpfExportBufferSizeMB
type:
scalar: numeric
- name: bpfExtToServiceConnmark
type:
scalar: numeric
- name: bpfExternalServiceMode
type:
scalar: string
- name: bpfForceTrackPacketsFromIfaces
type:
list:
elementType:
scalar: string
elementRelationship: atomic
- name: bpfHostConntrackBypass
type:
scalar: boolean
- name: bpfHostNetworkedNATWithoutCTLB
type:
scalar: string
- name: bpfIPFragTimeout
type:
namedType: io.k8s.apimachinery.pkg.apis.meta.v1.Duration
- name: bpfIPFragmentReassemblyEnabled
type:
scalar: boolean
- name: bpfJITHardening
type:
scalar: string
- name: bpfKubeProxyHealthzPort
type:
scalar: numeric
- name: bpfKubeProxyIptablesCleanupEnabled
type:
scalar: boolean
- name: bpfKubeProxyMinSyncPeriod
type:
namedType: io.k8s.apimachinery.pkg.apis.meta.v1.Duration
- name: bpfL3IfacePattern
type:
scalar: string
- name: bpfLogFilters
type:
map:
elementType:
scalar: string
- name: bpfLogLevel
type:
scalar: string
default: ""
- name: bpfMaglevMaxEndpointsPerService
type:
scalar: numeric
- name: bpfMaglevMaxServices
type:
scalar: numeric
- name: bpfMapSizeConntrack
type:
scalar: numeric
- name: bpfMapSizeConntrackCleanupQueue
type:
scalar: numeric
- name: bpfMapSizeConntrackScaling
type:
scalar: string
- name: bpfMapSizeIPSets
type:
scalar: numeric
- name: bpfMapSizeIfState
type:
scalar: numeric
- name: bpfMapSizeNATAffinity
type:
scalar: numeric
- name: bpfMapSizeNATBackend
type:
scalar: numeric
- name: bpfMapSizeNATFrontend
type:
scalar: numeric
- name: bpfMapSizePerCpuConntrack
type:
scalar: numeric
- name: bpfMapSizeRoute
type:
scalar: numeric
- name: bpfPSNATPorts
type:
namedType: com.github.projectcalico.api.pkg.lib.numorstring.Port
- name: bpfPolicyDebugEnabled
type:
scalar: boolean
- name: bpfProfiling
type:
scalar: string
- name: bpfRedirectToPeer
type:
scalar: string
- name: cgroupV2Path
type:
scalar: string
- name: chainInsertMode
type:
scalar: string
- name: dataplaneDriver
type:
scalar: string
- name: dataplaneWatchdogTimeout
type:
namedType: io.k8s.apimachinery.pkg.apis.meta.v1.Duration
- name: debugDisableLogDropping
type:
scalar: boolean
- name: debugHost
type:
scalar: string
- name: debugMemoryProfilePath
type:
scalar: string
- name: debugPort
type:
scalar: numeric
- name: debugSimulateCalcGraphHangAfter
type: