k8s/apps/arr/qbittorrent/ingress.yaml

24 lines
474 B
YAML
Raw Normal View History

apiVersion: networking.k8s.io/v1
kind: Ingress
2026-03-17 08:11:22 +00:00
metadata:
name: qbittorrent
namespace: media
spec:
ingressClassName: traefik
rules:
2026-04-14 07:34:45 +00:00
- host: qbittorrent.jpcit.co.za
http:
paths:
- path: /
pathType: Prefix
backend:
service:
name: qbittorrent
port:
number: 80
2026-04-14 07:34:45 +00:00
tls:
- hosts:
- qbittorrent.jpcit.co.za
secretName: wildcard-jpcit-coza-tls
2026-04-14 07:34:45 +00:00