This repository was archived by the owner on Oct 14, 2020. It is now read-only.
File tree Expand file tree Collapse file tree 7 files changed +31
-3
lines changed
Expand file tree Collapse file tree 7 files changed +31
-3
lines changed Original file line number Diff line number Diff line change @@ -241,7 +241,7 @@ jobs:
241241 npm ci
242242 - name : " Nmap Integration Tests"
243243 run : |
244- kubectl --namespace integration-tests apply -f integrations/nmap/nmap-scan-type.yaml -f integrations/nmap/nmap -parse-definition.yaml
244+ helm -n integration-tests install nmap ./ integrations/nmap/ --set="parserImage.tag=sha-$(git rev -parse --short HEAD)"
245245 cd tests/integration/
246246 npx jest --ci --color nmap
247247 - name : " Inspect Operator"
Original file line number Diff line number Diff line change @@ -63,7 +63,7 @@ helm install persistence-elastic ./persistence/persistence-elastic/
6363# Deploy definitions for the integrated scanners
6464kubectl apply -f integrations/amass/amass-scan-type.yaml -f integrations/amass/amass-parse-definition.yaml
6565kubectl apply -f integrations/nikto/nikto-scan-type.yaml -f integrations/nikto/nikto-parse-definition.yaml
66- kubectl apply -f integrations/ nmap/nmap-scan-type.yaml -f integrations/nmap/nmap-parse-definition.yaml
66+ helm install nmap ./ integrations/nmap/
6767kubectl apply -f integrations/ssh_scan/ssh-scan-scan-type.yaml -f integrations/ssh_scan/ssh-scan-parse-definition.yaml
6868kubectl apply -f integrations/sslyze/sslyze-scan-type.yaml -f integrations/sslyze/sslyze-parse-definition.yaml
6969kubectl apply -f integrations/zap/zap-scan-type.yaml -f integrations/zap/zap-parse-definition.yaml
Original file line number Diff line number Diff line change 1+ .DS_Store
2+
3+ parser/
4+ scanner/
Original file line number Diff line number Diff line change 1+ apiVersion : v2
2+ name : nmap
3+ description : A Helm chart for the NMAP security Scanner that integrates with the secureCodeBox.
4+
5+ type : application
6+ version : 0.1.0
7+ appVersion : 0.1.0
8+
9+ keywords :
10+ - security
11+ - nmap
12+ - scanner
13+ - secureCodeBox
14+ home : https://www.securecodebox.io/scanner/Nmap
15+ icon : https://www.securecodebox.io/integrationIcons/Nmap.svg
16+ sources :
17+ - https://github.com/secureCodeBox/scanner-infrastructure-nmap
18+ maintainers :
19+ - name : iteratec GmbH
20+ email : security@iteratec.com
Original file line number Diff line number Diff line change @@ -4,4 +4,4 @@ metadata:
44 name : " nmap-xml"
55spec :
66 handlesResultsType : nmap-xml
7- image : scbexperimental/parser-nmap
7+ image : " {{ .Values.parserImage.registry }}/{{ .Values.parserImage.repository }}:{{ .Values.parserImage.tag }} "
File renamed without changes.
Original file line number Diff line number Diff line change 1+ parserImage :
2+ registry : docker.io
3+ repository : scbexperimental/parser-nmap
4+ tag : latest
You can’t perform that action at this time.
0 commit comments