Skip to content

Commit 39e3816

Browse files
committed
fix: pass in bundle objects
1 parent 87cbe73 commit 39e3816

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

pkg/manifests/bundle.go

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,10 @@ func (b *Bundle) ObjectsToValidate() []interface{} {
3030
objs = append(objs, crd)
3131
}
3232
objs = append(objs, b.CSV)
33+
34+
for _, o := range b.Objects {
35+
objs = append(objs, o)
36+
}
3337
objs = append(objs, b)
3438

3539
return objs

0 commit comments

Comments
 (0)