mirror of
https://github.com/kubernetes/kubernetes.git
synced 2026-06-09 00:34:10 -04:00
build: Don't attempt to use mirror for CNI plugin downloads
Signed-off-by: Stephen Augustus <saugustus@vmware.com>
This commit is contained in:
parent
96f2588b61
commit
b430f022fc
1 changed files with 1 additions and 1 deletions
|
|
@ -60,7 +60,7 @@ def cni_tarballs():
|
|||
name = "kubernetes_cni_%s" % arch,
|
||||
downloaded_file_path = "kubernetes_cni.tgz",
|
||||
sha256 = sha,
|
||||
urls = mirror("https://storage.googleapis.com/k8s-artifacts-cni/release/v%s/cni-plugins-%s-v%s.tgz" % (CNI_VERSION, arch, CNI_VERSION)),
|
||||
urls = ["https://storage.googleapis.com/k8s-artifacts-cni/release/v%s/cni-plugins-%s-v%s.tgz" % (CNI_VERSION, arch, CNI_VERSION)],
|
||||
)
|
||||
|
||||
def cri_tarballs():
|
||||
|
|
|
|||
Loading…
Reference in a new issue