24 lines
477 B
YAML
24 lines
477 B
YAML
apiVersion: networking.k8s.io/v1
|
|
kind: Ingress
|
|
metadata:
|
|
name: qbittorrent
|
|
namespace: media
|
|
spec:
|
|
ingressClassName: traefik
|
|
rules:
|
|
- host: qbittorrent.jpcit.co.za
|
|
http:
|
|
paths:
|
|
- path: /
|
|
pathType: Prefix
|
|
backend:
|
|
service:
|
|
name: qbittorrent
|
|
port:
|
|
number: 80
|
|
tls:
|
|
- hosts:
|
|
- qbittorrent.jpcit.co.za
|
|
secretName: wildcard-jpcit-coza-tls
|
|
|