This repository has been archived on 2024-07-24. You can view files and clone it, but cannot push or open issues or pull requests.
Files
chart/templates/webhook-service.yaml
Konstantin Grachev ad9a7b248f
All checks were successful
continuous-integration/drone/push Build is passing
continuous-integration/drone/tag Build is passing
Remove redundant suffix
2022-11-16 17:30:55 +03:00

16 lines
389 B
YAML

apiVersion: v1
kind: Service
metadata:
name: {{ include "n8n-webhook.fullname" . }}
labels:
{{- include "n8n-webhook.labels" . | nindent 4 }}
spec:
type: {{ .Values.webhook.service.type }}
ports:
- port: {{ .Values.webhook.service.port }}
targetPort: http
protocol: TCP
name: http
selector:
{{- include "n8n-webhook.selectorLabels" . | nindent 4 }}