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/n8n-service.yaml
Konstantin Grachev 48e01337c9
All checks were successful
continuous-integration/drone/push Build is passing
cs: fix
2023-03-17 17:00:07 +03:00

16 lines
349 B
YAML

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