Skip to content

Commit c1ae9c6

Browse files
author
Michal Minář
committed
image-pruning: derefence imagestreamtags
Create strong references to images for each pod/bc/dc/etc that uses <host>/<repo>:tag reference. Resolves [bz#1498604](https://bugzilla.redhat.com/show_bug.cgi?id=1498604) Signed-off-by: Michal Minář <[email protected]>
1 parent d61dcb0 commit c1ae9c6

File tree

4 files changed

+433
-266
lines changed

4 files changed

+433
-266
lines changed

pkg/image/graph/nodes/nodes.go

+6-2
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,12 @@ func EnsureAllImageStreamTagNodes(g osgraph.MutableUniqueGraph, is *imageapi.Ima
3636
return ret
3737
}
3838

39-
func FindImage(g osgraph.MutableUniqueGraph, imageName string) graph.Node {
40-
return g.Find(ImageNodeName(&imageapi.Image{ObjectMeta: metav1.ObjectMeta{Name: imageName}}))
39+
func FindImage(g osgraph.MutableUniqueGraph, imageName string) *ImageNode {
40+
n := g.Find(ImageNodeName(&imageapi.Image{ObjectMeta: metav1.ObjectMeta{Name: imageName}}))
41+
if imageNode, ok := n.(*ImageNode); ok {
42+
return imageNode
43+
}
44+
return nil
4145
}
4246

4347
// EnsureDockerRepositoryNode adds the named Docker repository tag reference to the graph if it does

0 commit comments

Comments
 (0)