[tdarr] Fix persistence mountPath

This commit is contained in:
Bᴇʀɴᴅ Sᴄʜᴏʀɢᴇʀs 2022-02-22 10:09:05 +01:00
parent 9d8ef6eee6
commit f59e1af294
No known key found for this signature in database
GPG Key ID: BC5E2BD907F9A8EC
2 changed files with 7 additions and 7 deletions

View File

@ -2,7 +2,7 @@ apiVersion: v2
appVersion: 2.00.10 appVersion: 2.00.10
description: Tdarr is a self hosted web-app for automating media library transcode/remux management and making sure your files are exactly how you need them to be in terms of codecs/streams/containers etc. description: Tdarr is a self hosted web-app for automating media library transcode/remux management and making sure your files are exactly how you need them to be in terms of codecs/streams/containers etc.
name: tdarr name: tdarr
version: 4.3.0 version: 4.3.1
keywords: keywords:
- transcoding - transcoding
- remux - remux
@ -23,5 +23,5 @@ dependencies:
version: 4.3.0 version: 4.3.0
annotations: annotations:
artifacthub.io/changes: | artifacthub.io/changes: |
- kind: changed - kind: fixed
description: Upgraded `common` chart dependency to version `4.3.0`. description: Fixed server container mountPath so that persistence actually works.

View File

@ -67,22 +67,22 @@ persistence:
# @default -- See values.yaml # @default -- See values.yaml
config: config:
enabled: false enabled: false
mountpath: /app/configs mountPath: /app/configs
# -- Volume used for tdarr server database # -- Volume used for tdarr server database
# @default -- See values.yaml # @default -- See values.yaml
data: data:
enabled: false enabled: false
mountpath: /app/server mountPath: /app/server
# -- Volume used for media libraries # -- Volume used for media libraries
# @default -- See values.yaml # @default -- See values.yaml
media: media:
enabled: false enabled: false
mountpath: /media mountPath: /media
# -- Volume used for shared storage. e.g. emptydir transcode # -- Volume used for shared storage. e.g. emptydir transcode
# @default -- See values.yaml # @default -- See values.yaml
shared: shared:
enabled: false enabled: false
mountpath: /shared mountPath: /shared