From 160b366d49c5f6fbb06cb772c660ac683c65dd83 Mon Sep 17 00:00:00 2001 From: Moritz Clasmeier Date: Mon, 20 Apr 2026 17:03:41 +0200 Subject: [PATCH] Fix scanner resources nesting --- internal/deployer/deploy_via_operator.go | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/internal/deployer/deploy_via_operator.go b/internal/deployer/deploy_via_operator.go index a794b96..5b51b96 100644 --- a/internal/deployer/deploy_via_operator.go +++ b/internal/deployer/deploy_via_operator.go @@ -300,9 +300,9 @@ func (d *Deployer) getCentralResourcesOperator(resourcesName string) map[string] "scanner": map[string]interface{}{ "scannerComponent": "Disabled", "analyzer": map[string]interface{}{ - "scaling": noScaling, + "scaling": noScaling, + "resources": centralScannerResourcesSmall, }, - "resources": centralScannerResourcesSmall, "db": map[string]interface{}{ "resources": centralScannerDbResourcesSmall, }, @@ -333,9 +333,9 @@ func (d *Deployer) getCentralResourcesOperator(resourcesName string) map[string] }, "scanner": map[string]interface{}{ "analyzer": map[string]interface{}{ - "scaling": noScaling, + "scaling": noScaling, + "resources": centralScannerResourcesMedium, }, - "resources": centralScannerResourcesMedium, "db": map[string]interface{}{ "resources": centralScannerDbResourcesMedium, },