mirror of
https://github.com/k8s-at-home/charts.git
synced 2025-02-03 07:49:03 +00:00
[tdarr] Add ffmpegPath environment override (#1308)
* [tdarr] Add ffmpegPath environment override This change adds and environment override for ffmpegPath. If unset, the tdarr node container will use the default binary that ships with tdarr. Using `""` may cause detection issues with hardware passthrough (i915), but will remain backwards compatible with the container default. Signed-off-by: Nathan Pawelek <npawelek@users.noreply.github.com>
This commit is contained in:
parent
57535a1662
commit
820042639c
@ -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.1.3
|
version: 4.2.0
|
||||||
keywords:
|
keywords:
|
||||||
- transcoding
|
- transcoding
|
||||||
- remux
|
- remux
|
||||||
|
@ -80,6 +80,7 @@ N/A
|
|||||||
| env.serverIP | string | `"0.0.0.0"` | tdarr server binding address |
|
| env.serverIP | string | `"0.0.0.0"` | tdarr server binding address |
|
||||||
| env.serverPort | string | `"{{ .Values.service.main.ports.server.port }}"` | tdarr server listening port |
|
| env.serverPort | string | `"{{ .Values.service.main.ports.server.port }}"` | tdarr server listening port |
|
||||||
| env.webUIPort | string | `"{{ .Values.service.main.ports.http.port }}"` | tdarr web UI listening port (same as Service port) |
|
| env.webUIPort | string | `"{{ .Values.service.main.ports.http.port }}"` | tdarr web UI listening port (same as Service port) |
|
||||||
|
| env.ffmpegPath | string | `""` | Override the pre-compiled ffmpeg binary |
|
||||||
| image.pullPolicy | string | `"IfNotPresent"` | image pull policy |
|
| image.pullPolicy | string | `"IfNotPresent"` | image pull policy |
|
||||||
| image.repository | string | `"haveagitgat/tdarr"` | image repository |
|
| image.repository | string | `"haveagitgat/tdarr"` | image repository |
|
||||||
| image.tag | string | `"2.00.10"` | image tag |
|
| image.tag | string | `"2.00.10"` | image tag |
|
||||||
@ -103,6 +104,12 @@ All notable changes to this application Helm chart will be documented in this fi
|
|||||||
|
|
||||||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
||||||
|
|
||||||
|
### [4.2.0]
|
||||||
|
|
||||||
|
#### Changed
|
||||||
|
|
||||||
|
- Add an environment override for `ffmpegPath`. If unset, the tdarr node container will use the default binary that ships with tdarr. Using `""` may cause detection issues with hardware passthrough (i915), but will be backwards backwards compatible with the container default.
|
||||||
|
|
||||||
### [4.1.3]
|
### [4.1.3]
|
||||||
|
|
||||||
#### Changed
|
#### Changed
|
||||||
|
@ -9,6 +9,12 @@ All notable changes to this application Helm chart will be documented in this fi
|
|||||||
|
|
||||||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
||||||
|
|
||||||
|
### [4.2.0]
|
||||||
|
|
||||||
|
#### Changed
|
||||||
|
|
||||||
|
- Add an environment override for `ffmpegPath`. If unset, the tdarr node container will use the default binary that ships with tdarr. Using `""` may cause detection issues with hardware passthrough (i915), but will be backwards backwards compatible with the container default.
|
||||||
|
|
||||||
### [4.1.3]
|
### [4.1.3]
|
||||||
|
|
||||||
#### Changed
|
#### Changed
|
||||||
|
@ -17,6 +17,8 @@ additionalContainers:
|
|||||||
value: "localhost"
|
value: "localhost"
|
||||||
- name: serverPort
|
- name: serverPort
|
||||||
value: "{{ .Values.service.main.ports.server.port }}"
|
value: "{{ .Values.service.main.ports.server.port }}"
|
||||||
|
- name: ffmpegPath
|
||||||
|
value: {{ default "" .Values.env.ffmpegPath }}
|
||||||
volumeMounts:
|
volumeMounts:
|
||||||
{{ if .Values.persistence.config.enabled }}
|
{{ if .Values.persistence.config.enabled }}
|
||||||
- name: config
|
- name: config
|
||||||
|
@ -24,6 +24,8 @@ env:
|
|||||||
serverIP: 0.0.0.0
|
serverIP: 0.0.0.0
|
||||||
# -- tdarr server listening port
|
# -- tdarr server listening port
|
||||||
serverPort: "{{ .Values.service.main.ports.server.port }}"
|
serverPort: "{{ .Values.service.main.ports.server.port }}"
|
||||||
|
# -- Allow override for the pre-compiled tdarr ffmpeg binary
|
||||||
|
ffmpegPath: ""
|
||||||
|
|
||||||
# -- Configures service settings for the chart.
|
# -- Configures service settings for the chart.
|
||||||
# @default -- See values.yaml
|
# @default -- See values.yaml
|
||||||
|
Loading…
Reference in New Issue
Block a user