TrueChartsClone/charts/stable/filebot/values.yaml

106 lines
3.1 KiB
YAML
Raw Normal View History

image:
2022-07-11 10:45:12 +00:00
repository: tccr.io/truecharts/filebot
tag: v1.14.1@sha256:5eb7360fd7adc2059fba1ec5e35b2292d740add1f4689ece244c7591632ddd47
pullPolicy: IfNotPresent
securityContext:
readOnlyRootFilesystem: false
runAsNonRoot: false
podSecurityContext:
runAsUser: 0
runAsGroup: 0
service:
main:
ports:
main:
port: 10268
targetPort: 5800
vnc:
enabled: true
ports:
vnc:
enabled: true
port: 10269
targetPort: 5900
envFrom:
- configMapRef:
name: '{{ include "tc.common.names.fullname" . }}-filebot'
secretEnv:
VNC_PASSWORD: ""
filebot:
KEEP_APP_RUNNING: false
DISPLAY_WIDTH: 1280
DISPLAY_HEIGHT: 768
SECURE_CONNECTION: false
ENABLE_CJK_FONT: false
OPENSUBTITLES_USERNAME: ""
OPENSUBTITLES_PASSWORD: ""
FILEBOT_CUSTOM_OPTIONS: ""
AMC_INTERVAL: 1800
AMC_INPUT_STABLE_TIME: 10
AMC_ACTION: "test"
AMC_CONFLICT: "auto"
AMC_MATCH_MODE: "opportunistic"
AMC_ARTWORK: false
AMC_LANG: "English"
AMC_MUSIC_FORMAT: "{plex}"
AMC_MOVIE_FORMAT: "{plex}"
AMC_SERIES_FORMAT: "{plex}"
AMC_ANIME_FORMAT: "{plex}"
AMC_PROCESS_MUSIC: true
AMC_SUBTITLE_LANG: ""
AMC_CUSTOM_OPTIONS: ""
AMC_INSTALL_PKGS: ""
USE_FILEBOT_BETA: false
configmap:
filebot:
enabled: true
data:
ENABLE_CJK_FONT: '{{ ternary "1" "0" .Values.filebot.ENABLE_CJK_FONT }}'
KEEP_APP_RUNNING: '{{ ternary "1" "0" .Values.filebot.KEEP_APP_RUNNING }}'
SECURE_CONNECTION: '{{ ternary "1" "0" .Values.filebot.SECURE_CONNECTION }}'
DISPLAY_WIDTH: "{{ .Values.filebot.DISPLAY_WIDTH }}"
DISPLAY_HEIGHT: "{{ .Values.filebot.DISPLAY_HEIGHT }}"
OPENSUBTITLES_USERNAME: "{{ .Values.filebot.OPENSUBTITLES_USERNAME }}"
OPENSUBTITLES_PASSWORD: "{{ .Values.filebot.OPENSUBTITLES_PASSWORD }}"
FILEBOT_CUSTOM_OPTIONS: "{{ .Values.filebot.FILEBOT_CUSTOM_OPTIONS }}"
AMC_INTERVAL: "{{ .Values.filebot.AMC_INTERVAL }}"
AMC_INPUT_STABLE_TIME: "{{ .Values.filebot.AMC_INPUT_STABLE_TIME }}"
AMC_ACTION: "{{ .Values.filebot.AMC_ACTION }}"
AMC_CONFLICT: "{{ .Values.filebot.AMC_CONFLICT }}"
AMC_MATCH_MODE: "{{ .Values.filebot.AMC_MATCH_MODE }}"
AMC_ARTWORK: '{{ ternary "y" "n" .Values.filebot.AMC_ARTWORK }}'
AMC_LANG: "{{ .Values.filebot.AMC_LANG }}"
AMC_MUSIC_FORMAT: "{{ .Values.filebot.AMC_MUSIC_FORMAT }}"
AMC_MOVIE_FORMAT: "{{ .Values.filebot.AMC_MOVIE_FORMAT }}"
AMC_SERIES_FORMAT: "{{ .Values.filebot.AMC_SERIES_FORMAT }}"
AMC_ANIME_FORMAT: "{{ .Values.filebot.AMC_ANIME_FORMAT }}"
AMC_PROCESS_MUSIC: '{{ ternary "y" "n" .Values.filebot.AMC_PROCESS_MUSIC }}'
AMC_SUBTITLE_LANG: "{{ .Values.filebot.AMC_SUBTITLE_LANG }}"
AMC_CUSTOM_OPTIONS: "{{ .Values.filebot.AMC_CUSTOM_OPTIONS }}"
AMC_INSTALL_PKGS: "{{ .Values.filebot.AMC_INSTALL_PKGS }}"
USE_FILEBOT_BETA: '{{ ternary "1" "0" .Values.filebot.USE_FILEBOT_BETA }}'
persistence:
config:
enabled: true
mountPath: "/config"
storage:
enabled: true
mountPath: "/storage"
watch:
enabled: true
mountPath: "/watch"
output:
enabled: true
mountPath: "/output"
chore(questions): replace questions parts with templates (#3402) * chore(questions): replace port parts with templates * chore(questions): replace controller parts with templates * remove tons of whitespce * remove quotes from strings on templates * make complete controller an include * default to recreate * remove replica and strategies as it's covered from controllerStrtegies include * remove whitespace again * replace controllertype with include (deployment/daemonset/statefulset) * replace advanced port part except targetport * remove more quotes * add hidden toggle of enable the port * new includes * update build script * controller deploy/stateful/deamon template changes * replace controllerStrategies with replicas, replica#, strategy, recreate * move 2 templates into a subfolder * remove quotes * remove disabled portals from questions and defined them on values * remove enabled portal from the questions and add it on values * one more app * Portal cleanup * remove portal templates * add more includes * replace portal links * move some templates in folders * replace ingressRoot with template * more grouping * replace persistenceroot with template * replace serviceExpertRoot * replace serviceroot * fix a rogue one * vctRoot * securityContext cleanup * remove quotes from templates on string * replace vctRoot * replace advanedSecurityRoot * replace podsecurity root * Update .github/scripts/build-catalog.sh * Update values.yaml * remove dupe portal * update build-release script * fix paths * fix apps with imageSelector Co-authored-by: Kjeld Schouten-Lebbing <kjeld@schouten-lebbing.nl>
2022-08-08 21:25:02 +00:00
portal:
enabled: true