feat(tdarr): Add tdarr (#1152)

* Init work for tdarr server

* add ingress

* update app request list

* uhm

* sync questions' secCOntext
This commit is contained in:
Stavros Kois
2021-10-16 14:48:27 +02:00
committed by GitHub
parent 774ea42e98
commit 51695d14b9
8 changed files with 1164 additions and 3 deletions
+24
View File
@@ -0,0 +1,24 @@
# Patterns to ignore when building packages.
# This supports shell glob matching, relative path matching, and
# negation (prefixed with !). Only one pattern per line.
.DS_Store
# Common VCS dirs
.git/
.gitignore
.bzr/
.bzrignore
.hg/
.hgignore
.svn/
# Common backup files
*.swp
*.bak
*.tmp
*~
# Various IDEs
.project
.idea/
*.tmproj
.vscode/
# OWNERS file for Kubernetes
OWNERS
+25
View File
@@ -0,0 +1,25 @@
apiVersion: v2
appVersion: "2.00.10"
dependencies:
- name: common
repository: https://truecharts.org
version: 8.3.6
deprecated: false
description: Audio/Video library transcoding automation
home: https://github.com/truecharts/apps/tree/master/charts/stable/tdarr
icon: https://avatars.githubusercontent.com/u/43864057?v=4
keywords:
- encode
- media
- tdarr
kubeVersion: '>=1.16.0-0'
maintainers:
- email: info@truecharts.org
name: TrueCharts
url: truecharts.org
name: tdarr
sources:
- https://github.com/HaveAGitGat/Tdarr
- https://hub.docker.com/r/haveagitgat/tdarr
type: application
version: 0.0.1
+3
View File
@@ -0,0 +1,3 @@
categories:
- media
icon_url: https://avatars.githubusercontent.com/u/43864057?v=4
@@ -0,0 +1,15 @@
##
# This file contains Values.yaml content that gets added to the output of questions.yaml
# It's ONLY meant for content that the user is NOT expected to change.
# Example: Everything under "image" is not included in questions.yaml but is included here.
##
image:
repository: haveagitgat/tdarr
pullPolicy: IfNotPresent
tag: 2.00.10@sha256:63b95a5897f7be1841f4f4e192ab978ec4afc2d81d6fcc150f4785071560ed86
##
# Most other defaults are set in questions.yaml
# For other options please refer to the wiki, default_values.yaml or the common library chart
##
File diff suppressed because it is too large Load Diff
@@ -0,0 +1 @@
{{ include "common.all" . }}
+53
View File
@@ -0,0 +1,53 @@
# Default values for tdarr
image:
repository: haveagitgat/tdarr
pullPolicy: IfNotPresent
tag: 2.00.10@sha256:63b95a5897f7be1841f4f4e192ab978ec4afc2d81d6fcc150f4785071560ed86
securityContext:
readOnlyRootFilesystem: false
runAsNonRoot: false
podSecurityContext:
runAsUser: 0
runAsGroup: 0
env:
webUIPort: 8265
serverIP: "0.0.0.0"
serverPort: 8266
PUID: 568
service:
main:
enabled: true
ports:
main:
port: 8265
comm:
ports:
comm:
port: 8266
persistence:
server:
enabled: true
mountPath: "/app/server"
type: pvc
accessMode: ReadWriteOnce
size: "100Gi"
configs:
enabled: true
mountPath: "/app/configs"
type: pvc
accessMode: ReadWriteOnce
size: "100Gi"
logs:
enabled: true
mountPath: "/app/logs"
type: pvc
accessMode: ReadWriteOnce
size: "100Gi"
varrun:
enabled: true