Skip to content

Commit 4f97101

Browse files
authored
Merge pull request #12361 from PatrickLaabs/12316
🐛 Fixing failed to install kind for e2e tests
2 parents 375fc00 + 9585024 commit 4f97101

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

hack/ensure-kind.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ verify_kind_version() {
4343
if ! [ -d "${GOPATH_BIN}" ]; then
4444
mkdir -p "${GOPATH_BIN}"
4545
fi
46-
curl -sLo "${GOPATH_BIN}/kind" "https://github.com/kubernetes-sigs/kind/releases/download/${MINIMUM_KIND_VERSION}/kind-${goos}-${goarch}"
46+
curl --retry 5 --retry-all-errors -sLo "${GOPATH_BIN}/kind" "https://github.com/kubernetes-sigs/kind/releases/download/${MINIMUM_KIND_VERSION}/kind-${goos}-${goarch}"
4747
chmod +x "${GOPATH_BIN}/kind"
4848
verify_gopath_bin
4949
else

0 commit comments

Comments
 (0)