Skip to content

Commit d445dbd

Browse files
Commit from GitHub Actions (Scheduled Jobs)
1 parent 7a64700 commit d445dbd

8 files changed

+1881
-0
lines changed

schema/projectcalico.org/bgpconfiguration_v3.json

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,12 @@
4646
"minimum": 1,
4747
"type": "integer"
4848
},
49+
"localWorkloadPeeringIPV4": {
50+
"type": "string"
51+
},
52+
"localWorkloadPeeringIPV6": {
53+
"type": "string"
54+
},
4955
"logSeverityScreen": {
5056
"type": "string"
5157
},

schema/projectcalico.org/bgppeer_v3.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,9 @@
2525
"keepOriginalNextHop": {
2626
"type": "boolean"
2727
},
28+
"localWorkloadSelector": {
29+
"type": "string"
30+
},
2831
"maxRestartTime": {
2932
"type": "string"
3033
},

schema/projectcalico.org/felixconfiguration_v3.json

Lines changed: 72 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,44 @@
5555
],
5656
"type": "string"
5757
},
58+
"bpfConntrackTimeouts": {
59+
"additionalProperties": false,
60+
"properties": {
61+
"creationGracePeriod": {
62+
"pattern": "^(([0-9]*(\\.[0-9]*)?(ms|s|h|m|us)+)+|Auto)$",
63+
"type": "string"
64+
},
65+
"genericTimeout": {
66+
"pattern": "^(([0-9]*(\\.[0-9]*)?(ms|s|h|m|us)+)+|Auto)$",
67+
"type": "string"
68+
},
69+
"icmpTimeout": {
70+
"pattern": "^(([0-9]*(\\.[0-9]*)?(ms|s|h|m|us)+)+|Auto)$",
71+
"type": "string"
72+
},
73+
"tcpEstablished": {
74+
"pattern": "^(([0-9]*(\\.[0-9]*)?(ms|s|h|m|us)+)+|Auto)$",
75+
"type": "string"
76+
},
77+
"tcpFinsSeen": {
78+
"pattern": "^(([0-9]*(\\.[0-9]*)?(ms|s|h|m|us)+)+|Auto)$",
79+
"type": "string"
80+
},
81+
"tcpResetSeen": {
82+
"pattern": "^(([0-9]*(\\.[0-9]*)?(ms|s|h|m|us)+)+|Auto)$",
83+
"type": "string"
84+
},
85+
"tcpSynSent": {
86+
"pattern": "^(([0-9]*(\\.[0-9]*)?(ms|s|h|m|us)+)+|Auto)$",
87+
"type": "string"
88+
},
89+
"udpTimeout": {
90+
"pattern": "^(([0-9]*(\\.[0-9]*)?(ms|s|h|m|us)+)+|Auto)$",
91+
"type": "string"
92+
}
93+
},
94+
"type": "object"
95+
},
5896
"bpfDSROptoutCIDRs": {
5997
"items": {
6098
"type": "string"
@@ -83,6 +121,9 @@
83121
},
84122
"type": "array"
85123
},
124+
"bpfExportBufferSizeMB": {
125+
"type": "integer"
126+
},
86127
"bpfExtToServiceConnmark": {
87128
"type": "integer"
88129
},
@@ -136,6 +177,10 @@
136177
"minimum": 1,
137178
"type": "integer"
138179
},
180+
"bpfMapSizeConntrackScaling": {
181+
"pattern": "^(?i)(Disabled|DoubleIfFull)?$",
182+
"type": "string"
183+
},
139184
"bpfMapSizeIPSets": {
140185
"type": "integer"
141186
},
@@ -151,6 +196,9 @@
151196
"bpfMapSizeNATFrontend": {
152197
"type": "integer"
153198
},
199+
"bpfMapSizePerCpuConntrack": {
200+
"type": "integer"
201+
},
154202
"bpfMapSizeRoute": {
155203
"type": "integer"
156204
},
@@ -175,6 +223,13 @@
175223
"bpfPolicyDebugEnabled": {
176224
"type": "boolean"
177225
},
226+
"bpfProfiling": {
227+
"enum": [
228+
"Enabled",
229+
"Disabled"
230+
],
231+
"type": "string"
232+
},
178233
"bpfRedirectToPeer": {
179234
"enum": [
180235
"Enabled",
@@ -306,6 +361,23 @@
306361
],
307362
"type": "string"
308363
},
364+
"flowLogsCollectorDebugTrace": {
365+
"type": "boolean"
366+
},
367+
"flowLogsFlushInterval": {
368+
"pattern": "^([0-9]+(\\\\.[0-9]+)?(ms|s|m|h))*$",
369+
"type": "string"
370+
},
371+
"flowLogsGoldmaneServer": {
372+
"type": "string"
373+
},
374+
"flowLogsPolicyEvaluationMode": {
375+
"enum": [
376+
"None",
377+
"Continuous"
378+
],
379+
"type": "string"
380+
},
309381
"genericXDPEnabled": {
310382
"type": "boolean"
311383
},

