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

This commit is contained in:
sha
2026-04-13 22:39:08 +03:00
parent 2a4fac3136
commit 755c5a1112
7 changed files with 180 additions and 1 deletions
+28
View File
@@ -0,0 +1,28 @@
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: rpc
port: {{ .Values.rpcPort }}
targetPort: {{ .Values.rpcPort }}
protocol: TCP
- name: torrent-tcp
port: {{ .Values.torrentPort }}
targetPort: {{ .Values.torrentPort }}
protocol: TCP
- name: torrent-udp
port: {{ .Values.torrentPort }}
targetPort: {{ .Values.torrentPort }}
protocol: UDP