From 4ceb90a24c5a21af8951b31b8128712fe411b016 Mon Sep 17 00:00:00 2001 From: gitea-admin Date: Sun, 24 May 2026 14:14:53 +0000 Subject: [PATCH] feat: add Transmission with Gluetun VPN sidecar --- deployments/media/transmission/service.yaml | 22 +++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 deployments/media/transmission/service.yaml diff --git a/deployments/media/transmission/service.yaml b/deployments/media/transmission/service.yaml new file mode 100644 index 0000000..4afc836 --- /dev/null +++ b/deployments/media/transmission/service.yaml @@ -0,0 +1,22 @@ +apiVersion: v1 +kind: Service +metadata: + name: transmission + namespace: media +spec: + selector: + app: transmission + ports: + - protocol: TCP + port: 9091 + targetPort: 9091 + name: http + - protocol: TCP + port: 51413 + targetPort: 51413 + name: peer-tcp + - protocol: UDP + port: 51413 + targetPort: 51413 + name: peer-udp + type: ClusterIP