Skip to content

Commit 64130e1

Browse files
authored
Bump linkerd-cni to v1.5.2 (#13198)
This release fixes the issue that when the node had hit the inotify limit, deploying the linkerd-cni daemonset would silently fail. Now the problem is caught and the pod enters a crash loop until the limit is no longer surpassed.
1 parent 2439b21 commit 64130e1

File tree

7 files changed

+7
-7
lines changed

7 files changed

+7
-7
lines changed

charts/linkerd2-cni/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ Kubernetes: `>=1.22.0-0`
3232
| ignoreOutboundPorts | string | `""` | Default set of outbound ports to skip via iptables |
3333
| image.name | string | `"cr.l5d.io/linkerd/cni-plugin"` | Docker image for the CNI plugin |
3434
| image.pullPolicy | string | `"IfNotPresent"` | Pull policy for the linkerd-cni container |
35-
| image.version | string | `"v1.5.1"` | Tag for the CNI container Docker image |
35+
| image.version | string | `"v1.5.2"` | Tag for the CNI container Docker image |
3636
| imagePullSecrets | list | `[]` | |
3737
| inboundProxyPort | int | `4143` | Inbound port for the proxy container |
3838
| iptablesMode | string | `"legacy"` | Variant of iptables that will be used to configure routing |

charts/linkerd2-cni/values.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ image:
6161
# -- Docker image for the CNI plugin
6262
name: "cr.l5d.io/linkerd/cni-plugin"
6363
# -- Tag for the CNI container Docker image
64-
version: "v1.5.1"
64+
version: "v1.5.2"
6565
# -- Pull policy for the linkerd-cni container
6666
pullPolicy: IfNotPresent
6767

cli/cmd/testdata/install-cni-plugin_default.golden

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

cli/cmd/testdata/install-cni-plugin_skip_ports.golden

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

cli/cmd/testdata/install_cni_helm_default_output.golden

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pkg/healthcheck/healthcheck_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2372,7 +2372,7 @@ spec:
23722372
serviceAccountName: linkerd-cni
23732373
containers:
23742374
- name: install-cni
2375-
image: cr.l5d.io/linkerd/cni-plugin:v1.5.1
2375+
image: cr.l5d.io/linkerd/cni-plugin:v1.5.2
23762376
env:
23772377
- name: DEST_CNI_NET_DIR
23782378
valueFrom:

pkg/version/version.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ var Version = undefinedVersion
1616
// https://github.com/linkerd/linkerd2-proxy-init This has to be kept in sync
1717
// with the default version in the control plane's values.yaml.
1818
var ProxyInitVersion = "v2.4.1"
19-
var LinkerdCNIVersion = "v1.5.1"
19+
var LinkerdCNIVersion = "v1.5.2"
2020

2121
const (
2222
// undefinedVersion should take the form `channel-version` to conform to

0 commit comments

Comments
 (0)