2021-10-14 19:47:51 +00:00
|
|
|
# Default values for Logitech Media Server.
|
|
|
|
|
|
|
|
image:
|
|
|
|
repository: lmscommunity/logitechmediaserver
|
|
|
|
pullPolicy: IfNotPresent
|
2021-11-23 10:46:49 +00:00
|
|
|
tag: 8.3.0@sha256:a035d06f8d57af2deb3de7ee9d5d22d894b17d31a1dbd46f45844af20e6cfc5a
|
2021-10-14 19:47:51 +00:00
|
|
|
env:
|
|
|
|
# Permissions Settings
|
|
|
|
PUID: 568
|
|
|
|
|
|
|
|
envTpl:
|
|
|
|
# Port to host the web service on. This will be the internal container port exposed and needs to be the same as the public service port.
|
|
|
|
# The main http port always has to be a 1:1 mapping between external and internal port.
|
|
|
|
# You can't just map it like -p 9002:9000, as Logitech Media Server is telling players on which port to connect.
|
|
|
|
# Therefore if you have to use a different http port for LMS (other than 9000) you'll have to set the HTTP_PORT environment variable
|
|
|
|
HTTP_PORT: "{{ .Values.service.main.ports.main.port }}"
|
|
|
|
|
|
|
|
securityContext:
|
|
|
|
readOnlyRootFilesystem: false
|
|
|
|
runAsNonRoot: false
|
|
|
|
|
|
|
|
podSecurityContext:
|
|
|
|
runAsUser: 0
|
|
|
|
runAsGroup: 0
|
|
|
|
|
|
|
|
service:
|
|
|
|
main:
|
|
|
|
ports:
|
|
|
|
main:
|
|
|
|
# Please note that the main http port always has to be a 1:1 mapping between external and internal port.
|
|
|
|
# You can't just map it like -p 7000:9000, as Logitech Media Server is telling players on which port to connect.
|
|
|
|
# Therefore if you have to use a different http port for LMS (other than 9000) you'll have to set the HTTP_PORT environment variable
|
2021-11-06 22:13:38 +00:00
|
|
|
targetPort: 7000
|
2021-10-14 19:47:51 +00:00
|
|
|
port: 7000
|
|
|
|
cli:
|
2021-11-20 23:20:50 +00:00
|
|
|
enabled: true
|
2021-10-14 19:47:51 +00:00
|
|
|
ports:
|
|
|
|
cli:
|
2021-11-20 23:20:50 +00:00
|
|
|
enabled: true
|
2021-11-06 22:13:38 +00:00
|
|
|
targetPort: 9090
|
2021-10-14 19:47:51 +00:00
|
|
|
port: 9090
|
|
|
|
playertcp:
|
2021-11-20 23:20:50 +00:00
|
|
|
enabled: true
|
2021-10-14 19:47:51 +00:00
|
|
|
ports:
|
|
|
|
slimprototcp:
|
2021-11-20 23:20:50 +00:00
|
|
|
enabled: true
|
2021-11-06 22:13:38 +00:00
|
|
|
targetPort: 3483
|
2021-10-14 19:47:51 +00:00
|
|
|
port: 3483
|
|
|
|
playerudp:
|
2021-11-20 23:20:50 +00:00
|
|
|
enabled: true
|
2021-10-14 19:47:51 +00:00
|
|
|
ports:
|
|
|
|
slimprotoudp:
|
2021-11-20 23:20:50 +00:00
|
|
|
enabled: true
|
2021-11-06 22:13:38 +00:00
|
|
|
targetPort: 3483
|
2021-10-14 19:47:51 +00:00
|
|
|
port: 3483
|
|
|
|
|
|
|
|
persistence:
|
|
|
|
config:
|
|
|
|
enabled: true
|
2021-11-14 19:19:16 +00:00
|
|
|
mountPath: "/config"
|