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 9e6c33b commit 0409a45Copy full SHA for 0409a45
pkg/controller/operators/catalog/operator.go
@@ -1590,7 +1590,7 @@ func (o *Operator) syncInstallPlans(obj interface{}) (syncError error) {
1590
1591
// Attempt to unpack bundles before installing
1592
// Note: This should probably use the attenuated client to prevent users from resolving resources they otherwise don't have access to.
1593
- if len(plan.Status.BundleLookups) > 0 {
+ if plan.Status.BundleLookups != nil && len(plan.Status.BundleLookups) > 0 {
1594
unpacked, out, err := o.unpackBundles(plan)
1595
if err != nil {
1596
// Retry sync if non-fatal error
0 commit comments