add udp and tcp
All checks were successful
Renovate / renovate (push) Successful in 4m39s

This commit is contained in:
2025-07-19 16:06:36 +05:30
parent 4df49abcc7
commit d2e0582677

View File

@@ -11,3 +11,33 @@ spec:
ports: ports:
- port: 8080 - port: 8080
targetPort: 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