diff --git a/cluster/apps/qbittorrent/qbittorrent-svc.yml b/cluster/apps/qbittorrent/qbittorrent-svc.yml index 8ec7bab..885a0cf 100644 --- a/cluster/apps/qbittorrent/qbittorrent-svc.yml +++ b/cluster/apps/qbittorrent/qbittorrent-svc.yml @@ -11,3 +11,33 @@ spec: ports: - port: 8080 targetPort: 8080 + +--- +apiVersion: v1 +kind: Service +metadata: + name: qbittorrent-tcp-service + namespace: default +spec: + type: LoadBalancer + selector: + app: qbittorrent + ports: + - port: 6881 + protocol: TCP + targetPort: 6881 + +--- +apiVersion: v1 +kind: Service +metadata: + name: qbittorrent-udp-service + namespace: default +spec: + type: LoadBalancer + selector: + app: qbittorrent + ports: + - port: 6881 + targetPort: 6881 + protocol: UDP