This PR contains the following updates: | Package | Update | Change | |---|---|---| | [jlesage/mkvtoolnix](https://redirect.github.com/jlesage/docker-mkvtoolnix) | patch | `v24.09.1` -> `v24.09.2` | --- > [!WARNING] > Some dependencies could not be looked up. Check the Dependency Dashboard for more information. --- ### Release Notes <details> <summary>jlesage/docker-mkvtoolnix (jlesage/mkvtoolnix)</summary> ### [`v24.09.2`](https://redirect.github.com/jlesage/docker-mkvtoolnix/releases/tag/v24.09.2): Version 24.09.2 [Compare Source](https://redirect.github.com/jlesage/docker-mkvtoolnix/compare/v24.09.1...v24.09.2) Changes in this release: - Updated baseimage to version 4.6.4, which brings the following changes: - Fixed web authentication feature with URL path-based reverse proxy. - Rebuild against latest distro images to get security fixes. </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:eyJjcmVhdGVkSW5WZXIiOiIzOC4xMDEuMSIsInVwZGF0ZWRJblZlciI6IjM4LjEwMS4xIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInVwZGF0ZS9kb2NrZXIvZ2VuZXJhbC9ub24tbWFqb3IiXX0=-->
76 lines
1.8 KiB
YAML
76 lines
1.8 KiB
YAML
image:
|
|
repository: jlesage/mkvtoolnix
|
|
tag: v24.09.2@sha256:15142c14ee57dbf99496054ae5457bc32c3de1ffd93e7d99ca46d5363532491a
|
|
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"
|