--- # yaml-language-server: $schema=https://kubernetes-schemas.devbu.io/helmrelease_v2beta1.json apiVersion: helm.toolkit.fluxcd.io/v2beta1 kind: HelmRelease metadata: name: &app radarr namespace: default spec: interval: 15m chart: spec: chart: app-template version: 1.4.0 sourceRef: kind: HelmRepository name: bjw-s namespace: flux-system maxHistory: 3 install: createNamespace: true remediation: retries: 3 upgrade: cleanupOnFail: true remediation: retries: 3 uninstall: keepHistory: false values: image: repository: ghcr.io/onedr0p/radarr-develop tag: 4.5.0.7106@sha256:4e53a92bf36435d32a1c186903e3c542db2e06fde6a4e79d6663682958e33b63 env: TZ: "${TIMEZONE}" PUSHOVER_DEBUG: "false" PUSHOVER_APP_URL: &host "{{ .Release.Name }}.${SECRET_CLUSTER_DOMAIN}" RADARR__INSTANCE_NAME: Radarr RADARR__PORT: &port 8080 RADARR__APPLICATION_URL: "https://{{ .Release.Name }}.${SECRET_CLUSTER_DOMAIN}" RADARR__LOG_LEVEL: info envFrom: - secretRef: name: *app service: main: ports: http: port: *port ingress: main: enabled: true ingressClassName: "nginx" annotations: auth.home.arpa/enabled: "true" nginx.ingress.kubernetes.io/configuration-snippet: | proxy_set_header Accept-Encoding ""; sub_filter '' ''; sub_filter_once on; hajimari.io/icon: mdi:filmstrip hosts: - host: *host paths: - path: / pathType: Prefix tls: - hosts: - *host podSecurityContext: runAsUser: 568 runAsGroup: 568 fsGroup: 568 fsGroupChangePolicy: "OnRootMismatch" supplementalGroups: - 100 persistence: config: enabled: true existingClaim: radarr-config mountPath: /config downloads: enabled: true type: nfs server: "${LOCAL_LAN_TRUENAS}" path: /mnt/storage/downloads mountPath: /mnt/storage/downloads video: enabled: true type: nfs server: "${LOCAL_LAN_TRUENAS}" path: /mnt/storage/video mountPath: /mnt/storage/video scripts: enabled: true type: configMap name: radarr-pushover subPath: pushover-notify.sh mountPath: /scripts/pushover-notify.sh defaultMode: 0775 readOnly: true podAnnotations: configmap.reloader.stakater.com/reload: radarr-pushover secret.reloader.stakater.com/reload: *app resources: requests: cpu: 500m memory: 500Mi limits: memory: 2000Mi