mirror of
https://github.com/auricom/home-cluster.git
synced 2025-09-17 18:24:14 +02:00
![feisar-bot[bot]](/assets/img/avatar_default.png)
| datasource | package | from | to | | ---------- | ------------------------------ | ------------ | ------------ | | docker | ghcr.io/home-operations/radarr | 5.27.4.10176 | 5.27.5.10184 | Co-authored-by: feisar-bot[bot] <98277827+feisar-bot[bot]@users.noreply.github.com>
108 lines
3.1 KiB
YAML
108 lines
3.1 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:
|
|
defaultPodOptions:
|
|
securityContext:
|
|
runAsUser: 568
|
|
runAsGroup: 568
|
|
fsGroup: 568
|
|
fsGroupChangePolicy: OnRootMismatch
|
|
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.27.5.10184@sha256:af67ce80302e21f7228e2da671943c48b27a25faf27e19c4fcb7ad33c1c0e3c0
|
|
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
|
|
resources:
|
|
requests:
|
|
cpu: 500m
|
|
memory: 500Mi
|
|
limits:
|
|
memory: 2000Mi
|
|
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
|