1
0
mirror of https://github.com/rancher/rke.git synced 2025-04-28 03:31:24 +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
commit bab7d5feb2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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
}