mirror of
https://github.com/auricom/home-cluster.git
synced 2026-01-01 11:00:59 +01:00
66 lines
1.6 KiB
YAML
66 lines
1.6 KiB
YAML
---
|
|
apiVersion: helm.toolkit.fluxcd.io/v2beta1
|
|
kind: HelmRelease
|
|
metadata:
|
|
name: pyload
|
|
namespace: media
|
|
spec:
|
|
interval: 5m
|
|
chart:
|
|
spec:
|
|
# renovate: registryUrl=https://k8s-at-home.com/charts/
|
|
chart: pyload
|
|
version: 6.1.0
|
|
sourceRef:
|
|
kind: HelmRepository
|
|
name: k8s-at-home-charts
|
|
namespace: flux-system
|
|
interval: 5m
|
|
values:
|
|
image:
|
|
repository: linuxserver/pyload
|
|
tag: version-5f5aaf56
|
|
pullPolicy: IfNotPresent
|
|
|
|
env:
|
|
TZ: "Europe/Paris"
|
|
|
|
persistence:
|
|
config:
|
|
enabled: true
|
|
existingClaim: pyload-config
|
|
nfs-downloads-media:
|
|
enabled: true
|
|
existingClaim: nfs-downloads-media
|
|
mountPath: "/mnt/storage/downloads"
|
|
|
|
service:
|
|
main:
|
|
annotations:
|
|
prometheus.io/probe: "true"
|
|
prometheus.io/protocol: http
|
|
|
|
ingress:
|
|
main:
|
|
enabled: true
|
|
ingressClassName: "nginx"
|
|
annotations:
|
|
nginx.ingress.kubernetes.io/auth-url: "http://authelia.networking.svc.cluster.local/api/verify"
|
|
nginx.ingress.kubernetes.io/auth-signin: "https://login.${SECRET_CLUSTER_DOMAIN}"
|
|
# traefik.ingress.kubernetes.io/router.entrypoints: "websecure"
|
|
hosts:
|
|
- host: "pyload.${SECRET_CLUSTER_DOMAIN}"
|
|
paths:
|
|
- path: /
|
|
pathType: Prefix
|
|
tls:
|
|
- hosts:
|
|
- "pyload.${SECRET_CLUSTER_DOMAIN}"
|
|
|
|
resources:
|
|
requests:
|
|
memory: 1Gi
|
|
cpu: 100m
|
|
limits:
|
|
memory: 5Gi
|