Files
truecharts/charts/stable/handbrake/values.yaml
T
TrueCharts BotandGitHub f82ccb1a84 chore(helm): update image ghcr.io/jlesage/handbrake v25.07.1 → v25.07.2 (#37821)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
|
[ghcr.io/jlesage/handbrake](https://redirect.github.com/jlesage/docker-handbrake)
| patch | `89196e1` -> `57f0f60` |

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

---

### Release Notes

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

###
[`v25.07.2`](https://redirect.github.com/jlesage/docker-handbrake/releases/tag/v25.07.2):
Version 25.07.2

[Compare
Source](https://redirect.github.com/jlesage/docker-handbrake/compare/v25.07.1...v25.07.2)

Changes in this release:

- Updated gmmlib to version 22.8.1.
- Updated Intel Media Driver to version 25.5.6.
- Updated OneVPL GPU Runtime to version 25.2.6.
- Take ownership of the output directory only if it is not writable.
- Updated baseimage to version 4.9.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:eyJjcmVhdGVkSW5WZXIiOiI0MS4yMC4wIiwidXBkYXRlZEluVmVyIjoiNDEuMjAuMCIsInRhcmdldEJyYW5jaCI6Im1hc3RlciIsImxhYmVscyI6WyJhdXRvbWVyZ2UiLCJyZW5vdmF0ZS9jb250YWluZXIiLCJ0eXBlL3BhdGNoIl19-->
2025-07-28 09:02:52 +02:00

82 lines
2.3 KiB
YAML

image:
repository: ghcr.io/jlesage/handbrake
tag: v25.07.2@sha256:57f0f600bb298daa1dd1ea123329f7aa1bbfbc0c8d2963e0d6b76403ce052878
pullPolicy: IfNotPresent
service:
main:
ports:
main:
port: 10053
targetPort: 5800
vnc:
enabled: true
ports:
vnc:
enabled: true
port: 10055
targetPort: 5900
handbrake:
KEEP_APP_RUNNING: false
DISPLAY_WIDTH: 1280
DISPLAY_HEIGHT: 768
SECURE_CONNECTION: false
ENABLE_CJK_FONT: false
AUTOMATED_CONVERSION_PRESET: "General/Very Fast 1080p30"
AUTOMATED_CONVERSION_FORMAT: "mp4"
AUTOMATED_CONVERSION_KEEP_SOURCE: true
AUTOMATED_CONVERSION_NON_VIDEO_FILE_ACTION: "ignore"
DARK_MODE: false
configmap:
handbrake:
enabled: true
data:
ENABLE_CJK_FONT: '{{ ternary "1" "0" .Values.handbrake.ENABLE_CJK_FONT }}'
KEEP_APP_RUNNING: '{{ ternary "1" "0" .Values.handbrake.KEEP_APP_RUNNING }}'
SECURE_CONNECTION: '{{ ternary "1" "0" .Values.handbrake.SECURE_CONNECTION }}'
DISPLAY_WIDTH: "{{ .Values.handbrake.DISPLAY_WIDTH }}"
DISPLAY_HEIGHT: "{{ .Values.handbrake.DISPLAY_HEIGHT }}"
AUTOMATED_CONVERSION_KEEP_SOURCE: '{{ ternary "1" "0" .Values.handbrake.AUTOMATED_CONVERSION_KEEP_SOURCE }}'
AUTOMATED_CONVERSION_PRESET: "{{ .Values.handbrake.AUTOMATED_CONVERSION_PRESET }}"
AUTOMATED_CONVERSION_FORMAT: "{{ .Values.handbrake.AUTOMATED_CONVERSION_FORMAT }}"
AUTOMATED_CONVERSION_NON_VIDEO_FILE_ACTION: "{{ .Values.handbrake.AUTOMATED_CONVERSION_NON_VIDEO_FILE_ACTION }}"
DARK_MODE: '{{ ternary "1" "0" .Values.handbrake.DARK_MODE }}'
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: "handbrake"