chore(jellyfin): Mount cache to emptyDir and add PublishedServerURL var (#1853)
* chore(jellyfin): Mount cache to emptyDir and add PublishedServerURL var * default to empty
This commit is contained in:
@@ -21,7 +21,7 @@ name: jellyfin
|
|||||||
sources:
|
sources:
|
||||||
- https://github.com/jellyfin/jellyfin
|
- https://github.com/jellyfin/jellyfin
|
||||||
type: application
|
type: application
|
||||||
version: 9.0.38
|
version: 9.0.39
|
||||||
annotations:
|
annotations:
|
||||||
truecharts.org/catagories: |
|
truecharts.org/catagories: |
|
||||||
- media
|
- media
|
||||||
|
|||||||
@@ -82,7 +82,12 @@ questions:
|
|||||||
type: dict
|
type: dict
|
||||||
attrs:
|
attrs:
|
||||||
# Include{fixedEnv}
|
# Include{fixedEnv}
|
||||||
|
- variable: JELLYFIN_PublishedServerUrl
|
||||||
|
description: "Published Server URL"
|
||||||
|
label: "The Server URL to publish in UDP Auto Discovery response."
|
||||||
|
schema:
|
||||||
|
type: string
|
||||||
|
default: ""
|
||||||
# Include{containerConfig}
|
# Include{containerConfig}
|
||||||
|
|
||||||
- variable: service
|
- variable: service
|
||||||
|
|||||||
@@ -6,6 +6,9 @@ image:
|
|||||||
securityContext:
|
securityContext:
|
||||||
readOnlyRootFilesystem: false
|
readOnlyRootFilesystem: false
|
||||||
|
|
||||||
|
env:
|
||||||
|
JELLYFIN_PublishedServerUrl: "https://jelly.mydomain.com"
|
||||||
|
|
||||||
service:
|
service:
|
||||||
main:
|
main:
|
||||||
ports:
|
ports:
|
||||||
@@ -17,3 +20,7 @@ persistence:
|
|||||||
config:
|
config:
|
||||||
enabled: true
|
enabled: true
|
||||||
mountPath: "/config"
|
mountPath: "/config"
|
||||||
|
cache:
|
||||||
|
enabled: true
|
||||||
|
mountPath: "/cache"
|
||||||
|
type: "emptyDir"
|
||||||
|
|||||||
Reference in New Issue
Block a user