Files
truecharts/charts/stable/makemkv/values.yaml
T
TrueCharts Bot a7af96a22b chore(helm): update image ghcr.io/jlesage/makemkv v25.10.1 → v25.12.1 (#42564)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
|
[ghcr.io/jlesage/makemkv](https://redirect.github.com/jlesage/docker-makemkv)
| minor | `17787b7` -> `3e79337` |

---

> [!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-makemkv (ghcr.io/jlesage/makemkv)</summary>

###
[`v25.12.1`](https://redirect.github.com/jlesage/docker-makemkv/releases/tag/v25.12.1):
Version 25.12.1

[Compare
Source](https://redirect.github.com/jlesage/docker-makemkv/compare/v25.10.1...v25.12.1)

Changes in this release:

- Updated baseimage to version 4.10.3, which brings the following
changes:
  - Added hardware acceleration support for the X server.
- Added seamless clipboard synchronization for Chromium-based browsers.
- Added web notification service to forward desktop notifications to the
browser.
- Added the ability to restrict web and VNC connections from localhost
only.
  - Added web server support for TLS 1.3.
- Removed web server support of static Diffie-Hellman parameters file
(no longer needed in modern TLS configurations and ECDHE).

</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:eyJjcmVhdGVkSW5WZXIiOiI0Mi4xNy4wIiwidXBkYXRlZEluVmVyIjoiNDIuMTcuMCIsInRhcmdldEJyYW5jaCI6Im1hc3RlciIsImxhYmVscyI6WyJhdXRvbWVyZ2UiLCJyZW5vdmF0ZS9jb250YWluZXIiLCJ0eXBlL21pbm9yIl19-->
2025-12-08 06:01:17 +01:00

95 lines
2.9 KiB
YAML

image:
repository: ghcr.io/jlesage/makemkv
tag: v25.12.1@sha256:3e793372fc1122c23b834eb840158e25cccb2739b85fd0bdfb0bd3c87922bf82
pullPolicy: IfNotPresent
makemkv:
# General Settings
KEEP_APP_RUNNING: false
# GUI Settings
DISPLAY_WIDTH: 1280
DISPLAY_HEIGHT: 768
DARK_MODE: false
# App Settings
MAKEMKV_KEY: "BETA"
AUTO_DISC_RIPPER_INTERVAL: 5
AUTO_DISC_RIPPER_BD_MODE: "mkv"
AUTO_DISC_RIPPER_MAKEMKV_PROFILE: ""
SECURE_CONNECTION: false
ENABLE_CJK_FONT: false
AUTO_DISC_RIPPER: false
AUTO_DISC_RIPPER_EJECT: false
AUTO_DISC_RIPPER_PARALLEL_RIP: false
AUTO_DISC_RIPPER_NO_GUI_PROGRESS: false
AUTO_DISC_RIPPER_FORCE_UNIQUE_OUTPUT_DIR: false
service:
main:
ports:
main:
port: 10180
targetPort: 5800
vnc:
enabled: true
ports:
vnc:
enabled: true
port: 10181
targetPort: 5900
configmap:
makemkv:
enabled: true
data:
ENABLE_CJK_FONT: '{{ ternary "1" "0" .Values.makemkv.ENABLE_CJK_FONT }}'
KEEP_APP_RUNNING: '{{ ternary "1" "0" .Values.makemkv.KEEP_APP_RUNNING }}'
SECURE_CONNECTION: '{{ ternary "1" "0" .Values.makemkv.SECURE_CONNECTION }}'
DISPLAY_WIDTH: "{{ .Values.makemkv.DISPLAY_WIDTH }}"
DISPLAY_HEIGHT: "{{ .Values.makemkv.DISPLAY_HEIGHT }}"
DARK_MODE: '{{ ternary "1" "0" .Values.makemkv.DARK_MODE }}'
MAKEMKV_KEY: "{{ .Values.makemkv.MAKEMKV_KEY }}"
AUTO_DISC_RIPPER_INTERVAL: "{{ .Values.makemkv.AUTO_DISC_RIPPER_INTERVAL }}"
AUTO_DISC_RIPPER_BD_MODE: "{{ .Values.makemkv.AUTO_DISC_RIPPER_BD_MODE }}"
AUTO_DISC_RIPPER_MAKEMKV_PROFILE: "{{ .Values.makemkv.AUTO_DISC_RIPPER_MAKEMKV_PROFILE }}"
AUTO_DISC_RIPPER: '{{ ternary "1" "0" .Values.makemkv.AUTO_DISC_RIPPER }}'
AUTO_DISC_RIPPER_EJECT: '{{ ternary "1" "0" .Values.makemkv.AUTO_DISC_RIPPER_EJECT }}'
AUTO_DISC_RIPPER_PARALLEL_RIP: '{{ ternary "1" "0" .Values.makemkv.AUTO_DISC_RIPPER_PARALLEL_RIP }}'
AUTO_DISC_RIPPER_NO_GUI_PROGRESS: '{{ ternary "1" "0" .Values.makemkv.AUTO_DISC_RIPPER_NO_GUI_PROGRESS }}'
AUTO_DISC_RIPPER_FORCE_UNIQUE_OUTPUT_DIR: '{{ ternary "1" "0" .Values.makemkv.AUTO_DISC_RIPPER_FORCE_UNIQUE_OUTPUT_DIR }}'
persistence:
config:
enabled: true
mountPath: "/config"
storage:
enabled: true
mountPath: "/storage"
output:
enabled: true
mountPath: "/output"
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: "makemkv"