v10.11.11 has a broken UpdateNormalizedUsername migration that queries
a column that was never added to the schema. Pin to v10.11.10 and add
version-exclude support to the update script so the daily bot skips
the broken version until upstream fixes it.
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Image tags are v10.11.x not 10.11.x — the version-pattern stripping v
caused the pulled tag to not exist. Drop version-pattern and keep v prefix
in both appVersion and image.tag so hs node can pull the image again.
- HOME=/config makes rtorrent read /config/.rtorrent.rc and use /config/session/
- flood --auth none disables login requirement
- flood --rtsocket points to socket path from rtorrent.rc
- rtorrentSocket value used consistently in both configmap and command args
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
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>
rtorrent periodically freezes blocking Flood's XMLRPC calls (activity-stream
and client/settings hang). Root causes: pieces.memory.max=1800M near the 2Gi
container limit; no liveness probe to trigger pod restart on hang.
- Liveness probe: exec rtxmlrpc system.time_seconds with 10s timeout; restart
pod after 3 consecutive failures (every 30s check)
- Default memory limit raised from 2Gi to 4Gi
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>