Files
truecharts/charts/stable/mkvtoolnix/values.yaml
T
TrueCharts BotandGitHub 046524a1a4 chore(helm): update image docker.io/jlesage/mkvtoolnix v24.09.2 → v24.10.1 (#28108)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
|
[docker.io/jlesage/mkvtoolnix](https://redirect.github.com/jlesage/docker-mkvtoolnix)
| minor | `15142c1` -> `368bfac` |

Add the preset `:preserveSemverRanges` to your config if you don't want
to pin your dependencies.

---

### Release Notes

<details>
<summary>jlesage/docker-mkvtoolnix
(docker.io/jlesage/mkvtoolnix)</summary>

###
[`v24.10.1`](https://redirect.github.com/jlesage/docker-mkvtoolnix/releases/tag/v24.10.1):
Version 24.10.1

[Compare
Source](https://redirect.github.com/jlesage/docker-mkvtoolnix/compare/v24.09.2...v24.10.1)

Changes in this release:

-   Updated MKVToolNix to version 88.0.

</details>

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined),
Automerge - At any time (no schedule defined).

🚦 **Automerge**: Enabled.

♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the
rebase/retry checkbox.

🔕 **Ignore**: Close this PR and you won't be reminded about this update
again.

---

- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box

---

This PR has been generated by [Renovate
Bot](https://redirect.github.com/renovatebot/renovate).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOC4xMjguNiIsInVwZGF0ZWRJblZlciI6IjM4LjEyOC42IiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvbWlub3IiXX0=-->
2024-10-21 06:16:53 +00:00

76 lines
1.8 KiB
YAML

image:
repository: docker.io/jlesage/mkvtoolnix
tag: v24.10.1@sha256:368bfac4a2f043762bda90e9111af78e38d9d9304ea41fcd4b4528e9c524b54c
pullPolicy: IfNotPresent
service:
main:
ports:
main:
port: 10236
targetPort: 5800
vnc:
enabled: true
ports:
vnc:
enabled: true
port: 10237
targetPort: 5900
mkvtoolnix:
# General Settings
KEEP_APP_RUNNING: false
# GUI Settings
DISPLAY_WIDTH: 1280
DISPLAY_HEIGHT: 768
DARK_MODE: false
# App Settings
SECURE_CONNECTION: false
ENABLE_CJK_FONT: false
configmap:
mkvtoolnix:
enabled: true
data:
ENABLE_CJK_FONT: '{{ ternary "1" "0" .Values.mkvtoolnix.ENABLE_CJK_FONT }}'
KEEP_APP_RUNNING: '{{ ternary "1" "0" .Values.mkvtoolnix.KEEP_APP_RUNNING }}'
SECURE_CONNECTION: '{{ ternary "1" "0" .Values.mkvtoolnix.SECURE_CONNECTION }}'
DISPLAY_WIDTH: "{{ .Values.mkvtoolnix.DISPLAY_WIDTH }}"
DISPLAY_HEIGHT: "{{ .Values.mkvtoolnix.DISPLAY_HEIGHT }}"
DARK_MODE: '{{ ternary "1" "0" .Values.mkvtoolnix.DARK_MODE }}'
persistence:
config:
enabled: true
mountPath: "/config"
storage:
enabled: true
mountPath: "/storage"
portal:
open:
enabled: true
securityContext:
container:
readOnlyRootFilesystem: false
runAsNonRoot: false
runAsUser: 0
runAsGroup: 0
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: "mkvtoolnix"