Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
projectdiscovery
GitHub Repository: projectdiscovery/nuclei
Path: blob/dev/helm/templates/nuclei-configmap.yaml
2070 views
1
---
2
apiVersion: v1
3
kind: ConfigMap
4
metadata:
5
name: nuclei-conf
6
data:
7
nuclei.conf: |-
8
{{ .Values.nuclei.config | indent 4 }}
9
10
---
11
apiVersion: v1
12
kind: ConfigMap
13
metadata:
14
name: nuclei-target-list
15
data:
16
target-list.txt: |-
17
{{ .Values.nuclei.target_list | indent 4 }}
18
19