mirror of
https://github.com/shadoll/helm-charts.git
synced 2026-08-28 03:27:08 +00:00
feat(rflood): switch to jesec/rtorrent-flood to fix scheduler crash
hotio/rflood bundles rtorrent with a scheduler assertion bug that fires on torrent delete and shutdown. jesec/rtorrent-flood uses an actively maintained rtorrent fork with this fixed. Changes: - Image: hotio/rflood → jesec/rtorrent-flood:4.14.2 - webuiPort: 3000 → 3001 - Add ConfigMap for .rtorrent.rc (jesec requires explicit config) - Replace PUID/PGID env vars with pod securityContext (runAsUser/Group 1001) - Liveness probe: exec rtxmlrpc → httpGet on webui port - Remove TCP RPC port from service (jesec uses Unix socket) - Update version-source to dockerhub-tags-pattern for jesec tags Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
+13
-17
@@ -1,10 +1,9 @@
|
||||
# Default values for rflood Helm Chart (hotio/rflood)
|
||||
# Default values for rflood Helm Chart (jesec/rtorrent-flood)
|
||||
image:
|
||||
repository: ghcr.io/hotio/rflood
|
||||
repository: jesec/rtorrent-flood
|
||||
pullPolicy: IfNotPresent
|
||||
|
||||
webuiPort: 3000
|
||||
rpcPort: 5000
|
||||
webuiPort: 3001
|
||||
torrentPort: 50000
|
||||
|
||||
service:
|
||||
@@ -12,16 +11,15 @@ service:
|
||||
externalTrafficPolicy: ""
|
||||
nodePorts:
|
||||
webui: null
|
||||
rpc: null
|
||||
torrentTcp: null
|
||||
torrentUdp: null
|
||||
|
||||
env:
|
||||
PUID: "1001"
|
||||
PGID: "1001"
|
||||
UMASK: "002"
|
||||
TZ: "Europe/Kyiv"
|
||||
FLOOD_AUTH: "false"
|
||||
securityContext:
|
||||
runAsUser: 1001
|
||||
runAsGroup: 1001
|
||||
fsGroup: 1001
|
||||
|
||||
env: {}
|
||||
|
||||
resources:
|
||||
requests:
|
||||
@@ -33,14 +31,12 @@ resources:
|
||||
|
||||
livenessProbe:
|
||||
enabled: true
|
||||
exec:
|
||||
command:
|
||||
- /bin/sh
|
||||
- -c
|
||||
- "timeout 10 rtxmlrpc system.time_seconds > /dev/null 2>&1"
|
||||
httpGet:
|
||||
path: /
|
||||
port: 3001
|
||||
initialDelaySeconds: 60
|
||||
periodSeconds: 30
|
||||
timeoutSeconds: 15
|
||||
timeoutSeconds: 10
|
||||
failureThreshold: 3
|
||||
|
||||
persistence:
|
||||
|
||||
Reference in New Issue
Block a user