From 7d13e1187fe4b6cf16521e93522cd9d8213bc667 Mon Sep 17 00:00:00 2001 From: Stavros Kois <47820033+stavros-k@users.noreply.github.com> Date: Sun, 6 Feb 2022 14:17:38 +0200 Subject: [PATCH] chore(jellyfin): Mount cache to emptyDir and add PublishedServerURL var (#1853) * chore(jellyfin): Mount cache to emptyDir and add PublishedServerURL var * default to empty --- charts/stable/jellyfin/Chart.yaml | 2 +- charts/stable/jellyfin/questions.yaml | 7 ++++++- charts/stable/jellyfin/values.yaml | 7 +++++++ 3 files changed, 14 insertions(+), 2 deletions(-) diff --git a/charts/stable/jellyfin/Chart.yaml b/charts/stable/jellyfin/Chart.yaml index 521319942d9..f886b7f2459 100644 --- a/charts/stable/jellyfin/Chart.yaml +++ b/charts/stable/jellyfin/Chart.yaml @@ -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 diff --git a/charts/stable/jellyfin/questions.yaml b/charts/stable/jellyfin/questions.yaml index a62596edb1d..b7bb758ceb7 100644 --- a/charts/stable/jellyfin/questions.yaml +++ b/charts/stable/jellyfin/questions.yaml @@ -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 diff --git a/charts/stable/jellyfin/values.yaml b/charts/stable/jellyfin/values.yaml index 317a1a7eb5b..e90b0a8069b 100644 --- a/charts/stable/jellyfin/values.yaml +++ b/charts/stable/jellyfin/values.yaml @@ -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"