chore(qbit): Cleaning up unused files

This commit is contained in:
Vegard Hagen
2023-05-14 12:36:33 +02:00
parent 6f2d19d92f
commit 660eb5d4ea
5 changed files with 0 additions and 140 deletions

View File

@@ -1,17 +0,0 @@
apiVersion: traefik.containo.us/v1alpha1
kind: IngressRoute
metadata:
name: ingressroute-arr
spec:
entryPoints:
- websecure
routes:
- match: Host(`torrent.stonegarden.dev`)
kind: Rule
services:
- name: qbittorrent
port: 8112
middlewares:
- name: traefik-forward-auth
tls:
certResolver: letsencrypt

View File

@@ -6,7 +6,6 @@ commonLabels:
resources:
- cm-common-env.yaml
- ingress.yaml
- auth.yaml
- torrent.yaml
- prowlarr.yaml

View File

@@ -1,64 +0,0 @@
kind: Deployment
apiVersion: apps/v1
metadata:
name: qbittorrent
spec:
replicas: 1
selector:
matchLabels:
app: qbittorrent
template:
spec:
volumes:
- name: qbittorrent-config
hostPath:
path: "/disk/etc/qbittorrent"
- name: media-data
hostPath:
path: "/disk/data"
containers:
- name: qbittorrent
image: cr.hotio.dev/hotio/qbittorrent:legacy
volumeMounts:
- mountPath: "/config"
name: qbittorrent-config
- mountPath: "/app/data"
name: media-data
env:
- name: PUID
value: "1000"
- name: PGID
value: "1000"
- name: UMASK
value: "002"
- name: TZ
value: Europe/Oslo
- name: WEBUI_PORT
value: "8080"
ports:
- name: web
containerPort: 8080
- containerPort: 11010
protocol: TCP
- containerPort: 11011
protocol: TCP
- containerPort: 11012
protocol: TCP
- containerPort: 11013
protocol: TCP
- containerPort: 11014
protocol: TCP
- containerPort: 11015
protocol: TCP
- containerPort: 11010
protocol: UDP
- containerPort: 11011
protocol: UDP
- containerPort: 11012
protocol: UDP
- containerPort: 11013
protocol: UDP
- containerPort: 11014
protocol: UDP
- containerPort: 11015
protocol: UDP

View File

@@ -1,10 +0,0 @@
apiVersion: kustomize.config.k8s.io/v1beta1
kind: Kustomization
namespace: arr
commonLabels:
app: qbittorrent
resources:
- service.yaml
- deployment.yaml

View File

@@ -1,48 +0,0 @@
apiVersion: v1
kind: Service
metadata:
name: qbittorrent
spec:
type: LoadBalancer
ports:
- name: web
port: 8112
targetPort: 8080
- name: a
port: 11010
protocol: TCP
- name: b
port: 11011
protocol: TCP
- name: c
port: 11012
protocol: TCP
- name: d
port: 11013
protocol: TCP
- name: e
port: 11014
protocol: TCP
- name: f
port: 11015
protocol: TCP
- name: a1
port: 11010
protocol: UDP
- name: b1
port: 11011
protocol: UDP
- name: c1
port: 11012
protocol: UDP
- name: d1
port: 11013
protocol: UDP
- name: e1
port: 11014
protocol: UDP
- name: f1
port: 11015
protocol: UDP
selector:
app: qbittorrent