image: repository: tccr.io/truecharts/handbrake tag: v1.24.2@sha256:7b5fa65f152910287ac3346b8e71b67d9d85987ae28aec0730542506b9b5780a pullPolicy: IfNotPresent securityContext: readOnlyRootFilesystem: false runAsNonRoot: false podSecurityContext: runAsUser: 0 runAsGroup: 0 service: main: ports: main: port: 10053 targetPort: 5800 vnc: enabled: true ports: vnc: enabled: true port: 10055 targetPort: 5900 envFrom: - configMapRef: name: '{{ include "common.names.fullname" . }}-handbrake' secret: VNC_PASSWORD: "" handbrake: KEEP_APP_RUNNING: false DISPLAY_WIDTH: 1280 DISPLAY_HEIGHT: 768 SECURE_CONNECTION: 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: 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"