We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a79c711 commit 58924c2Copy full SHA for 58924c2
test/e2e_node/runner/remote/run_remote.go
@@ -244,6 +244,10 @@ func main() {
244
klog.Fatalf("Could not retrieve list of images based on image prefix %q and family %q: %v",
245
imageConfig.ImageRegex, imageConfig.ImageFamily, err)
246
}
247
+ if len(images) == 0 { // if we have no images we can't run anything
248
+ klog.Fatalf("No matching images retrieved on image prefix %q and family %q: %v",
249
+ imageConfig.ImageRegex, imageConfig.ImageFamily, err)
250
+ }
251
} else {
252
images = []string{imageConfig.Image}
253
0 commit comments