From b3a3d975967d9e13bebcb5507a3c48f8e4ad94f6 Mon Sep 17 00:00:00 2001 From: Corey Date: Thu, 11 May 2023 20:55:13 +0000 Subject: [PATCH] fix: use dl.k8s.io, not kubernetes-release bucket Signed-off-by: Corey --- test/run-e2e-tests.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/run-e2e-tests.sh b/test/run-e2e-tests.sh index 9220a777..eec3f927 100755 --- a/test/run-e2e-tests.sh +++ b/test/run-e2e-tests.sh @@ -85,7 +85,7 @@ if [[ -n "${KIND_E2E}" ]]; then if [[ -z "${SKIP_INSTALL}" ]]; then BIN="${E2E_DIR}/bin" mkdir -p "${BIN}" - curl -Lo "${BIN}/kubectl" "https://storage.googleapis.com/kubernetes-release/release/${K8S_VERSION}/bin/linux/amd64/kubectl" && chmod +x "${BIN}/kubectl" + curl -Lo "${BIN}/kubectl" "https://dl.k8s.io/release/${K8S_VERSION}/bin/linux/amd64/kubectl" && chmod +x "${BIN}/kubectl" curl -Lo "${BIN}/kind" "https://kind.sigs.k8s.io/dl/${KIND_VERSION}/kind-linux-amd64" && chmod +x "${BIN}/kind" export PATH="${BIN}:${PATH}" fi