mirror of
https://github.com/k3s-io/kubernetes.git
synced 2025-07-25 20:53:33 +00:00
Merge pull request #91470 from MHBauer/fail-0-remote-images
explicitly fail if no images are found when running remote tests
This commit is contained in:
commit
5592b5d67a
@ -244,6 +244,10 @@ func main() {
|
|||||||
klog.Fatalf("Could not retrieve list of images based on image prefix %q and family %q: %v",
|
klog.Fatalf("Could not retrieve list of images based on image prefix %q and family %q: %v",
|
||||||
imageConfig.ImageRegex, imageConfig.ImageFamily, err)
|
imageConfig.ImageRegex, imageConfig.ImageFamily, err)
|
||||||
}
|
}
|
||||||
|
if len(images) == 0 { // if we have no images we can't run anything
|
||||||
|
klog.Fatalf("No matching images retrieved on image prefix %q and family %q: %v",
|
||||||
|
imageConfig.ImageRegex, imageConfig.ImageFamily, err)
|
||||||
|
}
|
||||||
} else {
|
} else {
|
||||||
images = []string{imageConfig.Image}
|
images = []string{imageConfig.Image}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user