mirror of
https://github.com/auricom/home-cluster.git
synced 2025-09-30 23:45:25 +02:00
![renovate[bot]](/assets/img/avatar_default.png)
Signed-off-by: Auricom <auricom@users.noreply.github.com> Co-authored-by: Renovate Bot <bot@renovateapp.com>
64 lines
1.5 KiB
YAML
64 lines
1.5 KiB
YAML
---
|
|
apiVersion: helm.toolkit.fluxcd.io/v2beta1
|
|
kind: HelmRelease
|
|
metadata:
|
|
name: flood
|
|
namespace: media
|
|
spec:
|
|
interval: 5m
|
|
chart:
|
|
spec:
|
|
# renovate: registryUrl=https://k8s-at-home.com/charts/
|
|
chart: flood
|
|
version: 4.1.1
|
|
sourceRef:
|
|
kind: HelmRepository
|
|
name: k8s-at-home-charts
|
|
namespace: flux-system
|
|
interval: 5m
|
|
values:
|
|
controllerType: deployment
|
|
image:
|
|
repository: jesec/flood
|
|
tag: 4.5.2
|
|
pullPolicy: Always
|
|
env:
|
|
FLOOD_OPTION_RUNDIR: /data
|
|
FLOOD_OPTION_AUTH: "none"
|
|
FLOOD_OPTION_QBURL: "http://qbittorrent:8080"
|
|
podSecurityContext:
|
|
runAsUser: 1001
|
|
runAsGroup: 1001
|
|
fsGroup: 1001
|
|
ingress:
|
|
enabled: true
|
|
annotations:
|
|
kubernetes.io/ingress.class: "nginx"
|
|
nginx.ingress.kubernetes.io/auth-url: "http://authelia.auth.svc.cluster.local/api/verify"
|
|
nginx.ingress.kubernetes.io/auth-signin: "https://login.k3s.xpander.ovh/"
|
|
hosts:
|
|
- host: flood.k3s.xpander.ovh
|
|
paths:
|
|
- path: /
|
|
pathType: Prefix
|
|
tls:
|
|
- hosts:
|
|
- "flood.k3s.xpander.ovh"
|
|
persistence:
|
|
data:
|
|
enabled: true
|
|
existingClaim: flood-config
|
|
resources:
|
|
requests:
|
|
memory: 250Mi
|
|
cpu: 500m
|
|
limits:
|
|
memory: 1500Mi
|
|
service:
|
|
annotations:
|
|
prometheus.io/probe: "true"
|
|
prometheus.io/protocol: http
|
|
valuesFrom:
|
|
- kind: ConfigMap
|
|
name: flood-helmrelease
|