Skip to content

Commit

Permalink
Merge pull request #2153 from justaugustus/buckets
Browse files Browse the repository at this point in the history
packages/deb: Use ci/latest.txt as canonical cross build marker
  • Loading branch information
k8s-ci-robot authored Jul 3, 2021
2 parents 6e3b30b + d74c987 commit 88533d5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/deb/build.go
Original file line number Diff line number Diff line change
Expand Up @@ -289,7 +289,7 @@ func getCRIToolsLatestVersion() (string, error) {
}

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

func getCIBuildsDownloadLinkBase(_ version) (string, error) {
Expand All @@ -298,7 +298,7 @@ func getCIBuildsDownloadLinkBase(_ version) (string, error) {
return "", err
}

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

func getReleaseDownloadLinkBase(v version) (string, error) {
Expand Down

0 comments on commit 88533d5

Please sign in to comment.