Skip to content

File tree

7 files changed

+8
-8
lines changed

7 files changed

+8
-8
lines changed

Dockerfile.proxy

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ RUN --mount=type=secret,id=github \
2828
RUN echo "$LINKERD2_PROXY_VERSION" > proxy-version
2929
ARG LINKERD_AWAIT_VERSION=v0.3.1
3030
RUN bin/scurl -o linkerd-await https://github.com/linkerd/linkerd-await/releases/download/release%2F${LINKERD_AWAIT_VERSION}/linkerd-await-${LINKERD_AWAIT_VERSION}-${TARGETARCH} && chmod +x linkerd-await
31-
ARG LINKERD_VALIDATOR_VERSION=v0.1.4
31+
ARG LINKERD_VALIDATOR_VERSION=v0.1.5
3232
RUN bin/scurl -O https://github.com/linkerd/linkerd2-proxy-init/releases/download/validator%2F${LINKERD_VALIDATOR_VERSION}/linkerd-network-validator-${LINKERD_VALIDATOR_VERSION}-${TARGETARCH}-linux.tgz
3333
RUN tar -zxvf linkerd-network-validator-${LINKERD_VALIDATOR_VERSION}-${TARGETARCH}-linux.tgz && mv linkerd-network-validator-${LINKERD_VALIDATOR_VERSION}-${TARGETARCH}-linux/linkerd-network-validator .
3434

@@ -48,7 +48,7 @@ RUN CGO_ENABLED=0 GOOS=linux GOARCH=$TARGETARCH go build -o /out/proxy-identity
4848
FROM --platform=$BUILDPLATFORM ghcr.io/linkerd/dev:v48-go AS proxy-init
4949
WORKDIR /build
5050
ARG PROXY_INIT_REPO="linkerd/linkerd2-proxy-init"
51-
ARG PROXY_INIT_REF="proxy-init/v2.4.3"
51+
ARG PROXY_INIT_REF="proxy-init/v2.4.4"
5252
RUN --mount=type=secret,id=github \
5353
export GITHUB_TOKEN_FILE=/run/secrets/github; \
5454
git init --initial-branch=main . && \

charts/linkerd2-cni/values.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ image:
6969
# -- Docker image for the CNI plugin
7070
name: "cr.l5d.io/linkerd/cni-plugin"
7171
# -- Tag for the CNI container Docker image
72-
version: "v1.6.4"
72+
version: "v1.6.5"
7373
# -- Pull policy for the linkerd-cni container
7474
pullPolicy: IfNotPresent
7575

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
@@ -2358,7 +2358,7 @@ spec:
23582358
serviceAccountName: linkerd-cni
23592359
containers:
23602360
- name: install-cni
2361-
image: cr.l5d.io/linkerd/cni-plugin:v1.6.4
2361+
image: cr.l5d.io/linkerd/cni-plugin:v1.6.5
23622362
env:
23632363
- name: DEST_CNI_NET_DIR
23642364
valueFrom:

pkg/version/version.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ import (
1212
// DO NOT EDIT
1313
var Version = undefinedVersion
1414

15-
var LinkerdCNIVersion = "v1.6.4"
15+
var LinkerdCNIVersion = "v1.6.5"
1616

1717
const (
1818
// undefinedVersion should take the form `channel-version` to conform to

0 commit comments

Comments
 (0)