Skip to content

Commit f04cec2

Browse files
committed
Bugfixing image tag references; Add gitleaks to list of officialScanTypes; Bugfixing example config.
1 parent 43ddf8d commit f04cec2

3 files changed

Lines changed: 4 additions & 3 deletions

File tree

operator/internal/telemetry/telemetry.go

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ var telemetryInterval = 24 * time.Hour
2121
// Unofficial Scan Types should be reported as "other" to avoid leakage of confidential data via the scan-types name
2222
var officialScanTypes map[string]bool = map[string]bool{
2323
"amass": true,
24+
"gitleaks": true,
2425
"kube-hunter": true,
2526
"kubeaudit": true,
2627
"ncrack": true,

scanners/gitleaks/examples/private-repository/scan.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,5 +11,5 @@ spec:
1111
- "<YOUR-GITLAB-TOKEN>"
1212
- "--config"
1313
- "/home/config_filenames_only.toml"
14-
- "--comit-since"
14+
- "--commit-since"
1515
- "2020-04-20"

scanners/gitleaks/values.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
image:
22
# image.repository -- Container Image to run the scan
3-
repository: secureCodeBox/scanner-gitleaks
3+
repository: docker.io/securecodebox/scanner-gitleaks
44
# image.tag -- defaults to the charts version
55
tag: null
66

77
parserImage:
88
# parserImage.tag - defaults to the charts version
99
# parserImage.repository -- Parser image repository
10-
repository: secureCodeBox/parser-gitleaks
10+
repository: docker.io/securecodebox/parser-gitleaks
1111
# parserImage.tag -- Parser image tag
1212
# @default -- defaults to the charts version
1313
tag: null

0 commit comments

Comments
 (0)