feat(plex): initial commit of plex
This commit is contained in:
parent
e8c2cdca94
commit
91f64320f9
17 changed files with 934 additions and 0 deletions
38
apps/plex/base/service.yaml
Normal file
38
apps/plex/base/service.yaml
Normal 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
|
||||
Loading…
Add table
Add a link
Reference in a new issue