Skip to content

Commit a0b88ec

Browse files
Merge pull request #4376 from danudey/auto-build-updates-v1.38.11
[release-v1.38] Auto Release Update for v1.38.11
2 parents 606ce78 + 5e49b04 commit a0b88ec

3 files changed

Lines changed: 69 additions & 48 deletions

File tree

config/calico_versions.yml

Lines changed: 20 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -1,41 +1,41 @@
11
# Components defined here are required to be kept in sync with hack/gen-versions/calico.go.tpl
2-
title: v3.30.5
2+
title: v3.30.6
33
components:
44
libcalico-go:
5-
version: v3.30.5
5+
version: v3.30.6
66
typha:
7-
version: v3.30.5
7+
version: v3.30.6
88
calico/node:
9-
version: v3.30.5
9+
version: v3.30.6
1010
calico/cni:
11-
version: v3.30.5
11+
version: v3.30.6
1212
calico/node-windows:
13-
version: v3.30.5
13+
version: v3.30.6
1414
calico/cni-windows:
15-
version: v3.30.5
15+
version: v3.30.6
1616
calico/kube-controllers:
17-
version: v3.30.5
17+
version: v3.30.6
1818
calico/goldmane:
19-
version: v3.30.5
19+
version: v3.30.6
2020
flexvol:
21-
version: v3.30.5
21+
version: v3.30.6
2222
calico/apiserver:
23-
version: v3.30.5
23+
version: v3.30.6
2424
calico/csi:
25-
version: v3.30.5
25+
version: v3.30.6
2626
csi-node-driver-registrar:
27-
version: v3.30.5
27+
version: v3.30.6
2828
key-cert-provisioner:
29-
version: v3.30.5
29+
version: v3.30.6
3030
calico/whisker:
31-
version: v3.30.5
31+
version: v3.30.6
3232
calico/whisker-backend:
33-
version: v3.30.5
33+
version: v3.30.6
3434
calico/envoy-gateway:
35-
version: v3.30.5
35+
version: v3.30.6
3636
calico/envoy-proxy:
37-
version: v3.30.5
37+
version: v3.30.6
3838
calico/envoy-ratelimit:
39-
version: v3.30.5
39+
version: v3.30.6
4040
calico/guardian:
41-
version: v3.30.5
41+
version: v3.30.6

pkg/components/calico.go

Lines changed: 26 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -20,154 +20,154 @@ package components
2020
import "github.com/tigera/operator/version"
2121

