Files
neon-vortex/neon-vortex-chart/templates/service.yaml

19 lines
507 B
YAML
Raw Normal View History

apiVersion: v1
kind: Service
metadata:
name: {{ include "neon-vortex.fullname" . }}
labels:
{{- include "neon-vortex.labels" . | nindent 4 }}
spec:
type: {{ .Values.service.type }}
ports:
- port: {{ .Values.service.port }}
targetPort: http
protocol: TCP
name: http
{{- if and (eq .Values.service.type "NodePort") (.Values.service.nodePort) }}
nodePort: {{ .Values.service.nodePort }}
{{- end }}
selector:
{{- include "neon-vortex.selectorLabels" . | nindent 4 }}