chart-syncthing_relay: add

This commit is contained in:
2024-11-04 17:10:24 +01:00
parent 422b16ce5d
commit d9351bdaea
10 changed files with 414 additions and 0 deletions

View File

@ -0,0 +1,20 @@
---
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 }}