Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
projectdiscovery
GitHub Repository: projectdiscovery/nuclei
Path: blob/dev/helm/templates/interactsh-service.yaml
2070 views
1
apiVersion: v1
2
kind: Service
3
metadata:
4
name: {{ .Values.interactsh.service.name }}
5
labels:
6
{{- include "nuclei.labels" . | nindent 4 }}
7
spec:
8
type: {{ .Values.interactsh.service.type }}
9
ports:
10
- port: {{ .Values.interactsh.service.port }}
11
targetPort: http
12
protocol: TCP
13
name: http
14
selector:
15
{{- include "nuclei.selectorLabels" . | nindent 4 }}
16
17