mirror of
https://github.com/nold360/hive-apps
synced 2025-01-03 12:11:16 +00:00
add(qbittorrent)
This commit is contained in:
parent
fe0ccfcf84
commit
e029408a08
2 changed files with 125 additions and 0 deletions
|
@ -17,6 +17,20 @@ apps:
|
||||||
include:
|
include:
|
||||||
- ingress-internal
|
- ingress-internal
|
||||||
|
|
||||||
|
- name: qbittorrent
|
||||||
|
# repoURL: https://lib42.github.io/charts
|
||||||
|
repoURL: https://github.com/lib42/charts
|
||||||
|
#chart: deluge
|
||||||
|
#targetRevision: 1.3.0
|
||||||
|
targetRevision: add/qbittorrent
|
||||||
|
path: charts/qbittorrent
|
||||||
|
secrets:
|
||||||
|
- name: openvpn
|
||||||
|
fromApp: deluge
|
||||||
|
keys:
|
||||||
|
- VPN_AUTH
|
||||||
|
- vpnConfigfile
|
||||||
|
|
||||||
- name: youtubedl
|
- name: youtubedl
|
||||||
repoURL: https://k8s-at-home.com/charts/
|
repoURL: https://k8s-at-home.com/charts/
|
||||||
chart: youtubedl-material
|
chart: youtubedl-material
|
||||||
|
|
111
projects/downloader/values/qbittorrent.yaml
Normal file
111
projects/downloader/values/qbittorrent.yaml
Normal file
|
@ -0,0 +1,111 @@
|
||||||
|
---
|
||||||
|
image:
|
||||||
|
repository: ghcr.io/onedr0p/qbittorrent
|
||||||
|
tag: 4.5.2
|
||||||
|
|
||||||
|
ingress:
|
||||||
|
main:
|
||||||
|
enabled: true
|
||||||
|
annotations:
|
||||||
|
cert-manager.io/cluster-issuer: "vault-issuer"
|
||||||
|
nginx.ingress.kubernetes.io/proxy-body-size: 50m
|
||||||
|
hosts:
|
||||||
|
- host: qbittorrent.dc
|
||||||
|
paths:
|
||||||
|
- path: /
|
||||||
|
pathType: Prefix
|
||||||
|
tls:
|
||||||
|
- secretName: qbittorrent-tls
|
||||||
|
hosts:
|
||||||
|
- qbittorrent.dc
|
||||||
|
|
||||||
|
service:
|
||||||
|
main:
|
||||||
|
enabled: true
|
||||||
|
ports:
|
||||||
|
http:
|
||||||
|
port: 8080
|
||||||
|
|
||||||
|
podSecurityContext:
|
||||||
|
# Disable IPv6 support for gluetun:
|
||||||
|
sysctls:
|
||||||
|
- name: net.ipv6.conf.all.disable_ipv6
|
||||||
|
value: "1"
|
||||||
|
fsGroup: 568
|
||||||
|
fsGroupChangePolicy: "OnRootMismatch"
|
||||||
|
supplementalGroups:
|
||||||
|
- 100
|
||||||
|
|
||||||
|
persistence:
|
||||||
|
config:
|
||||||
|
enabled: true
|
||||||
|
mountPath: /config
|
||||||
|
size: 10M
|
||||||
|
|
||||||
|
# for custom themes:
|
||||||
|
theme:
|
||||||
|
enabled: false
|
||||||
|
mountpath: /theme
|
||||||
|
type: emptyDir
|
||||||
|
|
||||||
|
## example used hostpath instead
|
||||||
|
downloads:
|
||||||
|
enabled: true
|
||||||
|
type: hostPath
|
||||||
|
hostPath: /data/media/torrent
|
||||||
|
mountPath: /downloads
|
||||||
|
|
||||||
|
|
||||||
|
## Install custom Theme
|
||||||
|
# initContainers:
|
||||||
|
# init-config:
|
||||||
|
# image: alpine/git
|
||||||
|
# args:
|
||||||
|
# - "clone"
|
||||||
|
# - "--depth"
|
||||||
|
# - "1"
|
||||||
|
# - "https://github.com/dracula/qbittorrent.git"
|
||||||
|
# - "/theme"
|
||||||
|
# volumeMounts:
|
||||||
|
# - name: theme
|
||||||
|
# mountPath: /theme
|
||||||
|
# securityContext:
|
||||||
|
# runAsNonRoot: true
|
||||||
|
# privileged: false
|
||||||
|
# readOnlyRootFilesystem: true
|
||||||
|
# allowPrivilegeEscalation: false
|
||||||
|
# capabilities:
|
||||||
|
# drop:
|
||||||
|
# - ALL
|
||||||
|
|
||||||
|
## VPN
|
||||||
|
addons:
|
||||||
|
vpn:
|
||||||
|
enabled: true
|
||||||
|
|
||||||
|
env:
|
||||||
|
VPN_SERVICE_PROVIDER: mullvad
|
||||||
|
VPN_TYPE: openvpn
|
||||||
|
WIREGUARD_ADDRESSES: 10.67.135.224/32
|
||||||
|
|
||||||
|
DNS_KEEP_NAMESERVER: "on"
|
||||||
|
DOT: "on"
|
||||||
|
FIREWALL: "on"
|
||||||
|
FIREWALL_INPUT_PORTS: "8080,8000"
|
||||||
|
FIREWALL_VPN_INPUT_PORTS: 61086
|
||||||
|
|
||||||
|
envFrom:
|
||||||
|
- secretRef:
|
||||||
|
name: wireguard-config
|
||||||
|
|
||||||
|
securityContext:
|
||||||
|
capabilities:
|
||||||
|
add:
|
||||||
|
- NET_ADMIN
|
||||||
|
|
||||||
|
livenessProbe:
|
||||||
|
httpGet:
|
||||||
|
path: /v1/openvpn/status
|
||||||
|
port: 8000
|
||||||
|
initialDelaySeconds: 30
|
||||||
|
periodSeconds: 30
|
Loading…
Reference in a new issue