mirror of
https://github.com/k8s-at-home/charts.git
synced 2025-02-02 23:39:03 +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
|
||||
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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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) -}}
|
||||
|
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user