Commit new App releases for TrueCharts

Signed-off-by: TrueCharts-Bot <bot@truecharts.org>
This commit is contained in:
TrueCharts-Bot
2022-02-06 12:23:20 +00:00
parent d1d32c5975
commit 14a2056b2d
13 changed files with 28 additions and 12 deletions

View File

@@ -1,6 +1,15 @@
# Changelog<br>
<a name="jellyfin-9.0.39"></a>
### [jellyfin-9.0.39](https://github.com/truecharts/apps/compare/jellyfin-9.0.38...jellyfin-9.0.39) (2022-02-06)
#### Chore
* Mount cache to emptyDir and add PublishedServerURL var ([#1853](https://github.com/truecharts/apps/issues/1853))
<a name="jellyfin-9.0.38"></a>
### [jellyfin-9.0.38](https://github.com/truecharts/apps/compare/jellyfin-9.0.37...jellyfin-9.0.38) (2022-02-05)
@@ -88,12 +97,3 @@
* update helm general non-major helm releases ([#1693](https://github.com/truecharts/apps/issues/1693))
<a name="jellyfin-9.0.29"></a>
### [jellyfin-9.0.29](https://github.com/truecharts/apps/compare/jellyfin-9.0.28...jellyfin-9.0.29) (2022-01-04)
#### Chore
* update helm general non-major helm releases

View File

@@ -3,4 +3,4 @@ dependencies:
repository: https://truecharts.org
version: 8.14.5
digest: sha256:05d78c16b34a9bd90dce453109dc6a0598d254a091df1af96532b246f4d44f6f
generated: "2022-02-05T12:27:43.916749946Z"
generated: "2022-02-06T12:19:21.752368819Z"

View File

@@ -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

View File

@@ -11,9 +11,13 @@ You will, however, be able to use all values referenced in the common chart here
| Key | Type | Default | Description |
|-----|------|---------|-------------|
| env.JELLYFIN_PublishedServerUrl | string | `"https://jelly.mydomain.com"` | |
| image.pullPolicy | string | `"IfNotPresent"` | |
| image.repository | string | `"tccr.io/truecharts/jellyfin"` | |
| image.tag | string | `"v10.7.7@sha256:0136db4677a2ee2ee8a6962d813d6e3b49aa86784a7cfdc3af76427db32c3470"` | |
| persistence.cache.enabled | bool | `true` | |
| persistence.cache.mountPath | string | `"/cache"` | |
| persistence.cache.type | string | `"emptyDir"` | |
| persistence.config.enabled | bool | `true` | |
| persistence.config.mountPath | string | `"/config"` | |
| securityContext.readOnlyRootFilesystem | bool | `false` | |

View File

@@ -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"

View File

@@ -188,7 +188,12 @@ questions:
schema:
type: string
default: "002"
- variable: JELLYFIN_PublishedServerUrl
description: "Published Server URL"
label: "The Server URL to publish in UDP Auto Discovery response."
schema:
type: string
default: ""
- variable: envList
label: "Image environment"
group: "Container Configuration"