diff --git a/charts/stable/jellyfin/Chart.yaml b/charts/stable/jellyfin/Chart.yaml index 9a87e70b..99fe6a32 100644 --- a/charts/stable/jellyfin/Chart.yaml +++ b/charts/stable/jellyfin/Chart.yaml @@ -1,8 +1,8 @@ apiVersion: v2 -appVersion: 10.7.0 +appVersion: 10.7.5 description: Jellyfin is a Free Software Media System name: jellyfin -version: 7.4.0 +version: 8.0.0 kubeVersion: ">=1.16.0-0" keywords: - jellyfin @@ -19,4 +19,4 @@ maintainers: dependencies: - name: common repository: https://library-charts.k8s-at-home.com - version: 2.5.0 + version: 3.0.2 diff --git a/charts/stable/jellyfin/README.md b/charts/stable/jellyfin/README.md index 627d01fd..0777d951 100644 --- a/charts/stable/jellyfin/README.md +++ b/charts/stable/jellyfin/README.md @@ -1,6 +1,6 @@ # jellyfin -![Version: 7.4.0](https://img.shields.io/badge/Version-7.4.0-informational?style=flat-square) ![AppVersion: 10.7.0](https://img.shields.io/badge/AppVersion-10.7.0-informational?style=flat-square) +![Version: 8.0.0](https://img.shields.io/badge/Version-8.0.0-informational?style=flat-square) ![AppVersion: 10.7.5](https://img.shields.io/badge/AppVersion-10.7.5-informational?style=flat-square) Jellyfin is a Free Software Media System @@ -19,7 +19,7 @@ Kubernetes: `>=1.16.0-0` | Repository | Name | Version | |------------|------|---------| -| https://library-charts.k8s-at-home.com | common | 2.5.0 | +| https://library-charts.k8s-at-home.com | common | 3.0.2 | ## TL;DR @@ -76,20 +76,15 @@ N/A | Key | Type | Default | Description | |-----|------|---------|-------------| -| image.pullPolicy | string | `"IfNotPresent"` | | -| image.repository | string | `"jellyfin/jellyfin"` | | -| image.tag | string | `"10.7.0"` | | -| ingress.enabled | bool | `false` | | -| persistence.cache.emptyDir.enabled | bool | `false` | | -| persistence.cache.enabled | bool | `false` | | -| persistence.cache.mountPath | string | `"/cache"` | | -| persistence.config.emptyDir.enabled | bool | `false` | | -| persistence.config.enabled | bool | `false` | | -| persistence.media.emptyDir.enabled | bool | `false` | | -| persistence.media.enabled | bool | `false` | | -| persistence.media.mountPath | string | `"/media"` | | -| service.port.port | int | `8096` | | -| strategy.type | string | `"Recreate"` | | +| env | object | See below | environment variables. See [image docs](https://jellyfin.org/docs/general/administration/configuration.html) for more details. | +| env.TZ | string | `"UTC"` | Set the container timezone | +| image.pullPolicy | string | `"IfNotPresent"` | image pull policy | +| image.repository | string | `"jellyfin/jellyfin"` | image repository | +| image.tag | string | `"10.7.5"` | image tag | +| ingress.main | object | See values.yaml | Enable and configure ingress settings for the chart under this key. | +| persistence | object | See values.yaml | Configure persistence settings for the chart under this key. | +| podSecurityContext | object | `{}` | Configure the Security Context for the Pod | +| service | object | See values.yaml | Configures service settings for the chart. | ## Changelog @@ -97,6 +92,14 @@ All notable changes to this application Helm chart will be documented in this fi The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +### [8.0.0] + +#### Changed + +- **BREAKING**: Upgraded the common library dependency to version 3.0.2. This introduces several breaking changes (`service`, `ingress` and `persistence` keys have been refactored). + Be sure to check out the [library chart](https://github.com/k8s-at-home/library-charts/blob/common-3.0.2/charts/stable/common/) for the up-to-date values. +- Changed image tag to `10.7.5`. + ### [7.3.2] #### Added @@ -149,6 +152,7 @@ Drop browser cache and cookies for your jellyfin URL! - Replaced LinuxServer.io image with official +[8.0.0]: #8.0.0 [7.3.2]: #7.3.2 [6.0.0]: #6.0.0 diff --git a/charts/stable/jellyfin/README_CHANGELOG.md.gotmpl b/charts/stable/jellyfin/README_CHANGELOG.md.gotmpl index eca97d6d..249ca014 100644 --- a/charts/stable/jellyfin/README_CHANGELOG.md.gotmpl +++ b/charts/stable/jellyfin/README_CHANGELOG.md.gotmpl @@ -9,6 +9,14 @@ All notable changes to this application Helm chart will be documented in this fi The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +### [8.0.0] + +#### Changed + +- **BREAKING**: Upgraded the common library dependency to version 3.0.2. This introduces several breaking changes (`service`, `ingress` and `persistence` keys have been refactored). + Be sure to check out the [library chart](https://github.com/k8s-at-home/library-charts/blob/common-3.0.2/charts/stable/common/) for the up-to-date values. +- Changed image tag to `10.7.5`. + ### [7.3.2] #### Added @@ -61,6 +69,7 @@ Drop browser cache and cookies for your jellyfin URL! - Replaced LinuxServer.io image with official +[8.0.0]: #8.0.0 [7.3.2]: #7.3.2 [6.0.0]: #6.0.0 {{- end -}} diff --git a/charts/stable/jellyfin/values.yaml b/charts/stable/jellyfin/values.yaml index d36d2f49..71bf76b6 100644 --- a/charts/stable/jellyfin/values.yaml +++ b/charts/stable/jellyfin/values.yaml @@ -6,64 +6,50 @@ # image: + # -- image repository repository: jellyfin/jellyfin + # -- image tag + tag: 10.7.5 + # -- image pull policy pullPolicy: IfNotPresent - tag: 10.7.0 -strategy: - type: Recreate +# -- environment variables. See [image docs](https://jellyfin.org/docs/general/administration/configuration.html) for more details. +# @default -- See below +env: + # -- Set the container timezone + TZ: UTC +# -- Configures service settings for the chart. +# @default -- See values.yaml service: - port: - port: 8096 + main: + ports: + http: + port: 8096 ingress: - enabled: false + # -- Enable and configure ingress settings for the chart under this key. + # @default -- See values.yaml + main: + enabled: false +# -- Configure persistence settings for the chart under this key. +# @default -- See values.yaml persistence: config: enabled: false - emptyDir: - enabled: false # Cache does NOT contain temporary transcoding data. cache: enabled: false - emptyDir: - enabled: false mountPath: /cache - ## Persistent Volume Storage Class - ## If defined, storageClassName: - ## If set to "-", storageClassName: "", which disables dynamic provisioning - ## If undefined (the default) or set to null, no storageClassName spec is - ## set, choosing the default provisioner. (gp2 on AWS, standard on - ## GKE, AWS & OpenStack) - # storageClass: "-" - # accessMode: ReadWriteOnce - # size: 1Gi - ## Do not delete the pvc upon helm uninstall - # skipuninstall: false - # existingClaim: "" media: enabled: false - emptyDir: - enabled: false mountPath: /media - ## Persistent Volume Storage Class - ## If defined, storageClassName: - ## If set to "-", storageClassName: "", which disables dynamic provisioning - ## If undefined (the default) or set to null, no storageClassName spec is - ## set, choosing the default provisioner. (gp2 on AWS, standard on - ## GKE, AWS & OpenStack) - # storageClass: "-" - # accessMode: ReadWriteOnce - # size: 1Gi - ## Do not delete the pvc upon helm uninstall - # skipuninstall: false - # existingClaim: "" -# podSecurityContext: +# -- Configure the Security Context for the Pod +podSecurityContext: {} # runAsUser: 568 # runAsGroup: 568 # fsGroup: 568