Files
truecharts/charts/stable/handbrake/values.yaml
T
TrueCharts BotandGitHub 1789321e86 chore(deps): update container image jlesage/handbrake to v23.12.2@7c43c9d by renovate (#16517)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
| [jlesage/handbrake](https://togithub.com/jlesage/docker-handbrake) |
patch | `v23.12.1` -> `v23.12.2` |

---

> [!WARNING]
> Some dependencies could not be looked up. Check the Dependency
Dashboard for more information.

---

### Release Notes

<details>
<summary>jlesage/docker-handbrake (jlesage/handbrake)</summary>

###
[`v23.12.2`](https://togithub.com/jlesage/docker-handbrake/releases/tag/v23.12.2):
Version 23.12.2

[Compare
Source](https://togithub.com/jlesage/docker-handbrake/compare/v23.12.1...v23.12.2)

Changes in this release:

-   Updated HandBrake to version 1.7.2.

</details>

---

### Configuration

📅 **Schedule**: Branch creation - "before 10pm on monday" in timezone
Europe/Amsterdam, 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://togithub.com/renovatebot/renovate).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4xMDcuMCIsInVwZGF0ZWRJblZlciI6IjM3LjEwNy4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIn0=-->
2023-12-25 07:20:54 +01:00

82 lines
2.3 KiB
YAML

image:
repository: jlesage/handbrake
tag: v23.12.2@sha256:7c43c9d281a2e9a9796304d578bcc9312407e1953b046b84912f55e3e49101bf
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"
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 }}"
persistence:
config:
enabled: true
mountPath: "/config"
storage:
enabled: true
mountPath: "/storage"
output:
enabled: true
mountPath: "/output"
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: "handbrake"