feat(plex): initial commit of plex

This commit is contained in:
David Landry 2024-05-27 16:11:47 -04:00
parent e8c2cdca94
commit 91f64320f9
17 changed files with 934 additions and 0 deletions

View file

@ -0,0 +1,38 @@
kind: Service
apiVersion: v1
metadata:
name: plex-udp
# annotations:
# metallb.universe.tf/allow-shared-ip: plexserver # annotation name to combine the Service IP, make sure it's same name as in the service UDP yaml
spec:
selector:
app: plexserver
ports:
- port: 1900
targetPort: plex-dlna-udp
name: dlna-udp
protocol: UDP
- port: 5353
targetPort: plex-discovery
name: discovery-udp
protocol: UDP
---
kind: Service
apiVersion: v1
metadata:
name: plex-tcp
# annotations:
# metallb.universe.tf/allow-shared-ip: plexserver
spec:
selector:
app: plexserver
ports:
- port: 80
targetPort: http
name: http
protocol: TCP
- port: 32469
targetPort: plex-dlna
name: dlna-tcp
protocol: TCP