mirror of
https://ghproxy.com/https://github.com/truecharts/charts.git
synced 2026-07-17 18:40:22 +08:00
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:
|
||||
- https://github.com/jellyfin/jellyfin
|
||||
type: application
|
||||
version: 9.0.38
|
||||
version: 9.0.39
|
||||
annotations:
|
||||
truecharts.org/catagories: |
|
||||
- media
|
||||
|
||||
@@ -82,7 +82,12 @@ questions:
|
||||
type: dict
|
||||
attrs:
|
||||
# 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}
|
||||
|
||||
- variable: service
|
||||
|
||||
@@ -6,6 +6,9 @@ image:
|
||||
securityContext:
|
||||
readOnlyRootFilesystem: false
|
||||
|
||||
env:
|
||||
JELLYFIN_PublishedServerUrl: "https://jelly.mydomain.com"
|
||||
|
||||
service:
|
||||
main:
|
||||
ports:
|
||||
@@ -17,3 +20,7 @@ persistence:
|
||||
config:
|
||||
enabled: true
|
||||
mountPath: "/config"
|
||||
cache:
|
||||
enabled: true
|
||||
mountPath: "/cache"
|
||||
type: "emptyDir"
|
||||
|
||||
Reference in New Issue
Block a user