124 lines
3.5 KiB
YAML
124 lines
3.5 KiB
YAML
# yaml-language-server: $schema=https://raw.githubusercontent.com/bjw-s/helm-charts/main/charts/other/app-template/schemas/helmrelease-helm-v2.schema.json
|
|
apiVersion: helm.toolkit.fluxcd.io/v2
|
|
kind: HelmRelease
|
|
metadata:
|
|
name: sonarr
|
|
namespace: download
|
|
spec:
|
|
interval: 5m
|
|
chart:
|
|
spec:
|
|
chart: app-template
|
|
version: 3.4.0
|
|
sourceRef:
|
|
kind: HelmRepository
|
|
name: bjws-charts
|
|
namespace: flux-system
|
|
|
|
values:
|
|
controllers:
|
|
main:
|
|
pod:
|
|
securityContext:
|
|
runAsNonRoot: true
|
|
runAsUser: 10000
|
|
runAsGroup: 10000
|
|
fsGroup: 10000
|
|
fsGroupChangePolicy: OnRootMismatch
|
|
|
|
containers:
|
|
sonarr:
|
|
image:
|
|
repository: ghcr.io/onedr0p/sonarr-develop
|
|
tag: 4.0.9.2457
|
|
envFrom:
|
|
- secretRef:
|
|
name: sonarr-secret
|
|
env:
|
|
TZ: America/New_York
|
|
SONARR__APP__INSTANCENAME: Sonarr
|
|
SONARR__APP__THEME: dark
|
|
SONARR__AUTH_METHOD: External
|
|
SONARR__AUTH__REQUIRED: DisabledForLocalAddresses
|
|
SONARR__LOG__DBENABLED: "False"
|
|
SONARR__LOG__LEVEL: info
|
|
SONARR__SERVER__PORT: &port 7878
|
|
SONARR__UPDATE__BRANCH: develop
|
|
SONARR__POSTGRES__HOST: postgresql.database.svc
|
|
SONARR__POSTGRES__PORT: "5432"
|
|
SONARR__POSTGRES__MAINDB: sonarr_main
|
|
probes:
|
|
liveness: &probes
|
|
enabled: true
|
|
custom: true
|
|
spec:
|
|
httpGet:
|
|
path: /ping
|
|
port: *port
|
|
initialDelaySeconds: 0
|
|
periodSeconds: 10
|
|
timeoutSeconds: 1
|
|
failureThreshold: 3
|
|
readiness: *probes
|
|
securityContext:
|
|
allowPrivilegeEscalation: false
|
|
readOnlyRootFilesystem: true
|
|
capabilities: { drop: ["ALL"] }
|
|
resources:
|
|
requests:
|
|
memory: 100Mi
|
|
limits:
|
|
memory: 4Gi
|
|
|
|
exportarr:
|
|
image:
|
|
repository: ghcr.io/onedr0p/exportarr
|
|
tag: v2.0.1
|
|
args:
|
|
- sonarr
|
|
env:
|
|
URL: "http://localhost"
|
|
CONFIG: "/config/config.xml"
|
|
PORT: &metricsPort 9000
|
|
ENABLE_ADDITIONAL_METRICS : "true"
|
|
ENABLE_UNKNOWN_QUEUE_ITEMS: "true"
|
|
|
|
ingress:
|
|
main:
|
|
annotations:
|
|
cert-manager.io/cluster-issuer: letsencrypt-production
|
|
traefik.ingress.kubernetes.io/router.entrypoints: websecure
|
|
traefik.ingress.kubernetes.io/router.middlewares: traefik-authentik@kubernetescrd
|
|
|
|
hosts:
|
|
- host: "sonarr.${SECRET_NEW_DOMAIN}"
|
|
paths:
|
|
- path: /
|
|
service:
|
|
identifier: main
|
|
port: http
|
|
|
|
service:
|
|
main:
|
|
controller: main
|
|
|
|
ports:
|
|
http:
|
|
port: *port
|
|
metrics:
|
|
port: *metricsPort
|
|
protocol: HTTP
|
|
|
|
persistence:
|
|
config:
|
|
existingClaim: sonarr
|
|
globalMounts:
|
|
- path: /config
|
|
storage:
|
|
type: hostPath
|
|
hostPath: /mnt/MainPool/Media
|
|
advancedMounts:
|
|
main: # controller name
|
|
sonarr: # container name
|
|
- path: /storage
|