Skip to content

Commit

Permalink
chore: Fix security scanner setup (#1759)
Browse files Browse the repository at this point in the history
Co-authored-by: Hisar Balik <[email protected]>
  • Loading branch information
a-thaler and hisarbalik authored Jan 17, 2025
1 parent 096fe6d commit e4ad70c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions internal/tools/populateimages/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ import (

type secScanConfig struct {
ModuleName string `yaml:"module-name"`
Protocode []string `yaml:"protocode"`
Protecode []string `yaml:"protecode"`
WhiteSource whiteSource `yaml:"whitesource"`
}

Expand Down Expand Up @@ -176,7 +176,7 @@ func generateSecScanConfig(data map[string]string) error {
imgs := []string{data["ENV_IMG"], data["DEFAULT_FLUENTBIT_EXPORTER_IMAGE"], data["DEFAULT_FLUENTBIT_IMAGE"], data["DEFAULT_OTEL_COLLECTOR_IMAGE"], data["DEFAULT_SELFMONITOR_IMAGE"]}
secScanCfg := secScanConfig{
ModuleName: "telemetry",
Protocode: imgs,
Protecode: imgs,
WhiteSource: whiteSource{
Language: "golang-mod",
Subprojects: false,
Expand Down
2 changes: 1 addition & 1 deletion sec-scanners-config.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
module-name: telemetry
protocode:
protecode:
- europe-docker.pkg.dev/kyma-project/prod/telemetry-manager:main
- europe-docker.pkg.dev/kyma-project/prod/directory-size-exporter:v20241212-e4adf27f
- europe-docker.pkg.dev/kyma-project/prod/external/fluent/fluent-bit:3.2.2
Expand Down

0 comments on commit e4ad70c

Please sign in to comment.