8bd2a7eeab
This PR contains the following updates: | Package | Update | Change | |---|---|---| | [docker.io/jlesage/mkvcleaver](https://redirect.github.com/jlesage/docker-mkvcleaver) | minor | `3c66e35` → `597664e` | --- > [!WARNING] > Some dependencies could not be looked up. Check the [Dependency Dashboard](../issues/18710) 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-mkvcleaver (docker.io/jlesage/mkvcleaver)</summary> ### [`v26.03.1`](https://redirect.github.com/jlesage/docker-mkvcleaver/releases/tag/v26.03.1): Version 26.03.1 [Compare Source](https://redirect.github.com/jlesage/docker-mkvcleaver/compare/v26.02.3...v26.03.1) Changes in this release: - Updated baseimage to version 4.11.3, bringing the following changes: - Enable xcompmgr output only when debug is enabled. - Enhanced self-signed certificates by including the Subject Alternative Name (SAN) and using the container hostname instead of a dummy domain name. </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:eyJjcmVhdGVkSW5WZXIiOiI0My4yOS4yIiwidXBkYXRlZEluVmVyIjoiNDMuMjkuMiIsInRhcmdldEJyYW5jaCI6Im1hc3RlciIsImxhYmVscyI6WyJhcHAvbWt2Y2xlYXZlciIsImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvbWlub3IiXX0=-->
68 lines
1.6 KiB
YAML
68 lines
1.6 KiB
YAML
# yaml-language-server: $schema=./values.schema.json
|
|
image:
|
|
repository: docker.io/jlesage/mkvcleaver
|
|
tag: v26.03.1@sha256:597664e538413c3670a03c6379f9067bad97737bb9e1fcb695e73a1a4da931db
|
|
pullPolicy: IfNotPresent
|
|
mkvcleaver:
|
|
KEEP_APP_RUNNING: false
|
|
DISPLAY_WIDTH: 1280
|
|
DISPLAY_HEIGHT: 768
|
|
SECURE_CONNECTION: false
|
|
ENABLE_CJK_FONT: false
|
|
securityContext:
|
|
container:
|
|
readOnlyRootFilesystem: false
|
|
runAsNonRoot: false
|
|
runAsUser: 0
|
|
runAsGroup: 0
|
|
capabilities:
|
|
disableS6Caps: true
|
|
add:
|
|
- CHOWN
|
|
- SETGID
|
|
- SETUID
|
|
- FOWNER
|
|
- DAC_OVERRIDE
|
|
- KILL
|
|
- NET_BIND_SERVICE
|
|
workload:
|
|
main:
|
|
podSpec:
|
|
containers:
|
|
main:
|
|
env:
|
|
VNC_PASSWORD: ""
|
|
envFrom:
|
|
- configMapRef:
|
|
name: "mkvcleaver"
|
|
configmap:
|
|
mkvcleaver:
|
|
enabled: true
|
|
data:
|
|
ENABLE_CJK_FONT: '{{ ternary "1" "0" .Values.mkvcleaver.ENABLE_CJK_FONT }}'
|
|
KEEP_APP_RUNNING: '{{ ternary "1" "0" .Values.mkvcleaver.KEEP_APP_RUNNING }}'
|
|
SECURE_CONNECTION: '{{ ternary "1" "0" .Values.mkvcleaver.SECURE_CONNECTION }}'
|
|
DISPLAY_WIDTH: "{{ .Values.mkvcleaver.DISPLAY_WIDTH }}"
|
|
DISPLAY_HEIGHT: "{{ .Values.mkvcleaver.DISPLAY_HEIGHT }}"
|
|
service:
|
|
main:
|
|
ports:
|
|
main:
|
|
type: tcp
|
|
port: 5800
|
|
targetPort: 5800
|
|
vnc:
|
|
enabled: true
|
|
ports:
|
|
vnc:
|
|
enabled: true
|
|
port: 5900
|
|
targetPort: 5900
|
|
persistence:
|
|
config:
|
|
enabled: true
|
|
mountPath: "/config"
|
|
storage:
|
|
enabled: true
|
|
mountPath: "/storage"
|