mirror of
https://github.com/truenas/charts.git
synced 2026-06-14 22:25:57 +08:00
jellyfin: handle big numbers in user/group id's (#2414)
This commit is contained in:
@@ -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'
|
||||
|
||||
@@ -2,8 +2,8 @@ jellyfinNetwork:
|
||||
webPort: 31000
|
||||
|
||||
jellyfinRunAs:
|
||||
user: 1000
|
||||
group: 1000
|
||||
user: 8675309
|
||||
group: 8675309
|
||||
|
||||
jellyfinStorage:
|
||||
config:
|
||||
|
||||
@@ -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 */}}
|
||||
|
||||
Reference in New Issue
Block a user