schema/projectcalico.org/ippool_v3.json

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,13 @@
1818
},
1919
"type": "array"
2020
},
21+
"assignmentMode": {
22+
"enum": [
23+
"Automatic",
24+
"Manual"
25+
],
26+
"type": "string"
27+
},
2128
"blockSize": {
2229
"type": "integer"
2330
},

schema/projectcalico.org/kubecontrollersconfiguration_v3.json

Lines changed: 78 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,15 @@
1515
"controllers": {
1616
"additionalProperties": false,
1717
"properties": {
18+
"loadBalancer": {
19+
"additionalProperties": false,
20+
"properties": {
21+
"assignIPs": {
22+
"type": "string"
23+
}
24+
},
25+
"type": "object"
26+
},
1827
"namespace": {
1928
"additionalProperties": false,
2029
"properties": {
@@ -32,6 +41,36 @@
3241
"properties": {
3342
"autoCreate": {
3443
"type": "string"
44+
},
45+
"createDefaultHostEndpoint": {
46+
"type": "string"
47+
},
48+
"templates": {
49+
"items": {
50+
"additionalProperties": false,
51+
"properties": {
52+
"generateName": {
53+
"type": "string"
54+
},
55+
"interfaceCIDRs": {
56+
"items": {
57+
"type": "string"
58+
},
59+
"type": "array"
60+
},
61+
"labels": {
62+
"additionalProperties": {
63+
"type": "string"
64+
},
65+
"type": "object"
66+
},
67+
"nodeSelector": {
68+
"type": "string"
69+
}
70+
},
71+
"type": "object"
72+
},
73+
"type": "array"
3574
}
3675
},
3776
"type": "object"
@@ -115,6 +154,15 @@
115154
"controllers": {
116155
"additionalProperties": false,
117156
"properties": {
157+
"loadBalancer": {
158+
"additionalProperties": false,
159+
"properties": {
160+
"assignIPs": {
161+
"type": "string"
162+
}
163+
},
164+
"type": "object"
165+
},
118166
"namespace": {
119167
"additionalProperties": false,
120168
"properties": {
@@ -132,6 +180,36 @@
132180
"properties": {
133181
"autoCreate": {
134182
"type": "string"
183+
},
184+
"createDefaultHostEndpoint": {
185+
"type": "string"
186+
},
187+
"templates": {
188+
"items": {
189+
"additionalProperties": false,
190+
"properties": {
191+
"generateName": {
192+
"type": "string"
193+
},
194+
"interfaceCIDRs": {
195+
"items": {
196+
"type": "string"
197+
},
198+
"type": "array"
199+
},
200+
"labels": {
201+
"additionalProperties": {
202+
"type": "string"
203+
},
204+
"type": "object"
205+
},
206+
"nodeSelector": {
207+
"type": "string"
208+
}
209+
},
210+
"type": "object"
211+
},
212+
"type": "array"
135213
}
136214
},
137215
"type": "object"

0 commit comments

Comments
 (0)