Skip to content

Commit 88533d5

Browse files
authored
Merge pull request #2153 from justaugustus/buckets
packages/deb: Use ci/latest.txt as canonical cross build marker
2 parents 6e3b30b + d74c987 commit 88533d5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/deb/build.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -289,7 +289,7 @@ func getCRIToolsLatestVersion() (string, error) {
289289
}
290290

291291
func getLatestKubeCIBuild() (string, error) {
292-
return fetchVersion("https://dl.k8s.io/ci-cross/latest.txt")
292+
return fetchVersion("https://dl.k8s.io/ci/latest.txt")
293293
}
294294

295295
func getCIBuildsDownloadLinkBase(_ version) (string, error) {
@@ -298,7 +298,7 @@ func getCIBuildsDownloadLinkBase(_ version) (string, error) {
298298
return "", err
299299
}
300300

301-
return fmt.Sprintf("https://dl.k8s.io/ci-cross/v%s", latestCiVersion), nil
301+
return fmt.Sprintf("https://dl.k8s.io/ci/v%s", latestCiVersion), nil
302302
}
303303

304304
func getReleaseDownloadLinkBase(v version) (string, error) {

0 commit comments

Comments
 (0)