chore: Add qBittorrent Helm chart with deployment, service, ingress, and values files

This commit is contained in:
sha
2026-04-11 13:03:37 +03:00
parent bff7d9efd8
commit c2fb3b646b
5 changed files with 154 additions and 0 deletions
+24
View File
@@ -0,0 +1,24 @@
apiVersion: v1
kind: Service
metadata:
name: {{ .Release.Name }}
labels:
app.kubernetes.io/name: {{ .Chart.Name }}
app.kubernetes.io/instance: {{ .Release.Name }}
spec:
type: ClusterIP
selector:
app: {{ .Release.Name }}
ports:
- name: webui
port: {{ .Values.webuiPort }}
targetPort: {{ .Values.webuiPort }}
protocol: TCP
- name: torrent-tcp
port: {{ .Values.torrentPort }}
targetPort: {{ .Values.torrentPort }}
protocol: TCP
- name: torrent-udp
port: {{ .Values.torrentPort }}
targetPort: {{ .Values.torrentPort }}
protocol: UDP