--- # yaml-language-server: $schema=https://raw.githubusercontent.com/bjw-s/helm-charts/main/charts/other/app-template/schemas/helmrelease-helm-v2beta2.schema.json apiVersion: helm.toolkit.fluxcd.io/v2beta2 kind: HelmRelease metadata: name: prowlarr spec: interval: 30m chart: spec: chart: app-template version: 3.1.0 sourceRef: kind: HelmRepository name: bjw-s namespace: flux-system install: remediation: retries: 3 upgrade: cleanupOnFail: true remediation: retries: 3 strategy: rollback values: controllers: prowlarr: annotations: reloader.stakater.com/auto: "true" containers: app: image: repository: ghcr.io/onedr0p/prowlarr-develop tag: 1.16.1.4420@sha256:a60ce8c9e520f8631dda41e7c099ecb1167a24221bc672c981c13b87aa5974ab env: # Ref: https://github.com/Radarr/Radarr/issues/7030#issuecomment-1039689518 # Ref: https://github.com/dotnet/runtime/issues/9336 COMPlus_EnableDiagnostics: "0" PROWLARR__INSTANCE_NAME: Prowlarr PROWLARR__PORT: &port 80 PROWLARR__LOG_LEVEL: info PROWLARR__AUTHENTICATION_METHOD: External PROWLARR__THEME: dark TZ: America/Chicago PROWLARR__POSTGRES_MAIN_DB: prowlarr_main PROWLARR__POSTGRES_LOG_DB: prowlarr_logs envFrom: - secretRef: name: prowlarr-secret probes: liveness: &probes enabled: true custom: true spec: httpGet: path: /ping port: *port initialDelaySeconds: 0 periodSeconds: 10 timeoutSeconds: 1 failureThreshold: 3 readiness: *probes startup: enabled: false securityContext: allowPrivilegeEscalation: false readOnlyRootFilesystem: true capabilities: { drop: ["ALL"] } resources: requests: cpu: 10m limits: memory: 1Gi pod: securityContext: runAsUser: 568 runAsGroup: 568 runAsNonRoot: true fsGroup: 568 fsGroupChangePolicy: OnRootMismatch service: app: controller: prowlarr ports: http: port: *port ingress: app: enabled: true className: internal-nginx hosts: - host: &host "{{ .Release.Name }}.jahanson.tech" paths: - path: / service: identifier: app port: http tls: - hosts: - *host persistence: config: enabled: true type: emptyDir tmp: type: emptyDir