Update catalog information

This commit is contained in:
sonicaj
2023-05-12 12:13:57 +00:00
parent 8aa7535422
commit 9a5155427e
30 changed files with 22 additions and 18 deletions

View File

@@ -870,9 +870,9 @@
"healthy_error": null,
"home": "https://jellyfin.org/",
"location": "/__w/charts/charts/community/jellyfin",
"latest_version": "1.0.1",
"latest_version": "1.0.2",
"latest_app_version": "10.8.10",
"latest_human_version": "10.8.10_1.0.1",
"latest_human_version": "10.8.10_1.0.2",
"last_update": "2023-05-11 16:20:35",
"name": "jellyfin",
"recommended": false,
@@ -1185,9 +1185,9 @@
"healthy_error": null,
"home": "https://home.tdarr.io/",
"location": "/__w/charts/charts/community/tdarr",
"latest_version": "1.0.3",
"latest_version": "1.0.4",
"latest_app_version": "2.00.20.1",
"latest_human_version": "2.00.20.1_1.0.3",
"latest_human_version": "2.00.20.1_1.0.4",
"last_update": "2023-05-11 16:20:35",
"name": "tdarr",
"recommended": false,
@@ -1223,7 +1223,7 @@
"latest_version": "1.0.4",
"latest_app_version": "2.10.3",
"latest_human_version": "2.10.3_1.0.4",
"last_update": "2023-05-11 16:20:35",
"last_update": "2023-05-12 12:11:01",
"name": "nginx-proxy-manager",
"recommended": false,
"title": "Nginx Proxy Manager",

View File

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

View File

@@ -17,6 +17,8 @@ jellyfinStorage:
medium: Memory
size: 1Gi
# TODO: Test on a GPU-enabled system
# jellyfinGPU:
# nvidia.com/gpu: 1
# Make sure installation don't fail when 0 GPU are assigned
jellyfinGPU:
nvidia.com/gpu: 0
intel.com/gpu: 0
# TODO: Test assigning GPUs on a GPU-enabled system

View File

@@ -125,14 +125,13 @@ persistence:
mountPath: /mnt/directories{{ $storage.mountPath }}
{{- end }}
{{ with .Values.jellyfinGPU }}
{{ if gt (. | len) 1 }}
{{- fail "Jellyfin - Max [1] GPUs allowed" -}}
{{ end }}
scaleGPU:
{{ range $key, $value := . }}
- gpu:
{{ . | keys | first }}: {{ . | values | first }}
{{ $key }}: {{ $value }}
targetSelector:
jellyfin:
- jellyfin
{{ end }}
{{ end }}
{{- end -}}

View File

@@ -3,7 +3,7 @@ description: Tdarr is a Distributed Transcoding System
annotations:
title: Tdarr
type: application
version: 1.0.3
version: 1.0.4
apiVersion: v2
appVersion: '2.00.20.1'
kubeVersion: '>=1.16.0-0'

View File

@@ -17,3 +17,7 @@ tdarrStorage:
type: emptyDir
medium: Memory
size: 1Gi
# Make sure installation don't fail when 0 GPU are assigned
tdarrGPU:
nvidia.com/gpu: 0
intel.com/gpu: 0

View File

@@ -131,14 +131,13 @@ persistence:
{{- end }}
{{ with .Values.tdarrGPU }}
{{ if gt (. | len) 1 }}
{{- fail "Tdarr - Max [1] GPUs allowed" -}}
{{ end }}
scaleGPU:
{{ range $key, $value := . }}
- gpu:
{{ . | keys | first }}: {{ . | values | first }}
{{ $key }}: {{ $value }}
targetSelector:
tdarr:
- tdarr
{{ end }}
{{ end }}
{{- end -}}