mirror of
https://github.com/k8s-at-home/charts.git
synced 2025-01-23 23:49:12 +00:00
[tdarr] Pass-through mountPath value (#1527)
* Add mountPath passthrough Signed-off-by: Zee Aslam <zeet6613@gmail.com>
This commit is contained in:
parent
b12a8d1041
commit
f49a79bdf6
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user