Skip to content

Commit 396406f

Browse files
committed
[Build] Update kubectl version in client-java-contrib Dockerfile
This commit updates the Dockerfile in the client-java-contrib directory. It modifies the installation of kubectl to use the updated URL: https://dl.k8s.io/release/v1.20.2/bin/linux/amd64/kubectl. This ensures that the Docker image includes the correct and up-to-date version of kubectl. The previous URL (https://storage.googleapis.com/kubernetes-release/release/v1.20.2/bin/linux/amd64/kubectl) is no longer valid. Signed-off-by: Ricky Sadowski <[email protected]>
1 parent c602849 commit 396406f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

client-java-contrib/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ FROM docker:stable
44
RUN apk add --no-cache git bash && \
55
wget -O /usr/bin/kind https://kind.sigs.k8s.io/dl/v0.11.1/kind-linux-amd64 && \
66
chmod +x /usr/bin/kind && \
7-
wget -O /usr/bin/kubectl https://storage.googleapis.com/kubernetes-release/release/v1.20.2/bin/linux/amd64/kubectl && \
7+
wget -O /usr/bin/kubectl https://dl.k8s.io/release/v1.26.4/bin/linux/amd64/kubectl && \
88
chmod +x /usr/bin/kubectl && \
99
git clone https://github.com/kubernetes-client/gen.git && \
1010
cd gen && \

0 commit comments

Comments
 (0)