chore(deps): update container image tccr.io/truecharts/mkvcleaver to v23.06.1 (#8300)
This PR contains the following updates: | Package | Update | Change | |---|---|---| | [tccr.io/truecharts/mkvcleaver](https://togithub.com/truecharts/containers) | major | `v1.3.0` -> `v23.06.1` | --- ### ⚠ Dependency Lookup Warnings ⚠ Warnings were logged while processing this repo. Please check the Dependency Dashboard for more information. --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **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:eyJjcmVhdGVkSW5WZXIiOiIzNS42MS4wIiwidXBkYXRlZEluVmVyIjoiMzUuMTE1LjIiLCJ0YXJnZXRCcmFuY2giOiJtYXN0ZXIifQ==--> --------- Signed-off-by: TrueCharts-Bot <bot@truecharts.org> Co-authored-by: Stavros Kois <47820033+stavros-k@users.noreply.github.com> Co-authored-by: Stavros kois <s.kois@outlook.com>
This commit is contained in:
co-authored by
Stavros Kois
Stavros kois
parent
a4d6ce058e
commit
cd47c400fc
@@ -1,9 +1,9 @@
|
|||||||
apiVersion: v2
|
apiVersion: v2
|
||||||
appVersion: "1.3.0"
|
appVersion: "23.06.1"
|
||||||
dependencies:
|
dependencies:
|
||||||
- name: common
|
- name: common
|
||||||
repository: https://library-charts.truecharts.org
|
repository: https://library-charts.truecharts.org
|
||||||
version: 14.0.1
|
version: 14.0.6
|
||||||
deprecated: false
|
deprecated: false
|
||||||
description: MKVCleaver is a tool for batch extraction of data from MKV files
|
description: MKVCleaver is a tool for batch extraction of data from MKV files
|
||||||
home: https://truecharts.org/charts/stable/mkvcleaver
|
home: https://truecharts.org/charts/stable/mkvcleaver
|
||||||
@@ -21,7 +21,7 @@ sources:
|
|||||||
- https://github.com/truecharts/charts/tree/master/charts/stable/mkvcleaver
|
- https://github.com/truecharts/charts/tree/master/charts/stable/mkvcleaver
|
||||||
- https://github.com/jlesage/docker-mkvcleaver
|
- https://github.com/jlesage/docker-mkvcleaver
|
||||||
type: application
|
type: application
|
||||||
version: 5.0.0
|
version: 5.0.1
|
||||||
annotations:
|
annotations:
|
||||||
truecharts.org/catagories: |
|
truecharts.org/catagories: |
|
||||||
- media
|
- media
|
||||||
|
|||||||
@@ -1,7 +1,53 @@
|
|||||||
image:
|
image:
|
||||||
repository: tccr.io/truecharts/mkvcleaver
|
repository: tccr.io/truecharts/mkvcleaver
|
||||||
tag: v1.3.0@sha256:363252799dfa5a7dfbafc260370b34c81ab79ba6f2ec923454bdc4db6a7a835b
|
tag: v23.06.1@sha256:1f1588e45606288affdbdc82d0bd3d2812f998d3069cf99b2a4c84e26d8a98c4
|
||||||
pullPolicy: IfNotPresent
|
pullPolicy: IfNotPresent
|
||||||
|
|
||||||
|
mkvcleaver:
|
||||||
|
KEEP_APP_RUNNING: false
|
||||||
|
DISPLAY_WIDTH: 1280
|
||||||
|
DISPLAY_HEIGHT: 768
|
||||||
|
SECURE_CONNECTION: false
|
||||||
|
ENABLE_CJK_FONT: false
|
||||||
|
|
||||||
|
securityContext:
|
||||||
|
container:
|
||||||
|
readOnlyRootFilesystem: false
|
||||||
|
runAsNonRoot: false
|
||||||
|
runAsUser: 0
|
||||||
|
runAsGroup: 0
|
||||||
|
capabilities:
|
||||||
|
disableS6Caps: true
|
||||||
|
add:
|
||||||
|
- CHOWN
|
||||||
|
- SETGID
|
||||||
|
- SETUID
|
||||||
|
- FOWNER
|
||||||
|
- DAC_OVERRIDE
|
||||||
|
- KILL
|
||||||
|
- NET_BIND_SERVICE
|
||||||
|
|
||||||
|
workload:
|
||||||
|
main:
|
||||||
|
podSpec:
|
||||||
|
containers:
|
||||||
|
main:
|
||||||
|
env:
|
||||||
|
VNC_PASSWORD: ""
|
||||||
|
envFrom:
|
||||||
|
- configMapRef:
|
||||||
|
name: "mkvcleaver"
|
||||||
|
|
||||||
|
configmap:
|
||||||
|
mkvcleaver:
|
||||||
|
enabled: true
|
||||||
|
data:
|
||||||
|
ENABLE_CJK_FONT: '{{ ternary "1" "0" .Values.mkvcleaver.ENABLE_CJK_FONT }}'
|
||||||
|
KEEP_APP_RUNNING: '{{ ternary "1" "0" .Values.mkvcleaver.KEEP_APP_RUNNING }}'
|
||||||
|
SECURE_CONNECTION: '{{ ternary "1" "0" .Values.mkvcleaver.SECURE_CONNECTION }}'
|
||||||
|
DISPLAY_WIDTH: "{{ .Values.mkvcleaver.DISPLAY_WIDTH }}"
|
||||||
|
DISPLAY_HEIGHT: "{{ .Values.mkvcleaver.DISPLAY_HEIGHT }}"
|
||||||
|
|
||||||
service:
|
service:
|
||||||
main:
|
main:
|
||||||
ports:
|
ports:
|
||||||
@@ -16,21 +62,7 @@ service:
|
|||||||
enabled: true
|
enabled: true
|
||||||
port: 5900
|
port: 5900
|
||||||
targetPort: 5900
|
targetPort: 5900
|
||||||
mkvcleaver:
|
|
||||||
KEEP_APP_RUNNING: false
|
|
||||||
DISPLAY_WIDTH: 1280
|
|
||||||
DISPLAY_HEIGHT: 768
|
|
||||||
SECURE_CONNECTION: false
|
|
||||||
ENABLE_CJK_FONT: false
|
|
||||||
configmap:
|
|
||||||
mkvcleaver:
|
|
||||||
enabled: true
|
|
||||||
data:
|
|
||||||
ENABLE_CJK_FONT: '{{ ternary "1" "0" .Values.mkvcleaver.ENABLE_CJK_FONT }}'
|
|
||||||
KEEP_APP_RUNNING: '{{ ternary "1" "0" .Values.mkvcleaver.KEEP_APP_RUNNING }}'
|
|
||||||
SECURE_CONNECTION: '{{ ternary "1" "0" .Values.mkvcleaver.SECURE_CONNECTION }}'
|
|
||||||
DISPLAY_WIDTH: "{{ .Values.mkvcleaver.DISPLAY_WIDTH }}"
|
|
||||||
DISPLAY_HEIGHT: "{{ .Values.mkvcleaver.DISPLAY_HEIGHT }}"
|
|
||||||
persistence:
|
persistence:
|
||||||
config:
|
config:
|
||||||
enabled: true
|
enabled: true
|
||||||
@@ -38,22 +70,7 @@ persistence:
|
|||||||
storage:
|
storage:
|
||||||
enabled: true
|
enabled: true
|
||||||
mountPath: "/storage"
|
mountPath: "/storage"
|
||||||
|
|
||||||
portal:
|
portal:
|
||||||
open:
|
open:
|
||||||
enabled: true
|
enabled: true
|
||||||
securityContext:
|
|
||||||
container:
|
|
||||||
readOnlyRootFilesystem: false
|
|
||||||
runAsNonRoot: false
|
|
||||||
runAsUser: 0
|
|
||||||
runAsGroup: 0
|
|
||||||
workload:
|
|
||||||
main:
|
|
||||||
podSpec:
|
|
||||||
containers:
|
|
||||||
main:
|
|
||||||
env:
|
|
||||||
VNC_PASSWORD: ""
|
|
||||||
envFrom:
|
|
||||||
- configMapRef:
|
|
||||||
name: "mkvcleaver"
|
|
||||||
|
|||||||
@@ -160,6 +160,7 @@ words:
|
|||||||
- minecraft
|
- minecraft
|
||||||
- minio
|
- minio
|
||||||
- misskey
|
- misskey
|
||||||
|
- mkvcleaver
|
||||||
- modelstore
|
- modelstore
|
||||||
- modports
|
- modports
|
||||||
- mongosh
|
- mongosh
|
||||||
|
|||||||
Reference in New Issue
Block a user