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 f357177 commit b6213faCopy full SHA for b6213fa
pkg/controller/operators/catalog/operator.go
@@ -1611,7 +1611,7 @@ func (o *Operator) syncInstallPlans(obj interface{}) (syncError error) {
1611
1612
// Attempt to unpack bundles before installing
1613
// Note: This should probably use the attenuated client to prevent users from resolving resources they otherwise don't have access to.
1614
- if len(plan.Status.BundleLookups) > 0 {
+ if plan.Status.BundleLookups != nil && len(plan.Status.BundleLookups) > 0 {
1615
unpacked, out, err := o.unpackBundles(plan)
1616
if err != nil {
1617
// Retry sync if non-fatal error
0 commit comments