Files
truecharts/charts/stable/putty/values.yaml
T
TrueCharts BotandGitHub e495af6d17 chore(helm): update image docker.io/jlesage/putty v25.06.1 → v25.06.2 (#36725)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
|
[docker.io/jlesage/putty](https://redirect.github.com/jlesage/docker-putty)
| patch | `f445b8b` -> `5499ae5` |

Add the preset `:preserveSemverRanges` to your config if you don't want
to pin your dependencies.

---

### Release Notes

<details>
<summary>jlesage/docker-putty (docker.io/jlesage/putty)</summary>

###
[`v25.06.2`](https://redirect.github.com/jlesage/docker-putty/releases/tag/v25.06.2):
Version 25.06.2

[Compare
Source](https://redirect.github.com/jlesage/docker-putty/compare/v25.06.1...v25.06.2)

Changes in this release:

- Updated baseimage to version 4.8.1, which brings the following
changes:
    -   Fixed crash with some binaries on systems using old kernel.

</details>

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined),
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://redirect.github.com/renovatebot/renovate).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMzguMCIsInVwZGF0ZWRJblZlciI6IjM5LjIzOC4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvcGF0Y2giXX0=-->
2025-06-28 03:06:41 +02:00

68 lines
1.7 KiB
YAML

image:
repository: docker.io/jlesage/putty
tag: v25.06.2@sha256:5499ae58f56553b04a16a42baf92f745bc31ae6b0de556d8c29f713d96774da8
pullPolicy: IfNotPresent
service:
main:
ports:
main:
port: 10266
targetPort: 5800
vnc:
enabled: true
ports:
vnc:
enabled: true
port: 10267
targetPort: 5900
putty:
KEEP_APP_RUNNING: false
DISPLAY_WIDTH: 1280
DISPLAY_HEIGHT: 768
SECURE_CONNECTION: false
DISABLE_RESTART_SESSION_DIALOG_WINDOW: false
ENABLE_CJK_FONT: false
configmap:
putty:
enabled: true
data:
ENABLE_CJK_FONT: '{{ ternary "1" "0" .Values.putty.ENABLE_CJK_FONT }}'
KEEP_APP_RUNNING: '{{ ternary "1" "0" .Values.putty.KEEP_APP_RUNNING }}'
SECURE_CONNECTION: '{{ ternary "1" "0" .Values.putty.SECURE_CONNECTION }}'
DISABLE_RESTART_SESSION_DIALOG_WINDOW: '{{ ternary "1" "0" .Values.putty.DISABLE_RESTART_SESSION_DIALOG_WINDOW }}'
DISPLAY_WIDTH: "{{ .Values.putty.DISPLAY_WIDTH }}"
DISPLAY_HEIGHT: "{{ .Values.putty.DISPLAY_HEIGHT }}"
persistence:
config:
enabled: true
mountPath: "/config"
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: "putty"