mirror of
https://github.com/shadoll/helm-charts.git
synced 2026-08-28 19:43:12 +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>
85 lines
2.5 KiB
YAML
85 lines
2.5 KiB
YAML
apiVersion: apps/v1
|
|
kind: Deployment
|
|
metadata:
|
|
name: {{ .Release.Name }}
|
|
labels:
|
|
app.kubernetes.io/name: {{ .Chart.Name }}
|
|
app.kubernetes.io/instance: {{ .Release.Name }}
|
|
app.kubernetes.io/version: {{ .Chart.AppVersion | quote }}
|
|
app.kubernetes.io/component: torrent
|
|
annotations:
|
|
version-source: {{ index .Chart.Annotations "version-source" }}
|
|
spec:
|
|
replicas: 1
|
|
strategy:
|
|
type: Recreate
|
|
selector:
|
|
matchLabels:
|
|
app: {{ .Release.Name }}
|
|
template:
|
|
metadata:
|
|
labels:
|
|
app: {{ .Release.Name }}
|
|
spec:
|
|
{{- with .Values.securityContext }}
|
|
securityContext:
|
|
{{- toYaml . | nindent 8 }}
|
|
{{- end }}
|
|
{{- with .Values.nodeSelector }}
|
|
nodeSelector:
|
|
{{- toYaml . | nindent 8 }}
|
|
{{- end }}
|
|
{{- with .Values.tolerations }}
|
|
tolerations:
|
|
{{- toYaml . | nindent 8 }}
|
|
{{- end }}
|
|
{{- with .Values.affinity }}
|
|
affinity:
|
|
{{- toYaml . | nindent 8 }}
|
|
{{- end }}
|
|
containers:
|
|
- name: {{ .Chart.Name }}
|
|
image: "{{ .Values.image.repository }}:{{ .Chart.AppVersion }}"
|
|
imagePullPolicy: {{ .Values.image.pullPolicy }}
|
|
{{- if .Values.env }}
|
|
env:
|
|
{{- range $key, $value := .Values.env }}
|
|
- name: {{ $key }}
|
|
value: {{ $value | quote }}
|
|
{{- end }}
|
|
{{- end }}
|
|
ports:
|
|
- containerPort: {{ .Values.webuiPort }}
|
|
name: webui
|
|
- containerPort: {{ .Values.torrentPort }}
|
|
name: torrent-tcp
|
|
protocol: TCP
|
|
- containerPort: {{ .Values.torrentPort }}
|
|
name: torrent-udp
|
|
protocol: UDP
|
|
resources:
|
|
{{- toYaml .Values.resources | nindent 12 }}
|
|
{{- if .Values.livenessProbe.enabled }}
|
|
livenessProbe:
|
|
{{- omit .Values.livenessProbe "enabled" | toYaml | nindent 12 }}
|
|
{{- end }}
|
|
volumeMounts:
|
|
- name: config
|
|
mountPath: /config
|
|
- name: data
|
|
mountPath: /data
|
|
- name: rtorrent-config
|
|
mountPath: /config/.rtorrent.rc
|
|
subPath: rtorrent.rc
|
|
volumes:
|
|
- name: config
|
|
persistentVolumeClaim:
|
|
claimName: {{ .Release.Name }}-config
|
|
- name: data
|
|
hostPath:
|
|
path: {{ .Values.volumes.data.hostPath }}
|
|
type: DirectoryOrCreate
|
|
- name: rtorrent-config
|
|
configMap:
|
|
name: {{ .Release.Name }}-rtorrent-config
|