Files
auricom-home-cluster/cluster/media/bazarr.yaml
2021-03-31 21:46:20 +02:00

66 lines
1.6 KiB
YAML

---
apiVersion: helm.toolkit.fluxcd.io/v2beta1
kind: HelmRelease
metadata:
name: bazarr
namespace: media
spec:
interval: 5m
chart:
spec:
# renovate: registryUrl=https://k8s-at-home.com/charts/
chart: bazarr
version: 7.1.1
sourceRef:
kind: HelmRepository
name: k8s-at-home-charts
namespace: flux-system
interval: 5m
values:
controllerType: deployment
image:
repository: ghcr.io/k8s-at-home/bazarr
tag: v0.9.1.1
pullPolicy: IfNotPresent
env:
TZ: "Europe/Paris"
podSecurityContext:
runAsUser: 568
runAsGroup: 568
fsGroup: 568
persistence:
config:
enabled: true
existingClaim: bazarr-config
additionalVolumeMounts:
- name: nfs-video
mountPath: "/mnt/storage/video"
additionalVolumes:
- name: nfs-video
persistentVolumeClaim:
claimName: nfs-video
service:
annotations:
prometheus.io/probe: "true"
prometheus.io/protocol: http
resources:
requests:
memory: 500Mi
cpu: 500m
limits:
memory: 1500Mi
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: bazarr.k3s.xpander.ovh
paths:
- path: /
pathType: Prefix
tls:
- hosts:
- "bazarr.k3s.xpander.ovh"