k3s-cluster/cluster/apps/download/sonarr/helm-release.yaml

120 lines
2.6 KiB
YAML
Raw Normal View History

2023-04-08 16:46:01 -04:00
apiVersion: helm.toolkit.fluxcd.io/v2beta1
kind: HelmRelease
metadata:
2023-04-08 16:52:34 -04:00
name: sonarr
2023-04-08 16:46:01 -04:00
namespace: download
spec:
interval: 5m
chart:
spec:
chart: app-template
version: 1.3.x
sourceRef:
kind: HelmRepository
name: bjws-charts
namespace: flux-system
values:
image:
repository: ghcr.io/onedr0p/sonarr-develop
tag: rolling
2023-05-04 14:15:03 -04:00
# Metrics sidecar
sidecars:
exportarr:
image: ghcr.io/onedr0p/exportarr:latest
args:
- sonarr
ports:
- name: metrics
containerPort: 9000
env:
- name: URL
value: "http://localhost"
- name: CONFIG
value: "/config/config.xml"
2023-05-04 14:17:18 -04:00
- name: PORT
value: 9000
2023-05-04 14:41:10 -04:00
- name: ENABLE_ADDITIONAL_METRICS
value: "true"
2023-05-04 16:07:52 -04:00
- name: ENABLE_UNKNOWN_QUEUE_ITEMS
value: "true"
2023-05-04 14:15:03 -04:00
volumeMounts:
- name: config
mountPath: /config
readOnly: true
2023-04-08 16:46:01 -04:00
env:
TZ: America/New_York
2023-05-04 14:15:03 -04:00
2023-04-08 16:46:01 -04:00
service:
main:
2023-05-04 14:15:03 -04:00
labels:
app: sonarr-service
2023-04-08 16:46:01 -04:00
ports:
http:
port: 8989
2023-05-04 14:15:03 -04:00
metrics:
enabled: true
port: 9000
protocol: HTTP
2023-04-08 16:46:01 -04:00
probes:
liveness:
enabled: true
custom: true
spec:
httpGet:
path: /ping
port: 8989
initialDelaySeconds: 0
periodSeconds: 10
timeoutSeconds: 1
failureThreshold: 3
startup:
enabled: false
2023-05-04 14:15:03 -04:00
2023-04-08 16:46:01 -04:00
ingress:
main:
enabled: true
annotations:
2023-04-15 01:20:54 -04:00
cert-manager.io/cluster-issuer: letsencrypt-production
2023-04-08 16:46:01 -04:00
traefik.ingress.kubernetes.io/router.entrypoints: websecure
traefik.ingress.kubernetes.io/router.middlewares: traefik-authentik@kubernetescrd
hosts:
2023-04-13 00:56:51 -04:00
- host: &host "sonarr.${SECRET_NEW_DOMAIN}"
2023-04-08 16:46:01 -04:00
paths:
- path: /
pathType: Prefix
2023-04-13 00:56:51 -04:00
tls:
- hosts:
- *host
secretName: wildcard-main-tls
2023-05-04 14:15:03 -04:00
2023-04-08 16:46:01 -04:00
persistence:
config:
enabled: true
type: hostPath
hostPath: /mnt/MainPool/Kubernetes/sonarr
mountPath: /config
storage:
enabled: true
type: hostPath
hostPath: /mnt/MainPool/Media
mountPath: /storage
2023-06-01 23:21:04 -04:00
podSecurityContext:
runAsNonRoot: true
runAsUser: 10000
runAsGroup: 10000
fsGroup: 10000
fsGroupChangePolicy: OnRootMismatch
2023-04-08 16:46:01 -04:00
resources:
requests:
cpu: 2m
2023-04-08 16:46:01 -04:00
memory: 350Mi
limits:
memory: 2500Mi