mirror of
https://github.com/shadoll/helm-charts.git
synced 2026-08-28 03:27:08 +00:00
chore: Add qBittorrent Helm chart with deployment, service, ingress, and values files
This commit is contained in:
@@ -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
|
||||
Reference in New Issue
Block a user