jellyfin: handle big numbers in user/group id's (#2414)

This commit is contained in:
Stavros Kois
2024-04-29 09:10:48 +03:00
committed by GitHub
parent 6b15fe1279
commit 2a7e519942
3 changed files with 5 additions and 5 deletions

View File

@@ -4,7 +4,7 @@ description: Jellyfin is a Free Software Media System that puts you in control o
annotations:
title: Jellyfin
type: application
version: 1.2.7
version: 1.2.8
apiVersion: v2
appVersion: 10.8.13.1
kubeVersion: '>=1.16.0-0'

View File

@@ -2,8 +2,8 @@ jellyfinNetwork:
webPort: 31000
jellyfinRunAs:
user: 1000
group: 1000
user: 8675309
group: 8675309
jellyfinStorage:
config:

View File

@@ -43,8 +43,8 @@ workload:
path: /health
initContainers:
{{- include "ix.v1.common.app.permissions" (dict "containerName" "01-permissions"
"UID" .Values.jellyfinRunAs.user
"GID" .Values.jellyfinRunAs.group
"UID" (include "ix.v1.common.helper.makeIntOrNoop" .Values.jellyfinRunAs.user)
"GID" (include "ix.v1.common.helper.makeIntOrNoop" .Values.jellyfinRunAs.group)
"mode" "check"
"type" "install") | nindent 8 }}
{{/* Service */}}