mirror of
https://github.com/auricom/home-cluster.git
synced 2025-09-17 18:24:14 +02:00
![feisar-bot[bot]](/assets/img/avatar_default.png)
| datasource | package | from | to | | ---------- | ----------------------------------- | ----- | ----- | | docker | ghcr.io/home-operations/qbittorrent | 5.1.0 | 5.1.1 |
100 lines
2.6 KiB
YAML
100 lines
2.6 KiB
YAML
---
|
|
# yaml-language-server: $schema=https://raw.githubusercontent.com/bjw-s/helm-charts/main/charts/other/app-template/schemas/helmrelease-helm-v2.schema.json
|
|
apiVersion: helm.toolkit.fluxcd.io/v2
|
|
kind: HelmRelease
|
|
metadata:
|
|
name: &app qbittorrent
|
|
spec:
|
|
interval: 1h
|
|
chartRef:
|
|
kind: OCIRepository
|
|
name: app-template
|
|
install:
|
|
remediation:
|
|
retries: 3
|
|
upgrade:
|
|
cleanupOnFail: true
|
|
remediation:
|
|
strategy: rollback
|
|
retries: 3
|
|
values:
|
|
defaultPodOptions:
|
|
securityContext:
|
|
runAsUser: 568
|
|
runAsGroup: 568
|
|
fsGroup: 568
|
|
fsGroupChangePolicy: OnRootMismatch
|
|
controllers:
|
|
qbittorrent:
|
|
containers:
|
|
app:
|
|
image:
|
|
repository: ghcr.io/home-operations/qbittorrent
|
|
tag: 5.1.1@sha256:539688bd5de1d3d7e9b5b91e306635ce2ae3d9aa423cd5fea4d47eebd5c46356
|
|
env:
|
|
TZ: "${TIMEZONE}"
|
|
QBITTORRENT__PORT: &port 8080
|
|
QBITTORRENT__BT_PORT: &port-bt 58462
|
|
resources:
|
|
requests:
|
|
cpu: 500m
|
|
memory: 1Gi
|
|
limits:
|
|
memory: 8Gi
|
|
service:
|
|
app:
|
|
controller: *app
|
|
ports:
|
|
http:
|
|
port: *port
|
|
bittorrent:
|
|
enabled: true
|
|
controller: *app
|
|
type: LoadBalancer
|
|
loadBalancerIP: 192.168.169.105
|
|
ports:
|
|
bittorrent:
|
|
enabled: true
|
|
port: *port-bt
|
|
protocol: TCP
|
|
targetPort: *port-bt
|
|
externalTrafficPolicy: Local
|
|
ingress:
|
|
app:
|
|
enabled: true
|
|
className: internal
|
|
hosts:
|
|
- host: &host "{{ .Release.Name }}.${SECRET_EXTERNAL_DOMAIN}"
|
|
paths:
|
|
- path: /
|
|
service:
|
|
identifier: app
|
|
port: http
|
|
tls:
|
|
- hosts:
|
|
- *host
|
|
persistence:
|
|
config:
|
|
enabled: true
|
|
existingClaim: *app
|
|
globalMounts:
|
|
- path: /config
|
|
downloads:
|
|
type: nfs
|
|
server: 192.168.9.10
|
|
path: /var/mnt/vol1/downloads
|
|
globalMounts:
|
|
- path: /mnt/storage/downloads
|
|
music-qbittorrent:
|
|
type: nfs
|
|
server: 192.168.9.10
|
|
path: /var/mnt/vol1/music/.qbittorrent
|
|
globalMounts:
|
|
- path: /mnt/storage/music/.qbittorrent
|
|
video-qbittorrent:
|
|
type: nfs
|
|
server: 192.168.9.10
|
|
path: /var/mnt/vol1/video/.qbittorrent
|
|
globalMounts:
|
|
- path: /mnt/storage/video/.qbittorrent
|