[tdarr] Allow definition of resources for the node (#1295)

This commit is contained in:
Nathan Pawelek 2021-12-05 09:20:02 -06:00 committed by GitHub
parent 1329aeeca8
commit b91b97c5a1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 20 additions and 1 deletions

View File

@ -2,7 +2,7 @@ apiVersion: v2
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.
name: tdarr
version: 4.1.1
version: 4.1.2
keywords:
- transcoding
- remux

View File

@ -89,6 +89,7 @@ N/A
| node.image.pullPolicy | string | `"IfNotPresent"` | image pull policy |
| node.image.repository | string | `"haveagitgat/tdarr_node"` | image repository |
| 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.config | object | See values.yaml | Volume used for configuration |
| 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).
### [4.1.2]
#### Changed
- Allow definition of resources for the Tdarr node.
### [4.1.1]
#### Changed

View File

@ -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).
### [4.1.2]
#### Changed
- Allow definition of resources for the Tdarr node.
### [4.1.1]
#### Changed

View File

@ -30,6 +30,10 @@ additionalContainers:
- name: shared
mountPath: /shared
{{ end }}
{{- with .Values.node.resources }}
resources:
{{- toYaml . | nindent 2 }}
{{- end }}
{{ end }}
{{- end -}}
{{- $_ := mergeOverwrite .Values (include "tdarr.harcodedValues" . | fromYaml) -}}

View File

@ -55,6 +55,8 @@ node:
tag: 2.00.10
# -- image pull policy
pullPolicy: IfNotPresent
# -- Node resources
resources: {}
# -- Configure persistence settings for the chart under this key.
# @default -- See below