1
0
mirror of https://github.com/rancher/rke.git synced 2025-09-01 06:56:29 +00:00

Merge pull request #2414 from superseb/exclude_aci_img_mirror

Exclude Cisco ACI image from mirror
This commit is contained in:
Sebastiaan van Steenis
2021-01-14 10:27:37 +01:00
committed by GitHub

View File

@@ -6,7 +6,7 @@ var Mirrors = map[string]string{}
func Mirror(image string) string {
orig := image
if strings.HasPrefix(image, "weaveworks") {
if strings.HasPrefix(image, "weaveworks") || strings.HasPrefix(image, "noiro") {
return image
}