This PR contains the following updates: | Package | Update | Change | |---|---|---| | [docker.io/jlesage/mkvtoolnix](https://redirect.github.com/jlesage/docker-mkvtoolnix) | major | `ec0ba5c` -> `5e16b8c` | --- > [!WARNING] > Some dependencies could not be looked up. Check the Dependency Dashboard for more information. 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> ### [`v26.01.2`](https://redirect.github.com/jlesage/docker-mkvtoolnix/releases/tag/v26.01.2): Version 26.01.2 [Compare Source](https://redirect.github.com/jlesage/docker-mkvtoolnix/compare/v26.01.1...v26.01.2) Changes in this release: - Updated MKVToolNix to version 97.0 ### [`v26.01.1`](https://redirect.github.com/jlesage/docker-mkvtoolnix/releases/tag/v26.01.1): Version 26.01.1 [Compare Source](https://redirect.github.com/jlesage/docker-mkvtoolnix/compare/v25.12.3...v26.01.1) Changes in this release: - Updated baseimage to version 4.10.6, which brings the following changes: - On Mac devices, fixed conversion of Command+<Key> shortcuts to the proper Alt+<Key> shortcuts for Linux applications. </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **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:eyJjcmVhdGVkSW5WZXIiOiI0Mi4xNy4wIiwidXBkYXRlZEluVmVyIjoiNDIuMTcuMCIsInRhcmdldEJyYW5jaCI6Im1hc3RlciIsImxhYmVscyI6WyJhcHAvbWt2dG9vbG5peCIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvbWFqb3IiXX0=-->
74 lines
1.8 KiB
YAML
74 lines
1.8 KiB
YAML
image:
|
|
repository: docker.io/jlesage/mkvtoolnix
|
|
tag: v26.01.2@sha256:5e16b8c10299f5724fc3efe165462f29c73b5958ff665cc65118a70a1f472802
|
|
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"
|
|
|
|
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"
|