This PR contains the following updates: | Package | Update | Change | |---|---|---| | [docker.io/jlesage/tsmuxer](https://redirect.github.com/jlesage/docker-tsmuxer) | major | `3f935cd` -> `66e80d9` | --- > [!WARNING] > Some dependencies could not be looked up. Check the Dependency Dashboard for more information. Add the preset `:preserveSemverRanges` to your config if you don't want to pin your dependencies. --- ### Release Notes <details> <summary>jlesage/docker-tsmuxer (docker.io/jlesage/tsmuxer)</summary> ### [`v26.01.1`](https://redirect.github.com/jlesage/docker-tsmuxer/releases/tag/v26.01.1): Version 26.01.1 [Compare Source](https://redirect.github.com/jlesage/docker-tsmuxer/compare/v25.12.3...v26.01.1) Changes in this release: - Updated baseimage to version 4.10.6, which brings the following changes: - On Mac devices, fixed conversion of Command+<Key> shortcuts to the proper Alt+<Key> shortcuts for Linux applications. </details> --- ### 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://redirect.github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0Mi4xNy4wIiwidXBkYXRlZEluVmVyIjoiNDIuMTcuMCIsInRhcmdldEJyYW5jaCI6Im1hc3RlciIsImxhYmVscyI6WyJhcHAvdHNtdXhlciIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvbWFqb3IiXX0=-->
69 lines
1.6 KiB
YAML
69 lines
1.6 KiB
YAML
image:
|
|
repository: docker.io/jlesage/tsmuxer
|
|
tag: v26.01.1@sha256:66e80d9950d3b7355bdcdbc3a2aeef51f155afa822ecc4011ba43080f72fd0ac
|
|
pullPolicy: IfNotPresent
|
|
service:
|
|
main:
|
|
ports:
|
|
main:
|
|
port: 10274
|
|
targetPort: 5800
|
|
vnc:
|
|
enabled: true
|
|
ports:
|
|
vnc:
|
|
enabled: true
|
|
port: 10275
|
|
targetPort: 5900
|
|
tsmuxer:
|
|
KEEP_APP_RUNNING: false
|
|
DISPLAY_WIDTH: 1280
|
|
DISPLAY_HEIGHT: 768
|
|
SECURE_CONNECTION: false
|
|
ENABLE_CJK_FONT: false
|
|
configmap:
|
|
tsmuxer:
|
|
enabled: true
|
|
data:
|
|
ENABLE_CJK_FONT: '{{ ternary "1" "0" .Values.tsmuxer.ENABLE_CJK_FONT }}'
|
|
KEEP_APP_RUNNING: '{{ ternary "1" "0" .Values.tsmuxer.KEEP_APP_RUNNING }}'
|
|
SECURE_CONNECTION: '{{ ternary "1" "0" .Values.tsmuxer.SECURE_CONNECTION }}'
|
|
DISPLAY_WIDTH: "{{ .Values.tsmuxer.DISPLAY_WIDTH }}"
|
|
DISPLAY_HEIGHT: "{{ .Values.tsmuxer.DISPLAY_HEIGHT }}"
|
|
persistence:
|
|
config:
|
|
enabled: true
|
|
mountPath: "/config"
|
|
storage:
|
|
enabled: true
|
|
mountPath: "/storage"
|
|
|
|
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: "tsmuxer"
|