feat(jellyfin)!: major jellyfin rework (#41832)

**Description**
This PR moves JellyFin to use our container and split its storage.
Breaking as users would have to manually restructure their storage
accordingly

**⚙️ Type of change**

- [ ] ⚙️ Feature/App addition
- [ ] 🪛 Bugfix
- [ ] ⚠️ Breaking change (fix or feature that would cause existing
functionality to not work as expected)
- [ ] 🔃 Refactor of current code
- [ ] 📜 Documentation Changes

**🧪 How Has This Been Tested?**
<!--
Please describe the tests that you ran to verify your changes. Provide
instructions so we can reproduce. Please also list any relevant details
for your test configuration
-->

**📃 Notes:**
<!-- Please enter any other relevant information here -->

**✔️ Checklist:**

- [ ] ⚖️ My code follows the style guidelines of this project
- [ ] 👀 I have performed a self-review of my own code
- [ ] #️⃣ I have commented my code, particularly in hard-to-understand
areas
- [ ] 📄 I have made changes to the documentation
- [ ] 🧪 I have added tests to this description that prove my fix is
effective or that my feature works
- [ ] ⬆️ I increased versions for any altered app according to semantic
versioning
- [ ] I made sure the title starts with `feat(chart-name):`,
`fix(chart-name):`, `chore(chart-name):`, `docs(chart-name):` or
`fix(docs):`

** App addition**

If this PR is an app addition please make sure you have done the
following.

- [ ] 🖼️ I have added an icon in the Chart's root directory called
`icon.png`

---

_Please don't blindly check all the boxes. Read them and only check
those that apply.
Those checkboxes are there for the reviewer to see what is this all
about and
the status of this PR with a quick glance._

---------

Signed-off-by: Kjeld Schouten <info@kjeldschouten.nl>
Co-authored-by: Alfred Göppel <43101280+alfi0812@users.noreply.github.com>
This commit is contained in:
Kjeld Schouten
2025-11-18 17:37:15 +01:00
committed by GitHub
parent 8d64f75695
commit 30b4a67322
2 changed files with 14 additions and 3 deletions
+1 -1
View File
@@ -40,4 +40,4 @@ sources:
- https://github.com/trueforge-org/truecharts/tree/master/charts/stable/jellyfin
- https://hub.docker.com/r/alpine/socat
type: application
version: 21.12.9
version: 22.0.0
+13 -2
View File
@@ -1,7 +1,7 @@
image:
repository: ghcr.io/jellyfin/jellyfin
repository: oci.trueforge.org/containerforge/jellyfin
pullPolicy: IfNotPresent
tag: 10.11.3@sha256:fab30d85f4ec3e19556ca1d91b82b12329fc4a6d2a4b330673354af9218e1d28
tag: 10.11.3@sha256:3d703e500983426486fc479362d7e9211f9fc2b9eb360f05464d5ba4f189e514
broadcastProxyImage:
repository: docker.io/alpine/socat
pullPolicy: IfNotPresent
@@ -24,6 +24,13 @@ persistence:
config:
enabled: true
mountPath: "/config"
data:
enabled: true
mountPath: "/data"
logs:
enabled: true
mountPath: "/logs"
type: "emptyDir"
cache:
enabled: true
mountPath: "/cache"
@@ -42,6 +49,10 @@ workload:
containers:
main:
env:
JELLYFIN_DATA_DIR: /data
JELLYFIN_CONFIG_DIR: /config
JELLYFIN_LOG_DIR: /logs
JELLYFIN_CACHE_DIR: /cache
JELLYFIN_PublishedServerUrl: "{{ $.Values.chartContext.appUrl }}"
broadcastproxy:
enabled: false