2024-01-23 01:17:39 +00:00
|
|
|
apiVersion: helm.toolkit.fluxcd.io/v2beta2
|
2023-05-11 19:35:36 +00:00
|
|
|
kind: HelmRelease
|
|
|
|
metadata:
|
|
|
|
name: qbittorrent
|
|
|
|
namespace: download
|
|
|
|
spec:
|
|
|
|
interval: 5m
|
|
|
|
chart:
|
|
|
|
spec:
|
|
|
|
chart: app-template
|
|
|
|
version: 1.3.x
|
|
|
|
sourceRef:
|
|
|
|
kind: HelmRepository
|
|
|
|
name: bjws-charts
|
|
|
|
namespace: flux-system
|
|
|
|
|
|
|
|
values:
|
|
|
|
image:
|
2023-06-02 04:37:13 +00:00
|
|
|
repository: lscr.io/linuxserver/qbittorrent
|
2024-01-23 14:23:31 +00:00
|
|
|
tag: "4.6.2"
|
2023-05-11 19:35:36 +00:00
|
|
|
|
|
|
|
sidecars:
|
|
|
|
gluetun:
|
2024-03-25 19:34:13 +00:00
|
|
|
image: qmcgaw/gluetun:v3.38
|
2023-05-11 19:35:36 +00:00
|
|
|
env:
|
2024-01-02 21:24:38 +00:00
|
|
|
- name: FIREWALL_INPUT_PORTS
|
|
|
|
value: "8080,17871" # 17871 is the prometheus exporter
|
2023-05-11 19:35:36 +00:00
|
|
|
envFrom:
|
|
|
|
- secretRef:
|
|
|
|
name: qbittorrent-secrets
|
|
|
|
securityContext:
|
|
|
|
capabilities:
|
|
|
|
add:
|
2024-01-02 21:24:38 +00:00
|
|
|
- NET_ADMIN
|
2023-12-14 03:18:52 +00:00
|
|
|
volumeMounts:
|
2024-01-02 21:24:38 +00:00
|
|
|
- name: gluetun-tmp
|
|
|
|
mountPath: /tmp/gluetun/
|
2023-12-14 03:18:52 +00:00
|
|
|
|
|
|
|
port-manager:
|
2024-02-04 05:00:27 +00:00
|
|
|
image: git.seanomik.net/seanomik/gluetun-qbit-port-updater:v0.1.2
|
2023-12-14 03:18:52 +00:00
|
|
|
imagePullPolicy: Always
|
|
|
|
env:
|
|
|
|
PORT_UPD_QBITTORRENT_HOST: localhost
|
|
|
|
PORT_UPD_QBITTORRENT_PORT: "8080"
|
|
|
|
# safe to have in plain text since qbittorrent is exposed through authentik.
|
|
|
|
PORT_UPD_QBITTORRENT_LOGIN: &qbitLogin admin
|
|
|
|
PORT_UPD_QBITTORRENT_PASSWORD: &qbitPass adminadmin
|
|
|
|
PORT_UPD_PORT_FILE: /tmp/gluetun/forwarded_port
|
|
|
|
volumeMounts:
|
2024-01-02 21:24:38 +00:00
|
|
|
- name: gluetun-tmp
|
|
|
|
mountPath: /tmp/gluetun/
|
2023-05-11 19:38:21 +00:00
|
|
|
|
2023-05-11 19:35:36 +00:00
|
|
|
metrics:
|
2024-01-23 01:17:57 +00:00
|
|
|
image: caseyscarborough/qbittorrent-exporter:v1.3.5
|
2023-05-11 19:47:11 +00:00
|
|
|
env:
|
2023-12-14 03:18:52 +00:00
|
|
|
QBITTORRENT_BASE_URL: "http://localhost:8080"
|
|
|
|
# safe to have in plain text since qbittorrent is exposed through authentik.
|
|
|
|
QBITTORRENT_LOGIN: *qbitLogin
|
|
|
|
QBITTORRENT_PASSWORD: *qbitPass
|
2023-05-11 19:35:36 +00:00
|
|
|
ports:
|
|
|
|
- name: metrics
|
|
|
|
containerPort: 17871
|
|
|
|
|
|
|
|
env:
|
|
|
|
TZ: America/New_York
|
2023-06-02 04:37:13 +00:00
|
|
|
PGID: "10000"
|
|
|
|
PUID: "10000"
|
|
|
|
WEBUI_PORT: "8080"
|
2023-05-11 19:35:36 +00:00
|
|
|
|
|
|
|
service:
|
|
|
|
main:
|
|
|
|
labels:
|
2023-05-11 19:38:21 +00:00
|
|
|
app: qbittorrent-service
|
2023-05-11 19:35:36 +00:00
|
|
|
|
|
|
|
ports:
|
|
|
|
http:
|
|
|
|
port: 8080
|
|
|
|
|
|
|
|
metrics:
|
|
|
|
enabled: true
|
|
|
|
port: 17871
|
|
|
|
protocol: HTTP
|
|
|
|
|
|
|
|
ingress:
|
|
|
|
main:
|
|
|
|
enabled: true
|
|
|
|
annotations:
|
|
|
|
cert-manager.io/cluster-issuer: letsencrypt-production
|
|
|
|
traefik.ingress.kubernetes.io/router.entrypoints: websecure
|
|
|
|
traefik.ingress.kubernetes.io/router.middlewares: traefik-authentik@kubernetescrd
|
|
|
|
hosts:
|
|
|
|
- host: &host "qbit.${SECRET_NEW_DOMAIN}"
|
|
|
|
paths:
|
|
|
|
- path: /
|
|
|
|
pathType: Prefix
|
|
|
|
tls:
|
|
|
|
- hosts:
|
|
|
|
- *host
|
|
|
|
|
|
|
|
persistence:
|
|
|
|
storage:
|
|
|
|
enabled: true
|
|
|
|
type: hostPath
|
|
|
|
hostPath: /mnt/MainPool/Media/Torrents
|
|
|
|
mountPath: /storage/Torrents
|
|
|
|
config:
|
|
|
|
enabled: true
|
|
|
|
type: hostPath
|
|
|
|
hostPath: /mnt/MainPool/Kubernetes/qbittorrent
|
|
|
|
mountPath: /config
|
2023-09-01 00:44:57 +00:00
|
|
|
cookies:
|
|
|
|
enabled: true
|
|
|
|
type: secret
|
|
|
|
name: cookie-secret
|
|
|
|
mountPath: /etc/tokens
|
2023-12-14 03:18:52 +00:00
|
|
|
gluetun-tmp:
|
|
|
|
enabled: true
|
|
|
|
type: emptyDir
|
2024-01-02 21:24:38 +00:00
|
|
|
|
2023-06-02 04:37:13 +00:00
|
|
|
resources:
|
|
|
|
requests:
|
|
|
|
cpu: 10m
|
|
|
|
memory: 250Mi
|
|
|
|
limits:
|
|
|
|
memory: 6000Mi
|