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 35c7dd4 commit 75fd98aCopy full SHA for 75fd98a
pkg/lib/image/image.go
@@ -13,5 +13,12 @@ func InferImagePullPolicy(image string) corev1.PullPolicy {
13
if strings.Contains(image, "@") {
14
return corev1.PullIfNotPresent
15
}
16
+
17
+ // Ensure test registry images are pulled only if needed
18
+ // These will normally be loaded through kind load docker-image
19
+ // This is also helps support the e2e fixture image re-build flow (see e2e GHA)
20
+ if strings.HasPrefix(image, "quay.io/olmtest/") {
21
+ return corev1.PullIfNotPresent
22
+ }
23
return corev1.PullAlways
24
0 commit comments