21 lines
507 B
YAML
21 lines
507 B
YAML
---
|
|
apiVersion: v1
|
|
kind: Service
|
|
metadata:
|
|
name: {{ include "syncthing-relay.fullname" . }}
|
|
labels:
|
|
{{- include "syncthing-relay.labels" . | nindent 4 }}
|
|
spec:
|
|
type: {{ .Values.service.type }}
|
|
ports:
|
|
- name: relay
|
|
port: {{ .Values.service.relay.port }}
|
|
targetPort: relay
|
|
protocol: TCP
|
|
- name: status
|
|
port: {{ .Values.service.status.port }}
|
|
targetPort: status
|
|
protocol: TCP
|
|
selector:
|
|
{{- include "syncthing-relay.selectorLabels" . | nindent 4 }}
|