Files
truecharts/charts/stable/filebot/values.yaml
T
Kjeld Schouten f8e33766bf feat(common): remove portal and ensure appUrl is used for notes.txt (#34047)
**Description**

This removes old portal references (from truenas times) from common and
notes.txt
Also ensures chartContext is used for notes.txt

Technically breaking in case any down-stream users use portal
configmap/data

⚒️ Fixes  #31880

**⚙️ Type of change**

- [x] ⚙️ Feature/App addition
- [ ] 🪛 Bugfix
- [ ] ⚠️ Breaking change (fix or feature that would cause existing
functionality to not work as expected)
- [x] 🔃 Refactor of current code
- [ ] 📜 Documentation Changes

**🧪 How Has This Been Tested?**
<!--
Please describe the tests that you ran to verify your changes. Provide
instructions so we can reproduce. Please also list any relevant details
for your test configuration
-->

**📃 Notes:**
<!-- Please enter any other relevant information here -->

**✔️ Checklist:**

- [ ] ⚖️ My code follows the style guidelines of this project
- [ ] 👀 I have performed a self-review of my own code
- [ ] #️⃣ I have commented my code, particularly in hard-to-understand
areas
- [ ] 📄 I have made changes to the documentation
- [ ] 🧪 I have added tests to this description that prove my fix is
effective or that my feature works
- [ ] ⬆️ I increased versions for any altered app according to semantic
versioning
- [ ] I made sure the title starts with `feat(chart-name):`,
`fix(chart-name):`, `chore(chart-name):`, `docs(chart-name):` or
`fix(docs):`

** App addition**

If this PR is an app addition please make sure you have done the
following.

- [ ] 🖼️ I have added an icon in the Chart's root directory called
`icon.png`

---

_Please don't blindly check all the boxes. Read them and only check
those that apply.
Those checkboxes are there for the reviewer to see what is this all
about and
the status of this PR with a quick glance._

---------

Signed-off-by: Kjeld Schouten <info@kjeldschouten.nl>
2025-04-07 22:04:57 +02:00

112 lines
3.4 KiB
YAML

image:
repository: docker.io/jlesage/filebot
tag: v25.02.1@sha256:87e95850902c767c93e1bd03a19b7d5786b2dff98c1232f1f0a7ad433652413c
pullPolicy: IfNotPresent
securityContext:
container:
readOnlyRootFilesystem: false
runAsNonRoot: false
runAsUser: 0
runAsGroup: 0
service:
main:
ports:
main:
port: 10268
targetPort: 5800
vnc:
enabled: true
ports:
vnc:
enabled: true
port: 10269
targetPort: 5900
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 }}'
workload:
main:
podSpec:
containers:
main:
securityContext:
capabilities:
add:
- NET_BIND_SERVICE
- KILL
probes:
liveness:
type: tcp
readiness:
type: tcp
startup:
type: tcp
env:
VNC_PASSWORD: ""
envFrom:
- configMapRef:
name: "filebot"
persistence:
config:
enabled: true
mountPath: /config
storage:
enabled: true
mountPath: /storage
watch:
enabled: true
mountPath: /watch
output:
enabled: true
mountPath: /output