Skip to content

Commit f1a1611

Browse files
committed
Updates for v3.24.5
1 parent aadb205 commit f1a1611

21 files changed

+107
-65
lines changed

calico/_data/versions.yml

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,39 @@
1+
- title: v3.24.5
2+
manifests_url: https://raw.githubusercontent.com/projectcalico/calico/v3.24.5
3+
chart:
4+
version: 0
5+
tigera-operator:
6+
image: tigera/operator
7+
registry: quay.io
8+
version: v1.28.5
9+
components:
10+
typha:
11+
version: v3.24.5
12+
calicoctl:
13+
version: v3.24.5
14+
calico/node:
15+
version: v3.24.5
16+
calico/cni:
17+
version: v3.24.5
18+
calico/apiserver:
19+
version: v3.24.5
20+
calico/kube-controllers:
21+
version: v3.24.5
22+
calico/flannel-migration-controller:
23+
version: v3.24.5
24+
calico/windows:
25+
version: v3.24.5
26+
networking-calico:
27+
version: v3.24.5
28+
flannel:
29+
version: v0.15.1
30+
calico/dikastes:
31+
version: v3.24.5
32+
flexvol:
33+
version: v3.24.5
34+
csi-driver:
35+
version: v3.24.5
36+
137
- title: v3.24.4
238
manifests_url: https://raw.githubusercontent.com/projectcalico/calico/v3.24.4
339
chart:
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
07 Nov 2022
2+
3+
#### Bug fixes
4+
5+
- ebpf: fix cleaning ifstate when iface goes down [95659e1](https://github.com/projectcalico/calico/commit/95659e1167b49a24adb60abc79f279935f7d82cc) (@tomastigera)
6+
- Fixed issue when Calico Windows hostprocess installation would fail to clean up a previous manual install of Calico Windows. [calico #6957](https://github.com/projectcalico/calico/pull/6957) (@coutinhop)

charts/calico/values.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# The Calico version to use when generating manifests.
2-
version: v3.24.4
2+
version: v3.24.5
33

44
# Configure the images to use when generating manifests.
55
node:

charts/tigera-operator/values.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,8 +41,8 @@ podLabels: {}
4141
# Image and registry configuration for the tigera/operator pod.
4242
tigeraOperator:
4343
image: tigera/operator
44-
version: v1.28.4
44+
version: v1.28.5
4545
registry: quay.io
4646
calicoctl:
4747
image: docker.io/calico/ctl
48-
tag: v3.24.4
48+
tag: v3.24.5

manifests/apiserver.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ spec:
7777
env:
7878
- name: DATASTORE_TYPE
7979
value: kubernetes
80-
image: calico/apiserver:v3.24.4
80+
image: calico/apiserver:v3.24.5
8181
livenessProbe:
8282
httpGet:
8383
path: /version

manifests/calico-bpf.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4395,7 +4395,7 @@ spec:
43954395
# It can be deleted if this is a fresh installation, or if you have already
43964396
# upgraded to use calico-ipam.
43974397
- name: upgrade-ipam
4398-
image: docker.io/calico/cni:v3.24.4
4398+
image: docker.io/calico/cni:v3.24.5
43994399
imagePullPolicy: IfNotPresent
44004400
command: ["/opt/cni/bin/calico-ipam", "-upgrade"]
44014401
envFrom:
@@ -4434,7 +4434,7 @@ spec:
44344434
# This container installs the CNI binaries
44354435
# and CNI network config file on each node.
44364436
- name: install-cni
4437-
image: docker.io/calico/cni:v3.24.4
4437+
image: docker.io/calico/cni:v3.24.5
44384438
imagePullPolicy: IfNotPresent
44394439
command: ["/opt/cni/bin/install"]
44404440
envFrom:
@@ -4488,7 +4488,7 @@ spec:
44884488
# i.e. bpf at /sys/fs/bpf and cgroup2 at /run/calico/cgroup. Calico-node initialisation is executed
44894489
# in best effort fashion, i.e. no failure for errors, to not disrupt pod creation in iptable mode.
44904490
- name: "mount-bpffs"
4491-
image: docker.io/calico/node:v3.24.4
4491+
image: docker.io/calico/node:v3.24.5
44924492
imagePullPolicy: IfNotPresent
44934493
command: ["calico-node", "-init", "-best-effort"]
44944494
volumeMounts:
@@ -4514,7 +4514,7 @@ spec:
45144514
# container programs network policy and routes on each
45154515
# host.
45164516
- name: calico-node
4517-
image: docker.io/calico/node:v3.24.4
4517+
image: docker.io/calico/node:v3.24.5
45184518
imagePullPolicy: IfNotPresent
45194519
envFrom:
45204520
- configMapRef:
@@ -4745,7 +4745,7 @@ spec:
47454745
priorityClassName: system-cluster-critical
47464746
containers:
47474747
- name: calico-kube-controllers
4748-
image: docker.io/calico/kube-controllers:v3.24.4
4748+
image: docker.io/calico/kube-controllers:v3.24.5
47494749
imagePullPolicy: IfNotPresent
47504750
env:
47514751
# Choose which controllers to run.

manifests/calico-etcd.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -266,7 +266,7 @@ spec:
266266
# This container installs the CNI binaries
267267
# and CNI network config file on each node.
268268
- name: install-cni
269-
image: docker.io/calico/cni:v3.24.4
269+
image: docker.io/calico/cni:v3.24.5
270270
imagePullPolicy: IfNotPresent
271271
command: ["/opt/cni/bin/install"]
272272
envFrom:
@@ -312,7 +312,7 @@ spec:
312312
# i.e. bpf at /sys/fs/bpf and cgroup2 at /run/calico/cgroup. Calico-node initialisation is executed
313313
# in best effort fashion, i.e. no failure for errors, to not disrupt pod creation in iptable mode.
314314
- name: "mount-bpffs"
315-
image: docker.io/calico/node:v3.24.4
315+
image: docker.io/calico/node:v3.24.5
316316
imagePullPolicy: IfNotPresent
317317
command: ["calico-node", "-init", "-best-effort"]
318318
volumeMounts:
@@ -338,7 +338,7 @@ spec:
338338
# container programs network policy and routes on each
339339
# host.
340340
- name: calico-node
341-
image: docker.io/calico/node:v3.24.4
341+
image: docker.io/calico/node:v3.24.5
342342
imagePullPolicy: IfNotPresent
343343
envFrom:
344344
- configMapRef:
@@ -578,7 +578,7 @@ spec:
578578
hostNetwork: true
579579
containers:
580580
- name: calico-kube-controllers
581-
image: docker.io/calico/kube-controllers:v3.24.4
581+
image: docker.io/calico/kube-controllers:v3.24.5
582582
imagePullPolicy: IfNotPresent
583583
env:
584584
# The location of the etcd cluster.

manifests/calico-policy-only.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4391,7 +4391,7 @@ spec:
43914391
# This container installs the CNI binaries
43924392
# and CNI network config file on each node.
43934393
- name: install-cni
4394-
image: docker.io/calico/cni:v3.24.4
4394+
image: docker.io/calico/cni:v3.24.5
43954395
imagePullPolicy: IfNotPresent
43964396
command: ["/opt/cni/bin/install"]
43974397
envFrom:
@@ -4428,7 +4428,7 @@ spec:
44284428
# i.e. bpf at /sys/fs/bpf and cgroup2 at /run/calico/cgroup. Calico-node initialisation is executed
44294429
# in best effort fashion, i.e. no failure for errors, to not disrupt pod creation in iptable mode.
44304430
- name: "mount-bpffs"
4431-
image: docker.io/calico/node:v3.24.4
4431+
image: docker.io/calico/node:v3.24.5
44324432
imagePullPolicy: IfNotPresent
44334433
command: ["calico-node", "-init", "-best-effort"]
44344434
volumeMounts:
@@ -4454,7 +4454,7 @@ spec:
44544454
# container programs network policy and routes on each
44554455
# host.
44564456
- name: calico-node
4457-
image: docker.io/calico/node:v3.24.4
4457+
image: docker.io/calico/node:v3.24.5
44584458
imagePullPolicy: IfNotPresent
44594459
envFrom:
44604460
- configMapRef:
@@ -4642,7 +4642,7 @@ spec:
46424642
priorityClassName: system-cluster-critical
46434643
containers:
46444644
- name: calico-kube-controllers
4645-
image: docker.io/calico/kube-controllers:v3.24.4
4645+
image: docker.io/calico/kube-controllers:v3.24.5
46464646
imagePullPolicy: IfNotPresent
46474647
env:
46484648
# Choose which controllers to run.
@@ -4710,7 +4710,7 @@ spec:
47104710
securityContext:
47114711
fsGroup: 65534
47124712
containers:
4713-
- image: docker.io/calico/typha:v3.24.4
4713+
- image: docker.io/calico/typha:v3.24.5
47144714
imagePullPolicy: IfNotPresent
47154715
name: calico-typha
47164716
ports:

manifests/calico-typha.yaml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4426,7 +4426,7 @@ spec:
44264426
# It can be deleted if this is a fresh installation, or if you have already
44274427
# upgraded to use calico-ipam.
44284428
- name: upgrade-ipam
4429-
image: docker.io/calico/cni:v3.24.4
4429+
image: docker.io/calico/cni:v3.24.5
44304430
imagePullPolicy: IfNotPresent
44314431
command: ["/opt/cni/bin/calico-ipam", "-upgrade"]
44324432
envFrom:
@@ -4454,7 +4454,7 @@ spec:
44544454
# This container installs the CNI binaries
44554455
# and CNI network config file on each node.
44564456
- name: install-cni
4457-
image: docker.io/calico/cni:v3.24.4
4457+
image: docker.io/calico/cni:v3.24.5
44584458
imagePullPolicy: IfNotPresent
44594459
command: ["/opt/cni/bin/install"]
44604460
envFrom:
@@ -4497,7 +4497,7 @@ spec:
44974497
# i.e. bpf at /sys/fs/bpf and cgroup2 at /run/calico/cgroup. Calico-node initialisation is executed
44984498
# in best effort fashion, i.e. no failure for errors, to not disrupt pod creation in iptable mode.
44994499
- name: "mount-bpffs"
4500-
image: docker.io/calico/node:v3.24.4
4500+
image: docker.io/calico/node:v3.24.5
45014501
imagePullPolicy: IfNotPresent
45024502
command: ["calico-node", "-init", "-best-effort"]
45034503
volumeMounts:
@@ -4523,7 +4523,7 @@ spec:
45234523
# container programs network policy and routes on each
45244524
# host.
45254525
- name: calico-node
4526-
image: docker.io/calico/node:v3.24.4
4526+
image: docker.io/calico/node:v3.24.5
45274527
imagePullPolicy: IfNotPresent
45284528
envFrom:
45294529
- configMapRef:
@@ -4746,7 +4746,7 @@ spec:
47464746
priorityClassName: system-cluster-critical
47474747
containers:
47484748
- name: calico-kube-controllers
4749-
image: docker.io/calico/kube-controllers:v3.24.4
4749+
image: docker.io/calico/kube-controllers:v3.24.5
47504750
imagePullPolicy: IfNotPresent
47514751
env:
47524752
# Choose which controllers to run.
@@ -4814,7 +4814,7 @@ spec:
48144814
securityContext:
48154815
fsGroup: 65534
48164816
containers:
4817-
- image: docker.io/calico/typha:v3.24.4
4817+
- image: docker.io/calico/typha:v3.24.5
48184818
imagePullPolicy: IfNotPresent
48194819
name: calico-typha
48204820
ports:

manifests/calico-vxlan.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4390,7 +4390,7 @@ spec:
43904390
# It can be deleted if this is a fresh installation, or if you have already
43914391
# upgraded to use calico-ipam.
43924392
- name: upgrade-ipam
4393-
image: docker.io/calico/cni:v3.24.4
4393+
image: docker.io/calico/cni:v3.24.5
43944394
imagePullPolicy: IfNotPresent
43954395
command: ["/opt/cni/bin/calico-ipam", "-upgrade"]
43964396
envFrom:
@@ -4418,7 +4418,7 @@ spec:
44184418
# This container installs the CNI binaries
44194419
# and CNI network config file on each node.
44204420
- name: install-cni
4421-
image: docker.io/calico/cni:v3.24.4
4421+
image: docker.io/calico/cni:v3.24.5
44224422
imagePullPolicy: IfNotPresent
44234423
command: ["/opt/cni/bin/install"]
44244424
envFrom:
@@ -4461,7 +4461,7 @@ spec:
44614461
# i.e. bpf at /sys/fs/bpf and cgroup2 at /run/calico/cgroup. Calico-node initialisation is executed
44624462
# in best effort fashion, i.e. no failure for errors, to not disrupt pod creation in iptable mode.
44634463
- name: "mount-bpffs"
4464-
image: docker.io/calico/node:v3.24.4
4464+
image: docker.io/calico/node:v3.24.5
44654465
imagePullPolicy: IfNotPresent
44664466
command: ["calico-node", "-init", "-best-effort"]
44674467
volumeMounts:
@@ -4487,7 +4487,7 @@ spec:
44874487
# container programs network policy and routes on each
44884488
# host.
44894489
- name: calico-node
4490-
image: docker.io/calico/node:v3.24.4
4490+
image: docker.io/calico/node:v3.24.5
44914491
imagePullPolicy: IfNotPresent
44924492
envFrom:
44934493
- configMapRef:
@@ -4702,7 +4702,7 @@ spec:
47024702
priorityClassName: system-cluster-critical
47034703
containers:
47044704
- name: calico-kube-controllers
4705-
image: docker.io/calico/kube-controllers:v3.24.4
4705+
image: docker.io/calico/kube-controllers:v3.24.5
47064706
imagePullPolicy: IfNotPresent
47074707
env:
47084708
# Choose which controllers to run.

0 commit comments

Comments
 (0)