Files
truecharts/charts/stable/makemkv/values.yaml
T
James Musson 5824b85062 fix(makemkv): use ghcr.io repository (#34336)
**Description**

Switch to ghcr.io repository for jlesage/makemkv

⚒️ Fixes  # <!--(issue)-->

**⚙️ Type of change**

- [ ] ⚙️ Feature/App addition
- [ ] 🪛 Bugfix
- [ ] ⚠️ Breaking change (fix or feature that would cause existing
functionality to not work as expected)
- [x] 🔃 Refactor of current code
- [ ] 📜 Documentation Changes

**🧪 How Has This Been Tested?**
Tested on local cluster with no issues

**📃 Notes:**
<!-- Please enter any other relevant information here -->

**✔️ Checklist:**

- [x] ⚖️ My code follows the style guidelines of this project
- [x] 👀 I have performed a self-review of my own code
- [ ] #️⃣ I have commented my code, particularly in hard-to-understand
areas
- [ ] 📄 I have made changes to the documentation
- [ ] 🧪 I have added tests to this description that prove my fix is
effective or that my feature works
- [x] ⬆️ I increased versions for any altered app according to semantic
versioning
- [x] I made sure the title starts with `feat(chart-name):`,
`fix(chart-name):`, `chore(chart-name):`, `docs(chart-name):` or
`fix(docs):`

** App addition**

If this PR is an app addition please make sure you have done the
following.

- [ ] 🖼️ I have added an icon in the Chart's root directory called
`icon.png`

---

_Please don't blindly check all the boxes. Read them and only check
those that apply.
Those checkboxes are there for the reviewer to see what is this all
about and
the status of this PR with a quick glance._
2025-04-13 16:20:03 +02:00

95 lines
2.9 KiB
YAML

image:
repository: ghcr.io/jlesage/makemkv
tag: v25.04.1@sha256:ae840c402381a83f511a91d2b2a70291b912a0a5810fdb46b545d2e7c93f7e04
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"