Merge pull request #129286 from ameukam/automated-cherry-pick-of-#129095-upstream-release-1.32

Automated cherry pick of #129095: fetch cni plugins from GitHub releases
This commit is contained in:
Kubernetes Prow Robot
2025-01-06 12:32:16 +01:00
committed by GitHub

View File

@@ -80,7 +80,7 @@ func getCNIURL() string {
if builder.IsTargetArchArm64() {
cniArch = "arm64"
}
cniURL := fmt.Sprintf("https://storage.googleapis.com/k8s-artifacts-cni/release/%s/cni-plugins-linux-%s-%s.tgz", cniVersion, cniArch, cniVersion)
cniURL := fmt.Sprintf("https://github.com/containernetworking/plugins/releases/download/%s/cni-plugins-linux-%s-%s.tgz", cniVersion, cniArch, cniVersion)
return cniURL
}