mirror of
https://github.com/shadoll/helm-charts.git
synced 2026-08-28 11:33:17 +00:00
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>
16 lines
596 B
YAML
16 lines
596 B
YAML
apiVersion: v1
|
|
kind: ConfigMap
|
|
metadata:
|
|
name: {{ .Release.Name }}-rtorrent-config
|
|
namespace: {{ .Release.Namespace }}
|
|
data:
|
|
rtorrent.rc: |
|
|
method.insert = cfg.basedir, private|const|string, (cat,(system.env,HOME),"/.local/share/rtorrent/")
|
|
session.path.set = (cat,(cfg.basedir),".session/")
|
|
directory.default.set = /data
|
|
network.scgi.open_local = (cat,(cfg.basedir),"rtorrent.sock")
|
|
network.port_range.set = {{ .Values.torrentPort }}-{{ .Values.torrentPort }}
|
|
network.port_random.set = no
|
|
network.max_open_files.set = 600
|
|
network.max_open_sockets.set = 300
|