2222
var (
23-
CalicoRelease string = "v3.30.5"
23+
CalicoRelease string = "v3.30.6"
2424

2525
ComponentCalicoCNI = Component{
26-
Version: "v3.30.5",
26+
Version: "v3.30.6",
2727
Image: "calico/cni",
2828
Registry: "",
2929
}
3030

3131
ComponentCalicoCNIFIPS = Component{
32-
Version: "v3.30.5-fips",
32+
Version: "v3.30.6-fips",
3333
Image: "calico/cni",
3434
Registry: "",
3535
}
3636

3737
ComponentCalicoCNIWindows = Component{
38-
Version: "v3.30.5",
38+
Version: "v3.30.6",
3939
Image: "calico/cni-windows",
4040
Registry: "",
4141
}
4242

4343
ComponentCalicoCSRInitContainer = Component{
44-
Version: "v3.30.5",
44+
Version: "v3.30.6",
4545
Image: "calico/key-cert-provisioner",
4646
Registry: "",
4747
}
4848

4949
ComponentCalicoKubeControllers = Component{
50-
Version: "v3.30.5",
50+
Version: "v3.30.6",
5151
Image: "calico/kube-controllers",
5252
Registry: "",
5353
}
5454

5555
ComponentCalicoKubeControllersFIPS = Component{
56-
Version: "v3.30.5-fips",
56+
Version: "v3.30.6-fips",
5757
Image: "calico/kube-controllers",
5858
Registry: "",
5959
}
6060

6161
ComponentCalicoNode = Component{
62-
Version: "v3.30.5",
62+
Version: "v3.30.6",
6363
Image: "calico/node",
6464
Registry: "",
6565
}
6666

6767
ComponentCalicoNodeFIPS = Component{
68-
Version: "v3.30.5-fips",
68+
Version: "v3.30.6-fips",
6969
Image: "calico/node",
7070
Registry: "",
7171
}
7272

7373
ComponentCalicoNodeWindows = Component{
74-
Version: "v3.30.5",
74+
Version: "v3.30.6",
7575
Image: "calico/node-windows",
7676
Registry: "",
7777
}
7878

7979
ComponentCalicoTypha = Component{
80-
Version: "v3.30.5",
80+
Version: "v3.30.6",
8181
Image: "calico/typha",
8282
Registry: "",
8383
}
8484

8585
ComponentCalicoTyphaFIPS = Component{
86-
Version: "v3.30.5-fips",
86+
Version: "v3.30.6-fips",
8787
Image: "calico/typha",
8888
Registry: "",
8989
}
9090

9191
ComponentCalicoFlexVolume = Component{
92-
Version: "v3.30.5",
92+
Version: "v3.30.6",
9393
Image: "calico/pod2daemon-flexvol",
9494
Registry: "",
9595
}
9696

9797
ComponentCalicoAPIServer = Component{
98-
Version: "v3.30.5",
98+
Version: "v3.30.6",
9999
Image: "calico/apiserver",
100100
Registry: "",
101101
}
102102

103103
ComponentCalicoAPIServerFIPS = Component{
104-
Version: "v3.30.5-fips",
104+
Version: "v3.30.6-fips",
105105
Image: "calico/apiserver",
106106
Registry: "",
107107
}
108108

109109
ComponentCalicoCSI = Component{
110-
Version: "v3.30.5",
110+
Version: "v3.30.6",
111111
Image: "calico/csi",
112112
Registry: "",
113113
}
114114

115115
ComponentCalicoCSIFIPS = Component{
116-
Version: "v3.30.5-fips",
116+
Version: "v3.30.6-fips",
117117
Image: "calico/csi",
118118
Registry: "",
119119
}
120120

121121
ComponentCalicoCSIRegistrar = Component{
122-
Version: "v3.30.5",
122+
Version: "v3.30.6",
123123
Image: "calico/node-driver-registrar",
124124
Registry: "",
125125
}
126126

127127
ComponentCalicoCSIRegistrarFIPS = Component{
128-
Version: "v3.30.5-fips",
128+
Version: "v3.30.6-fips",
129129
Image: "calico/node-driver-registrar",
130130
Registry: "",
131131
}
132132

133133
ComponentCalicoGoldmane = Component{
134-
Version: "v3.30.5",
134+
Version: "v3.30.6",
135135
Image: "calico/goldmane",
136136
Registry: "",
137137
}
138138

139139
ComponentCalicoWhisker = Component{
140-
Version: "v3.30.5",
140+
Version: "v3.30.6",
141141
Image: "calico/whisker",
142142
Registry: "",
143143
}
144144

145145
ComponentCalicoWhiskerBackend = Component{
146-
Version: "v3.30.5",
146+
Version: "v3.30.6",
147147
Image: "calico/whisker-backend",
148148
Registry: "",
149149
}
150150

151151
ComponentCalicoEnvoyGateway = Component{
152-
Version: "v3.30.5",
152+
Version: "v3.30.6",
153153
Image: "calico/envoy-gateway",
154154
Registry: "",
155155
}
156156

157157
ComponentCalicoEnvoyProxy = Component{
158-
Version: "v3.30.5",
158+
Version: "v3.30.6",
159159
Image: "calico/envoy-proxy",
160160
Registry: "",
161161
}
162162

163163
ComponentCalicoEnvoyRatelimit = Component{
164-
Version: "v3.30.5",
164+
Version: "v3.30.6",
165165
Image: "calico/envoy-ratelimit",
166166
Registry: "",
167167
}
168168

169169
ComponentCalicoGuardian = Component{
170-
Version: "v3.30.5",
170+
Version: "v3.30.6",
171171
Image: "calico/guardian",
172172
Registry: "",
173173
}

pkg/crds/calico/crd.projectcalico.org_felixconfigurations.yaml

Lines changed: 23 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -852,6 +852,18 @@ spec:
852852
pattern: ^.*
853853
x-kubernetes-int-or-string: true
854854
type: array
855+
logActionRateLimit:
856+
description: |-
857+
LogActionRateLimit sets the rate of hitting a Log action. The value must be in the format "N/unit",
858+
where N is a number and unit is one of: second, minute, hour, or day. For example: "10/second" or "100/hour".
859+
pattern: ^[1-9]\d{0,3}/(?:second|minute|hour|day)$
860+
type: string
861+
logActionRateLimitBurst:
862+
description: LogActionRateLimitBurst sets the rate limit burst of
863+
hitting a Log action when LogActionRateLimit is enabled.
864+
maximum: 9999
865+
minimum: 0
866+
type: integer
855867
logDebugFilenameRegex:
856868
description: |-
857869
LogDebugFilenameRegex controls which source code files have their Debug log output included in the logs.
@@ -863,8 +875,17 @@ spec:
863875
none to disable file logging. [Default: /var/log/calico/felix.log]'
864876
type: string
865877
logPrefix:
866-
description: 'LogPrefix is the log prefix that Felix uses when rendering
867-
LOG rules. [Default: calico-packet]'
878+
description: |-
879+
LogPrefix is the log prefix that Felix uses when rendering LOG rules. It is possible to use the following specifiers
880+
to include extra information in the log prefix.
881+
- %t: Tier name.
882+
- %k: Kind (short names).
883+
- %n: Policy or profile name.
884+
- %p: Policy or profile name (namespace/name for namespaced kinds or just name for non namespaced kinds).
885+
Calico includes ": " characters at the end of the generated log prefix.
886+
Note that iptables shows up to 29 characters for the log prefix and nftables up to 127 characters. Extra characters are truncated.
887+
[Default: calico-packet]
888+
pattern: '^([a-zA-Z0-9%: /_-])*$'
868889
type: string
869890
logSeverityFile:
870891
description: 'LogSeverityFile is the log severity above which logs

0 commit comments

Comments
 (0)