fix(jellyfin): update AppVersion to v10.9.6

This commit is contained in:
WrenIX 2024-06-10 22:57:39 +02:00
parent 0f16270e77
commit e4ecf55fc1
Signed by: wrenix
GPG key ID: 7AFDB012974B1BB5
5 changed files with 35 additions and 29 deletions

View file

@ -3,9 +3,9 @@ name: jellyfin
description: The Free Software Media System description: The Free Software Media System
icon: https://raw.githubusercontent.com/jellyfin/jellyfin-ux/master/branding/SVG/icon-transparent.svg icon: https://raw.githubusercontent.com/jellyfin/jellyfin-ux/master/branding/SVG/icon-transparent.svg
type: application type: application
version: 0.1.6 version: 0.1.7
# renovate: image=docker.io/jellyfin/jellyfin # renovate: image=ghcr.io/jellyfin/jellyfin
appVersion: "10.8.13-1" appVersion: "10.9.6"
maintainers: maintainers:
- name: WrenIX - name: WrenIX
url: https://wrenix.eu url: https://wrenix.eu

View file

@ -2,9 +2,9 @@
= jellyfin = jellyfin
image::https://img.shields.io/badge/Version-0.1.6-informational?style=flat-square[Version: 0.1.6] image::https://img.shields.io/badge/Version-0.1.7-informational?style=flat-square[Version: 0.1.7]
image::https://img.shields.io/badge/Version-application-informational?style=flat-square[Type: application] image::https://img.shields.io/badge/Version-application-informational?style=flat-square[Type: application]
image::https://img.shields.io/badge/AppVersion-10.8.13-1-informational?style=flat-square[AppVersion: 10.8.13-1] image::https://img.shields.io/badge/AppVersion-10.9.6-informational?style=flat-square[AppVersion: 10.9.6]
== Maintainers == Maintainers
.Maintainers .Maintainers
@ -77,20 +77,35 @@ helm uninstall jellyfin-release
| `""` | `""`
| |
| global.image.pullPolicy
| string
| `nil`
| if set it will overwrite all pullPolicy
| global.image.registry
| string
| `nil`
| if set it will overwrite all registry entries
| image.pullPolicy | image.pullPolicy
| string | string
| `"IfNotPresent"` | `"IfNotPresent"`
| |
| image.registry
| string
| `"ghcr.io"`
|
| image.repository | image.repository
| string | string
| `"docker.io/jellyfin/jellyfin"` | `"jellyfin/jellyfin"`
| |
| image.tag | image.tag
| string | string
| `""` | `""`
| | Overrides the image tag whose default is the chart appVersion.
| imagePullSecrets | imagePullSecrets
| list | list

View file

@ -36,8 +36,10 @@ spec:
- name: {{ .Chart.Name }} - name: {{ .Chart.Name }}
securityContext: securityContext:
{{- toYaml .Values.securityContext | nindent 12 }} {{- toYaml .Values.securityContext | nindent 12 }}
image: "{{ .Values.image.repository }}:{{ .Values.image.tag | default .Chart.AppVersion }}" {{- with .Values.image}}
imagePullPolicy: {{ .Values.image.pullPolicy }} image: "{{ coalesce $.Values.global.image.registry .registry }}/{{ .repository }}:{{ .tag | default $.Chart.AppVersion }}"
imagePullPolicy: {{ coalesce $.Values.global.image.pullPolicy .pullPolicy }}
{{- end }}
ports: ports:
- name: http - name: http
containerPort: {{ .Values.service.port }} containerPort: {{ .Values.service.port }}

View file

@ -1,15 +0,0 @@
apiVersion: v1
kind: Pod
metadata:
name: "{{ include "jellyfin.fullname" . }}-test-connection"
labels:
{{- include "jellyfin.labels" . | nindent 4 }}
annotations:
"helm.sh/hook": test
spec:
containers:
- name: wget
image: busybox
command: ['wget']
args: ['{{ include "jellyfin.fullname" . }}:{{ .Values.service.port }}']
restartPolicy: Never

View file

@ -1,13 +1,17 @@
# Default values for jellyfin. global:
# This is a YAML-formatted file. image:
# Declare variables to be passed into your templates. # -- if set it will overwrite all registry entries
registry:
# -- if set it will overwrite all pullPolicy
pullPolicy:
replicaCount: 1 replicaCount: 1
image: image:
repository: docker.io/jellyfin/jellyfin registry: ghcr.io
repository: jellyfin/jellyfin
pullPolicy: IfNotPresent pullPolicy: IfNotPresent
# Overrides the image tag whose default is the chart appVersion. # -- Overrides the image tag whose default is the chart appVersion.
tag: "" tag: ""
imagePullSecrets: [] imagePullSecrets: []