Skip to content
This repository was archived by the owner on Oct 14, 2020. It is now read-only.

Commit d3e06be

Browse files
committed
Migrate all ScanTypes and ParseDefinitions to use helm
1 parent c062974 commit d3e06be

26 files changed

+149
-6
lines changed

integrations/amass/.helmignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
.DS_Store
2+
3+
parser/
4+
scanner/

integrations/amass/Chart.yaml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
apiVersion: v2
2+
name: amass
3+
description: A Helm chart for the Amass security Scanner that integrates with the secureCodeBox.
4+
5+
type: application
6+
version: 0.1.0
7+
appVersion: latest
8+
9+
keywords:
10+
- security
11+
- amass
12+
- scanner
13+
- secureCodeBox
14+
home: https://www.securecodebox.io/scanner/Amass
15+
icon: https://www.securecodebox.io/integrationIcons/Amass.svg
16+
sources:
17+
- https://github.com/secureCodeBox/secureCodeBox
18+
maintainers:
19+
- name: iteratec GmbH
20+
email: security@iteratec.com

integrations/amass/amass-parse-definition.yaml renamed to integrations/amass/templates/amass-parse-definition.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@ metadata:
44
name: "amass-jsonl"
55
spec:
66
handlesResultsType: amass-jsonl
7-
image: scbexperimental/parser-amass
7+
image: "{{ .Values.parserImage.registry }}/{{ .Values.parserImage.repository }}:{{ .Values.parserImage.tag }}"
File renamed without changes.

integrations/amass/values.yaml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
parserImage:
2+
registry: docker.io
3+
repository: scbexperimental/parser-amass
4+
tag: latest

integrations/nikto/.helmignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
.DS_Store
2+
3+
parser/
4+
scanner/

integrations/nikto/Chart.yaml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
apiVersion: v2
2+
name: nikto
3+
description: A Helm chart for the Nikto security Scanner that integrates with the secureCodeBox.
4+
5+
type: application
6+
version: 0.1.0
7+
appVersion: latest
8+
9+
keywords:
10+
- security
11+
- nikto
12+
- scanner
13+
- secureCodeBox
14+
home: https://www.securecodebox.io/scanner/Nikto
15+
icon: https://www.securecodebox.io/integrationIcons/Nikto.svg
16+
sources:
17+
- https://github.com/secureCodeBox/secureCodeBox
18+
maintainers:
19+
- name: iteratec GmbH
20+
email: security@iteratec.com

integrations/nikto/nikto-parse-definition.yaml renamed to integrations/nikto/templates/nikto-parse-definition.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@ metadata:
44
name: "nikto-json"
55
spec:
66
handlesResultsType: nikto-json
7-
image: scbexperimental/parser-nikto
7+
image: "{{ .Values.parserImage.registry }}/{{ .Values.parserImage.repository }}:{{ .Values.parserImage.tag }}"
File renamed without changes.

integrations/nikto/values.yaml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
parserImage:
2+
registry: docker.io
3+
repository: scbexperimental/parser-nikto
4+
tag: latest

0 commit comments

Comments
 (0)