From 526933d15c2a31f7cf3d3442cba168bdf83077be Mon Sep 17 00:00:00 2001 From: Moritz Clasmeier Date: Sat, 18 Apr 2026 21:49:56 +0200 Subject: [PATCH 1/3] Enable scanner-v2 by default for 'medium' resoure profile --- internal/deployer/deploy_via_operator.go | 1 - 1 file changed, 1 deletion(-) diff --git a/internal/deployer/deploy_via_operator.go b/internal/deployer/deploy_via_operator.go index 4091112e..a64fe8d5 100644 --- a/internal/deployer/deploy_via_operator.go +++ b/internal/deployer/deploy_via_operator.go @@ -323,7 +323,6 @@ func (d *Deployer) getCentralResourcesOperator(resourcesName string) map[string] }, }, "scanner": map[string]interface{}{ - "scannerComponent": "Disabled", "analyzer": map[string]interface{}{ "scaling": noScaling, }, From c2232867c031ab5c2c74053eea806061ba0704d1 Mon Sep 17 00:00:00 2001 From: Moritz Clasmeier Date: Sat, 18 Apr 2026 21:50:06 +0200 Subject: [PATCH 2/3] Enable scanner-v2 by default for 'ci' resoure profile --- internal/deployer/deploy_via_operator.go | 1 - 1 file changed, 1 deletion(-) diff --git a/internal/deployer/deploy_via_operator.go b/internal/deployer/deploy_via_operator.go index a64fe8d5..c92137e5 100644 --- a/internal/deployer/deploy_via_operator.go +++ b/internal/deployer/deploy_via_operator.go @@ -351,7 +351,6 @@ func (d *Deployer) getCentralResourcesOperator(resourcesName string) map[string] }, }, "scanner": map[string]interface{}{ - "scannerComponent": "Disabled", "analyzer": map[string]interface{}{ "scaling": noScaling, }, From b6431602b34d952c57443ef6cabe29aeaf66e5eb Mon Sep 17 00:00:00 2001 From: Moritz Clasmeier Date: Sat, 18 Apr 2026 22:26:28 +0200 Subject: [PATCH 3/3] Enable scanners for secured cluster resource profiles: 'small' shall only deploy V4 and 'medium' shall deploy both --- internal/deployer/deploy_via_operator.go | 3 --- 1 file changed, 3 deletions(-) diff --git a/internal/deployer/deploy_via_operator.go b/internal/deployer/deploy_via_operator.go index c92137e5..2f43b0bd 100644 --- a/internal/deployer/deploy_via_operator.go +++ b/internal/deployer/deploy_via_operator.go @@ -709,7 +709,6 @@ func (d *Deployer) getSecuredClusterResourcesOperator(resourcesName string) map[ }, }, "scannerV4": map[string]interface{}{ - "scannerComponent": "Disabled", "indexer": map[string]interface{}{ "scaling": noScaling, }, @@ -723,7 +722,6 @@ func (d *Deployer) getSecuredClusterResourcesOperator(resourcesName string) map[ "replicas": 1, }, "scanner": map[string]interface{}{ - "scannerComponent": "Disabled", "analyzer": map[string]interface{}{ "scaling": smallScale, }, @@ -732,7 +730,6 @@ func (d *Deployer) getSecuredClusterResourcesOperator(resourcesName string) map[ "resources": securedClusterSensorResourcesMedium, }, "scannerV4": map[string]interface{}{ - "scannerComponent": "Disabled", "indexer": map[string]interface{}{ "scaling": noScaling, },