mirror of
https://github.com/k8s-at-home/charts.git
synced 2025-02-02 23:39:03 +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
|
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.
|
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.4.0
|
version: 4.4.1
|
||||||
keywords:
|
keywords:
|
||||||
- transcoding
|
- transcoding
|
||||||
- remux
|
- remux
|
||||||
@ -23,5 +23,7 @@ dependencies:
|
|||||||
version: 4.3.0
|
version: 4.3.0
|
||||||
annotations:
|
annotations:
|
||||||
artifacthub.io/changes: |
|
artifacthub.io/changes: |
|
||||||
- kind: add
|
- kind: change
|
||||||
description: Explicitly Add PUID and PGID environment variables for server and node.
|
description: Ensure node mountPath matches server for media volume
|
||||||
|
- kind: change
|
||||||
|
description: Update appVersion to 2.00.18
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
# tdarr
|
# 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.
|
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
|
## Changelog
|
||||||
|
|
||||||
|
### Version 4.4.1
|
||||||
|
|
||||||
|
#### Added
|
||||||
|
|
||||||
|
N/A
|
||||||
|
|
||||||
|
#### Changed
|
||||||
|
|
||||||
|
node mountPath for media now matches server
|
||||||
|
|
||||||
|
#### Fixed
|
||||||
|
|
||||||
|
N/A
|
||||||
|
|
||||||
### Version 4.4.0
|
### Version 4.4.0
|
||||||
|
|
||||||
#### Added
|
#### Added
|
||||||
|
@ -30,7 +30,7 @@ additionalContainers:
|
|||||||
{{ end }}
|
{{ end }}
|
||||||
{{ if .Values.persistence.media.enabled }}
|
{{ if .Values.persistence.media.enabled }}
|
||||||
- name: media
|
- name: media
|
||||||
mountPath: /media
|
mountPath: {{ .Values.persistence.media.mountPath }}
|
||||||
{{ end }}
|
{{ end }}
|
||||||
{{ if .Values.persistence.shared.enabled }}
|
{{ if .Values.persistence.shared.enabled }}
|
||||||
- name: shared
|
- name: shared
|
||||||
|
@ -9,7 +9,8 @@ image:
|
|||||||
# -- image repository
|
# -- image repository
|
||||||
repository: haveagitgat/tdarr
|
repository: haveagitgat/tdarr
|
||||||
# -- image tag
|
# -- image tag
|
||||||
tag: 2.00.10
|
# @default -- chart.appVersion
|
||||||
|
tag:
|
||||||
# -- image pull policy
|
# -- image pull policy
|
||||||
pullPolicy: IfNotPresent
|
pullPolicy: IfNotPresent
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user