Files
auricom-home-cluster/kubernetes/apps/default/radarr-archive/app/helmrelease.yaml
feisar-bot[bot] 1e36280e7b ⬆️ Update ghcr.io/home-operations/radarr ( 5.27.5.10198 → 5.28.0.10205 ) (#7436)
Co-authored-by: feisar-bot[bot] <98277827+feisar-bot[bot]@users.noreply.github.com>
2025-09-09 14:18:33 +02:00

125 lines
3.7 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: &app radarr-archive
spec:
interval: 1h
chartRef:
kind: OCIRepository
name: app-template
install:
remediation:
retries: 3
upgrade:
cleanupOnFail: true
remediation:
strategy: rollback
retries: 3
values:
controllers:
radarr-archive:
annotations:
configmap.reloader.stakater.com/reload: radarr-pushover
reloader.stakater.com/auto: "true"
secret.reloader.stakater.com/reload: radarr-archive-db-secret
containers:
app:
image:
repository: ghcr.io/home-operations/radarr
tag: 5.28.0.10205@sha256:80dec94f1eea0715471853011efdf2c49cf92f8fe3b17b722ad8f8a637e3fead
env:
TZ: "${TIMEZONE}"
RADARR__APP__INSTANCENAME: Radarr-archive
RADARR__APP__THEME: dark
RADARR__AUTH__METHOD: External
RADARR__AUTH__REQUIRED: DisabledForLocalAddresses
RADARR__LOG__DBENABLED: "False"
RADARR__LOG__LEVEL: info
RADARR__SERVER__PORT: &port 8080
PUSHOVER_APP_URL: &host "{{ .Release.Name }}.${SECRET_EXTERNAL_DOMAIN}"
RADARR__UPDATE__BRANCH: develop
PUSHOVER_DEBUG: "false"
PUSHOVER_PRIORITY: "0"
envFrom:
- secretRef:
name: radarr-secret
- secretRef:
name: radarr-archive-db-secret
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:
cpu: 100m
limits:
memory: 2Gi
defaultPodOptions:
securityContext:
runAsNonRoot: true
runAsUser: 1000
runAsGroup: 1000
fsGroup: 1000
fsGroupChangePolicy: OnRootMismatch
service:
app:
controller: *app
ports:
http:
port: *port
route:
app:
hostnames: ["{{ .Release.Name }}.${SECRET_EXTERNAL_DOMAIN}"]
parentRefs:
- name: internal
namespace: network
sectionName: https
rules:
- backendRefs:
- name: *app
port: *port
persistence:
config:
enabled: true
existingClaim: *app
globalMounts:
- path: /config
downloads:
enabled: true
type: nfs
server: 192.168.9.10
path: /var/mnt/vol1/downloads
globalMounts:
- path: /mnt/storage/downloads
video:
enabled: true
type: nfs
server: 192.168.9.10
path: /var/mnt/vol1/video
globalMounts:
- path: /mnt/storage/video
scripts:
enabled: true
type: configMap
name: radarr-pushover
defaultMode: 0775 # trunk-ignore(yamllint/octal-values)
globalMounts:
- path: /scripts/pushover-notify.sh
subPath: pushover-notify.sh
readOnly: true