696cf28d79
This PR contains the following updates: | Package | Update | Change | |---|---|---| | [ghcr.io/rogerfar/rdtclient](https://redirect.github.com/rogerfar/rdt-client) | patch | `1e1d4e9` -> `adcb48e` | Add the preset `:preserveSemverRanges` to your config if you don't want to pin your dependencies. --- ### Release Notes <details> <summary>rogerfar/rdt-client (ghcr.io/rogerfar/rdtclient)</summary> ### [`v2.0.107`](https://redirect.github.com/rogerfar/rdt-client/blob/HEAD/CHANGELOG.md#20107---2025-04-13) [Compare Source](https://redirect.github.com/rogerfar/rdt-client/compare/v2.0.105...v2.0.107) ##### Fixed - Fixed Docker release versioning. ### [`v2.0.105`](https://redirect.github.com/rogerfar/rdt-client/blob/HEAD/CHANGELOG.md#20105---2025-04-13) [Compare Source](https://redirect.github.com/rogerfar/rdt-client/compare/v2.0.104...v2.0.105) ##### Added - Add feature to limit the amount of torrents that get sent to the provider at the same time. ##### Fixed - Moved the websocket update process to its own background thread to improve UI update consistency. </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=-->
115 lines
2.7 KiB
YAML
115 lines
2.7 KiB
YAML
image:
|
|
repository: ghcr.io/rogerfar/rdtclient
|
|
pullPolicy: IfNotPresent
|
|
tag: 2.0.107@sha256:adcb48e095f35a1a2d3496d0a6fbf9d54424d20b7f7b4bf0156048f7d89ea571
|
|
aria2Image:
|
|
repository: docker.io/p3terx/aria2-pro
|
|
pullPolicy: IfNotPresent
|
|
tag: latest@sha256:086d1a37c586edb07ec0fb956bf9edd89d1d38d138ad5309ff96d510c8c9a011
|
|
|
|
securityContext:
|
|
container:
|
|
runAsNonRoot: false
|
|
readOnlyRootFilesystem: false
|
|
runAsUser: 0
|
|
runAsGroup: 0
|
|
|
|
service:
|
|
main:
|
|
ports:
|
|
main:
|
|
protocol: http
|
|
targetPort: 6500
|
|
port: 6500
|
|
aria2:
|
|
enabled: true
|
|
type: ClusterIP
|
|
targetSelector: aria2
|
|
ports:
|
|
rpc:
|
|
enabled: true
|
|
port: 6800
|
|
targetSelector: aria2
|
|
torrent:
|
|
enabled: true
|
|
type: ClusterIP
|
|
targetSelector: aria2
|
|
ports:
|
|
torrent:
|
|
enabled: true
|
|
port: 6888
|
|
targetSelector: aria2
|
|
torrent-udp:
|
|
enabled: true
|
|
port: 6888
|
|
protocol: udp
|
|
targetSelector: aria2
|
|
|
|
aria2:
|
|
enabled: true
|
|
rpc_secret: MY_SECRET
|
|
disk_cache: 64M
|
|
update_trackers: true
|
|
custom_trackers_url: "https://trackerslist.com/all_aria2.txt"
|
|
|
|
workload:
|
|
main:
|
|
podSpec:
|
|
containers:
|
|
main:
|
|
probes:
|
|
liveness:
|
|
path: "/"
|
|
readiness:
|
|
path: "/"
|
|
startup:
|
|
path: "/"
|
|
aria2:
|
|
enabled: true
|
|
type: Deployment
|
|
strategy: RollingUpdate
|
|
replicas: 1
|
|
podSpec:
|
|
containers:
|
|
aria2:
|
|
primary: true
|
|
enabled: true
|
|
imageSelector: aria2Image
|
|
securityContext:
|
|
runAsUser: 0
|
|
runAsGroup: 0
|
|
readOnlyRootFilesystem: false
|
|
runAsNonRoot: false
|
|
probes:
|
|
liveness:
|
|
enabled: true
|
|
type: tcp
|
|
port: "{{ .Values.service.aria2.ports.rpc.port }}"
|
|
readiness:
|
|
enabled: true
|
|
type: tcp
|
|
port: "{{ .Values.service.aria2.ports.rpc.port }}"
|
|
startup:
|
|
enabled: true
|
|
type: tcp
|
|
port: "{{ .Values.service.aria2.ports.rpc.port }}"
|
|
env:
|
|
RPC_PORT: "{{ .Values.service.aria2.ports.rpc.port }}"
|
|
LISTEN_PORT: "{{ .Values.service.torrent.ports.torrent.port }}"
|
|
RPC_SECRET: "{{ .Values.aria2.rpc_secret }}"
|
|
DISK_CACHE: "{{ .Values.aria2.disk_cache }}"
|
|
IPV6_MODE: false
|
|
UPDATE_TRACKERS: "{{ .Values.aria2.update_trackers }}"
|
|
CUSTOM_TRACKER_URL: "{{ .Values.aria2.custom_trackers_url }}"
|
|
|
|
persistence:
|
|
db:
|
|
enabled: true
|
|
mountPath: "/data/db"
|
|
config:
|
|
enabled: true
|
|
targetSelector:
|
|
aria2:
|
|
aria2:
|
|
mountPath: /config
|