Skip to content

Commit 26fda14

Browse files
committed
Fix envtest build for v1.32.0
Signed-off-by: Stefan Büringer [email protected]
1 parent 96992f8 commit 26fda14

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

hack/envtest/darwin/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ RUN make WHAT=cmd/kube-apiserver && \
3939

4040
# kubectl
4141
RUN /bin/bash -x -c ' \
42-
{ curl -sfLO https://storage.googleapis.com/kubernetes-release/release/${KUBERNETES_VERSION}/bin/${OS}/${ARCH}/kubectl && \
42+
{ curl -sfLO https://dl.k8s.io/${KUBERNETES_VERSION}/bin/${OS}/${ARCH}/kubectl && \
4343
chmod +x kubectl && \
4444
cp kubectl $DEST; } || \
4545
{ make WHAT=cmd/kubectl && \

hack/envtest/linux/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ RUN curl -sfLO https://dl.k8s.io/${KUBERNETES_VERSION}/bin/${OS}/${ARCH}/kube-ap
3535
cp kube-apiserver $DEST
3636

3737
# kubectl
38-
RUN curl -sfLO https://storage.googleapis.com/kubernetes-release/release/${KUBERNETES_VERSION}/bin/${OS}/${ARCH}/kubectl && \
38+
RUN curl -sfLO https://dl.k8s.io/${KUBERNETES_VERSION}/bin/${OS}/${ARCH}/kubectl && \
3939
chmod +x kubectl && \
4040
cp kubectl $DEST
4141

hack/envtest/windows/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ RUN make WHAT=cmd/kube-apiserver && \
3939

4040
# kubectl
4141
RUN /bin/bash -x -c ' \
42-
{ curl -sfLO https://storage.googleapis.com/kubernetes-release/release/${KUBERNETES_VERSION}/bin/${OS}/${ARCH}/kubectl.exe && \
42+
{ curl -sfLO https://dl.k8s.io/${KUBERNETES_VERSION}/bin/${OS}/${ARCH}/kubectl.exe && \
4343
chmod +x kubectl.exe && \
4444
cp kubectl.exe $DEST; } || \
4545
{ make WHAT=cmd/kubectl && \

0 commit comments

Comments
 (0)