[tdarr] Pass-through mountPath value (#1527)

* Add mountPath passthrough

Signed-off-by: Zee Aslam <zeet6613@gmail.com>
This commit is contained in:
Zee Aslam 2022-04-28 07:03:58 -04:00 committed by GitHub
parent b12a8d1041
commit f49a79bdf6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 24 additions and 7 deletions

View File

@ -1,8 +1,8 @@
apiVersion: v2
appVersion: 2.00.10
appVersion: 2.00.18
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
version: 4.4.0
version: 4.4.1
keywords:
- transcoding
- remux
@ -23,5 +23,7 @@ dependencies:
version: 4.3.0
annotations:
artifacthub.io/changes: |
- kind: add
description: Explicitly Add PUID and PGID environment variables for server and node.
- kind: change
description: Ensure node mountPath matches server for media volume
- kind: change
description: Update appVersion to 2.00.18

View File

@ -1,6 +1,6 @@
# tdarr
![Version: 4.4.0](https://img.shields.io/badge/Version-4.4.0-informational?style=flat-square) ![AppVersion: 2.00.10](https://img.shields.io/badge/AppVersion-2.00.10-informational?style=flat-square)
![Version: 4.4.1](https://img.shields.io/badge/Version-4.4.1-informational?style=flat-square) ![AppVersion: 2.00.10](https://img.shields.io/badge/AppVersion-2.00.10-informational?style=flat-square)
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.
@ -102,6 +102,20 @@ N/A
## Changelog
### Version 4.4.1
#### Added
N/A
#### Changed
node mountPath for media now matches server
#### Fixed
N/A
### Version 4.4.0
#### Added

View File

@ -30,7 +30,7 @@ additionalContainers:
{{ end }}
{{ if .Values.persistence.media.enabled }}
- name: media
mountPath: /media
mountPath: {{ .Values.persistence.media.mountPath }}
{{ end }}
{{ if .Values.persistence.shared.enabled }}
- name: shared

View File

@ -9,7 +9,8 @@ image:
# -- image repository
repository: haveagitgat/tdarr
# -- image tag
tag: 2.00.10
# @default -- chart.appVersion
tag:
# -- image pull policy
pullPolicy: IfNotPresent