charts/unifi/templates/stun-svc.yaml
2018-06-29 23:18:07 -04:00

19 lines
488 B
YAML

apiVersion: v1
kind: Service
metadata:
name: {{ template "unifi.fullname" . }}-stun
labels:
app: {{ template "unifi.name" . }}
chart: {{ template "unifi.chart" . }}
release: {{ .Release.Name }}
heritage: {{ .Release.Service }}
spec:
type: {{ .Values.stunService.type }}
ports:
- port: {{ .Values.stunService.port }}
targetPort: 10001
protocol: UDP
name: stun
selector:
app: {{ template "unifi.name" . }}
release: {{ .Release.Name }}