mirror of
https://github.com/shadoll/helm-charts.git
synced 2026-08-28 11:33:17 +00:00
fix(rflood): set HOME=/config and flood --auth none --rtsocket for jesec
- 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>
This commit is contained in:
@@ -41,13 +41,20 @@ spec:
|
||||
- name: {{ .Chart.Name }}
|
||||
image: "{{ .Values.image.repository }}:{{ .Chart.AppVersion }}"
|
||||
imagePullPolicy: {{ .Values.image.pullPolicy }}
|
||||
{{- if .Values.env }}
|
||||
command: ["/sbin/tini", "--"]
|
||||
args:
|
||||
- flood
|
||||
- --rtsocket
|
||||
- {{ .Values.rtorrentSocket }}
|
||||
{{- if .Values.floodNoAuth }}
|
||||
- --auth
|
||||
- none
|
||||
{{- end }}
|
||||
env:
|
||||
{{- range $key, $value := .Values.env }}
|
||||
- name: {{ $key }}
|
||||
value: {{ $value | quote }}
|
||||
{{- end }}
|
||||
{{- end }}
|
||||
ports:
|
||||
- containerPort: {{ .Values.webuiPort }}
|
||||
name: webui
|
||||
|
||||
Reference in New Issue
Block a user