47 lines
806 B
YAML
47 lines
806 B
YAML
apiVersion: v1
|
|
kind: Service
|
|
metadata:
|
|
name: syncthing-web
|
|
labels:
|
|
app: syncthing
|
|
spec:
|
|
selector:
|
|
app: syncthing
|
|
type: ClusterIP
|
|
ports:
|
|
- port: 8384
|
|
targetPort: 8384
|
|
name: syncthing-web
|
|
---
|
|
apiVersion: v1
|
|
kind: Service
|
|
metadata:
|
|
name: syncthing-listen
|
|
annotations:
|
|
metallb.universe.tf/allow-shared-ip: syncthing-service
|
|
spec:
|
|
selector:
|
|
app: syncthing
|
|
type: LoadBalancer
|
|
LoadBalancerIP: 192.168.3.4
|
|
ports:
|
|
- port: 22000
|
|
targetPort: 22000
|
|
protocol: TCP
|
|
---
|
|
apiVersion: v1
|
|
kind: Service
|
|
metadata:
|
|
name: syncthing-discover
|
|
annotations:
|
|
metallb.universe.tf/allow-shared-ip: syncthing-service
|
|
spec:
|
|
selector:
|
|
app: syncthing
|
|
type: LoadBalancer
|
|
LoadBalancerIP: 192.168.3.4
|
|
ports:
|
|
- port: 22000
|
|
targetPort: 22000
|
|
protocol: UDP
|