From 1422fe6b4461ae7f0bf3a11b82ff826351054660 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Charles-Edouard=20Br=C3=A9t=C3=A9ch=C3=A9?= Date: Wed, 17 May 2023 12:45:27 +0200 Subject: [PATCH] fix: panic in reports controller (#7220) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Charles-Edouard Brétéché --- pkg/controllers/report/admission/controller.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/controllers/report/admission/controller.go b/pkg/controllers/report/admission/controller.go index 8be8912b27..23f5ffa3fd 100644 --- a/pkg/controllers/report/admission/controller.go +++ b/pkg/controllers/report/admission/controller.go @@ -228,7 +228,7 @@ func (c *controller) aggregateReports(ctx context.Context, uid types.UID) (kyver } // if we have an aggregated report available, compute results var errs []error - if aggregated != nil { + if aggregated != nil && len(aggregated.GetOwnerReferences()) != 0 { owner := aggregated.GetOwnerReferences()[0] resource := corev1.ObjectReference{ APIVersion: owner.APIVersion,