k3s-cluster/kubernetes/main/apps/download/radarr/helm-release.yaml

119 lines
2.6 KiB
YAML
Raw Normal View History

apiVersion: helm.toolkit.fluxcd.io/v2
2023-04-08 16:46:01 -04:00
kind: HelmRelease
metadata:
name: radarr
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/radarr-develop
tag: "5.10.0.9090"
2023-05-04 16:07:52 -04:00
# Metrics sidecar
sidecars:
exportarr:
image: ghcr.io/onedr0p/exportarr:v2.0.1
2023-05-04 16:07:52 -04:00
args:
- radarr
ports:
- name: metrics
containerPort: 9000
env:
- name: URL
value: "http://localhost"
- name: CONFIG
value: "/config/config.xml"
- name: PORT
value: 9000
- name: ENABLE_ADDITIONAL_METRICS
value: "true"
- name: ENABLE_UNKNOWN_QUEUE_ITEMS
value: "true"
volumeMounts:
- name: config
mountPath: /config
readOnly: true
2023-04-08 16:46:01 -04:00
env:
TZ: America/New_York
2023-05-04 16:07:52 -04:00
2023-04-08 16:46:01 -04:00
service:
main:
2023-05-04 16:07:52 -04:00
labels:
app: radarr-service
2023-04-08 16:46:01 -04:00
ports:
http:
port: 7878
2023-05-04 16:07:52 -04:00
metrics:
enabled: true
port: 9000
protocol: HTTP
2023-04-08 16:46:01 -04:00
probes:
liveness:
2023-04-08 17:16:53 -04:00
enabled: false
# custom: true
# spec:
# httpGet:
# path: /ping
# port: 7878
# initialDelaySeconds: 10
# periodSeconds: 10
# timeoutSeconds: 3
# failureThreshold: 3
2023-04-08 16:46:01 -04:00
startup:
enabled: false
2023-05-04 16:07:52 -04:00
2023-04-08 16:46:01 -04:00
ingress:
main:
enabled: true
annotations:
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:
- host: &host "radarr.${SECRET_NEW_DOMAIN}"
2023-04-08 16:46:01 -04:00
paths:
- path: /
pathType: Prefix
tls:
- hosts:
- *host
2023-05-04 16:07:52 -04:00
2023-04-08 16:46:01 -04:00
persistence:
config:
enabled: true
type: hostPath
hostPath: /mnt/MainPool/Kubernetes/radarr
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: 1m
2023-04-08 16:46:01 -04:00
memory: 350Mi
limits:
memory: 1500Mi