mirror of
https://github.com/k8s-at-home/charts.git
synced 2025-02-09 05:06:07 +00:00
[tdarr] Allow definition of resources for the node (#1295)
This commit is contained in:
parent
1329aeeca8
commit
b91b97c5a1
@ -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.1
|
version: 4.1.2
|
||||||
keywords:
|
keywords:
|
||||||
- transcoding
|
- transcoding
|
||||||
- remux
|
- remux
|
||||||
|
@ -89,6 +89,7 @@ N/A
|
|||||||
| node.image.pullPolicy | string | `"IfNotPresent"` | image pull policy |
|
| node.image.pullPolicy | string | `"IfNotPresent"` | image pull policy |
|
||||||
| node.image.repository | string | `"haveagitgat/tdarr_node"` | image repository |
|
| node.image.repository | string | `"haveagitgat/tdarr_node"` | image repository |
|
||||||
| node.image.tag | string | `"2.00.10"` | image tag |
|
| node.image.tag | string | `"2.00.10"` | image tag |
|
||||||
|
| node.resources | object | `{}` | Resource definition for the node container |
|
||||||
| persistence | object | See below | Configure persistence settings for the chart under this key. |
|
| persistence | object | See below | Configure persistence settings for the chart under this key. |
|
||||||
| persistence.config | object | See values.yaml | Volume used for configuration |
|
| persistence.config | object | See values.yaml | Volume used for configuration |
|
||||||
| persistence.data | object | See values.yaml | Volume used for tdarr server database |
|
| persistence.data | object | See values.yaml | Volume used for tdarr server database |
|
||||||
@ -102,6 +103,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.1.2]
|
||||||
|
|
||||||
|
#### Changed
|
||||||
|
|
||||||
|
- Allow definition of resources for the Tdarr node.
|
||||||
|
|
||||||
### [4.1.1]
|
### [4.1.1]
|
||||||
|
|
||||||
#### 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.1.2]
|
||||||
|
|
||||||
|
#### Changed
|
||||||
|
|
||||||
|
- Allow definition of resources for the Tdarr node.
|
||||||
|
|
||||||
### [4.1.1]
|
### [4.1.1]
|
||||||
|
|
||||||
#### Changed
|
#### Changed
|
||||||
|
@ -30,6 +30,10 @@ additionalContainers:
|
|||||||
- name: shared
|
- name: shared
|
||||||
mountPath: /shared
|
mountPath: /shared
|
||||||
{{ end }}
|
{{ end }}
|
||||||
|
{{- with .Values.node.resources }}
|
||||||
|
resources:
|
||||||
|
{{- toYaml . | nindent 2 }}
|
||||||
|
{{- end }}
|
||||||
{{ end }}
|
{{ end }}
|
||||||
{{- end -}}
|
{{- end -}}
|
||||||
{{- $_ := mergeOverwrite .Values (include "tdarr.harcodedValues" . | fromYaml) -}}
|
{{- $_ := mergeOverwrite .Values (include "tdarr.harcodedValues" . | fromYaml) -}}
|
||||||
|
@ -55,6 +55,8 @@ node:
|
|||||||
tag: 2.00.10
|
tag: 2.00.10
|
||||||
# -- image pull policy
|
# -- image pull policy
|
||||||
pullPolicy: IfNotPresent
|
pullPolicy: IfNotPresent
|
||||||
|
# -- Node resources
|
||||||
|
resources: {}
|
||||||
|
|
||||||
# -- Configure persistence settings for the chart under this key.
|
# -- Configure persistence settings for the chart under this key.
|
||||||
# @default -- See below
|
# @default -- See below
|
||||||
|
Loading…
Reference in New Issue
Block a user