Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
projectdiscovery
GitHub Repository: projectdiscovery/nuclei
Path: blob/dev/helm/values.yaml
2061 views
1
# Default values for nuclei.
2
# This is a YAML-formatted file.
3
# Declare variables to be passed into your templates.
4
5
replicaCount: 1
6
7
nuclei:
8
enabled: true
9
image:
10
repository: docker.io/projectdiscovery/nuclei
11
pullPolicy: IfNotPresent
12
tag: "v2.7.5"
13
14
imagePullSecrets: []
15
nameOverride: ""
16
fullnameOverride: ""
17
cron: "0 0 * * Sun"
18
19
config: |
20
interactsh-server: http://nuclei-interactsh # should match the name of interactsh.service.name
21
list: /config/target-list.txt
22
# Headers to include with all HTTP request
23
#header:
24
# - 'X-BugBounty-Hacker: h1/geekboy'
25
26
# Directory based template execution
27
#templates:
28
# - cves/
29
# - vulnerabilities/
30
# - misconfiguration/
31
32
# Tags based template execution
33
#tags: exposures,cve
34
35
# Template Filters
36
#tags: exposures,cve
37
#author: geeknik,pikpikcu,dhiyaneshdk
38
#severity: critical,high,medium
39
40
# Template Allowlist
41
#include-tags: dos,fuzz # Tag based inclusion (allows overwriting nuclei-ignore list)
42
#include-templates: # Template based inclusion (allows overwriting nuclei-ignore list)
43
#- vulnerabilities/xxx
44
#- misconfiguration/xxxx
45
46
# Template Denylist
47
#exclude-tags: info # Tag based exclusion
48
#exclude-templates: # Template based exclusion
49
#- vulnerabilities/xxx
50
#- misconfiguration/xxxx
51
52
# Rate Limit configuration
53
#rate-limit: 500
54
#bulk-size: 50
55
#concurrency: 50
56
57
target_list: |
58
https://10.50.50.2
59
60
interactsh:
61
image:
62
repository: docker.io/projectdiscovery/interactsh-server
63
pullPolicy: IfNotPresent
64
tag: "v1.0.6"
65
66
service:
67
name: "nuclei-interactsh"
68
type: ClusterIP
69
port: 80
70
71
ingress:
72
enabled: false
73
className: ""
74
annotations: {}
75
# kubernetes.io/ingress.class: nginx
76
# kubernetes.io/tls-acme: "true"
77
hosts:
78
- host: chart-example.local
79
paths:
80
- path: /
81
pathType: ImplementationSpecific
82
tls: []
83
# - secretName: chart-example-tls
84
# hosts:
85
# - chart-example.local
86
87
serviceAccount:
88
create: true
89
annotations: {}
90
name: ""
91
92
podAnnotations: {}
93
94
podSecurityContext: {}
95
96
securityContext: {}
97
98
resources: {}
99
# We usually recommend not to specify default resources and to leave this as a conscious
100
# choice for the user. This also increases chances charts run on environments with little
101
# resources, such as Minikube. If you do want to specify resources, uncomment the following
102
# lines, adjust them as necessary, and remove the curly braces after 'resources:'.
103
# limits:
104
# cpu: 100m
105
# memory: 128Mi
106
# requests:
107
# cpu: 100m
108
# memory: 128Mi
109
110
autoscaling:
111
enabled: false
112
minReplicas: 1
113
maxReplicas: 100
114
targetCPUUtilizationPercentage: 80
115
# targetMemoryUtilizationPercentage: 80
116
117
nodeSelector: {}
118
119
tolerations: []
120
121
affinity: {}
122
123