Skip to content

Commit d2e2d64

Browse files
committed
chore: revert dockerfile.deps changes
1 parent a2cbd48 commit d2e2d64

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

deploy/skaffold/Dockerfile.deps

+7-7
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ ARG ARCH=amd64
1818
FROM alpine:3.21.2 as download-kubectl
1919
ARG ARCH
2020
# https://dl.k8s.io/release/stable.txt
21-
ENV KUBECTL_VERSION v1.32.3
21+
ENV KUBECTL_VERSION v1.32.1
2222
ENV KUBECTL_URL https://storage.googleapis.com/skaffold/deps/kubectl/${KUBECTL_VERSION}/kubectl
2323
COPY deploy/skaffold/digests/kubectl.${ARCH}.sha256 .
2424
RUN wget -O kubectl "${KUBECTL_URL}" && sha256sum -c kubectl.${ARCH}.sha256
@@ -28,7 +28,7 @@ RUN chmod +x kubectl
2828
FROM alpine:3.21.2 as download-helm
2929
ARG ARCH
3030
RUN echo arch=$ARCH
31-
ENV HELM_VERSION v3.17.2
31+
ENV HELM_VERSION v3.17.0
3232
ENV HELM_URL https://storage.googleapis.com/skaffold/deps/helm/helm-${HELM_VERSION}-linux-${ARCH}.tar.gz
3333
COPY deploy/skaffold/digests/helm.${ARCH}.sha256 .
3434
RUN wget -O helm.tar.gz "${HELM_URL}" && sha256sum -c helm.${ARCH}.sha256
@@ -46,7 +46,7 @@ RUN tar -xvf kustomize.tar.gz
4646
# Download kpt (see https://github.com/kptdev/kpt/releases/latest)
4747
FROM alpine:3.21.2 as download-kpt
4848
ARG ARCH
49-
ENV KPT_VERSION 1.0.0-beta.56
49+
ENV KPT_VERSION 1.0.0-beta.55
5050
ENV KPT_URL https://storage.googleapis.com/skaffold/deps/kpt/v${KPT_VERSION}/kpt_linux_amd64
5151
COPY deploy/skaffold/digests/kpt.${ARCH}.sha256 .
5252
RUN wget -O kpt "${KPT_URL}" && sha256sum -c kpt.${ARCH}.sha256
@@ -73,7 +73,7 @@ RUN chmod +x container-structure-test
7373
# Download kind (see https://github.com/kubernetes-sigs/kind/releases/latest)
7474
FROM alpine:3.21.2 as download-kind
7575
ARG ARCH
76-
ENV KIND_VERSION v0.27.0
76+
ENV KIND_VERSION v0.26.0
7777
ENV KIND_URL https://storage.googleapis.com/skaffold/deps/kind/${KIND_VERSION}/kind-linux-${ARCH}
7878
COPY deploy/skaffold/digests/kind.${ARCH}.sha512 .
7979
RUN wget -O kind "${KIND_URL}" && sha512sum -c kind.${ARCH}.sha512
@@ -82,7 +82,7 @@ RUN chmod +x kind
8282
# Download k3d (see https://github.com/k3d-io/k3d/releases/latest)
8383
FROM alpine:3.21.2 as download-k3d
8484
ARG ARCH
85-
ENV K3D_VERSION v5.8.3
85+
ENV K3D_VERSION v5.8.1
8686
ENV K3D_URL https://storage.googleapis.com/skaffold/deps/k3d/${K3D_VERSION}/k3d-linux-amd64
8787
COPY deploy/skaffold/digests/k3d.${ARCH}.sha256 .
8888
RUN wget -O k3d "${K3D_URL}" && sha256sum -c k3d.${ARCH}.sha256
@@ -91,7 +91,7 @@ RUN chmod +x k3d
9191
# Download gcloud (see https://cloud.google.com/sdk/docs/release-notes)
9292
FROM alpine:3.21.2 as download-gcloud
9393
ARG ARCH
94-
ENV GCLOUD_VERSION 517.0.0
94+
ENV GCLOUD_VERSION 507.0.0
9595
ENV GCLOUD_URL https://dl.google.com/dl/cloudsdk/channels/rapid/downloads/google-cloud-sdk-${GCLOUD_VERSION}-linux-GCLOUDARCH.tar.gz
9696
# SHAs listed at https://cloud.google.com/sdk/docs/downloads-versioned-archives
9797
COPY deploy/skaffold/digests/gcloud.${ARCH}.sha256 .
@@ -104,7 +104,7 @@ RUN tar -zxf gcloud.tar.gz
104104
# Download bazel (see https://github.com/bazelbuild/bazel/releases/latest)
105105
FROM alpine:3.21.2 as download-bazel
106106
ARG ARCH
107-
ENV BAZEL_VERSION 8.1.1
107+
ENV BAZEL_VERSION 8.0.1
108108
ENV BAZEL_URL https://storage.googleapis.com/skaffold/deps/bazel/${BAZEL_VERSION}/bazel-${BAZEL_VERSION}-linux-BAZELARCH
109109
COPY deploy/skaffold/digests/bazel.${ARCH}.sha256 .
110110
RUN \

0 commit comments

Comments
 (0)