mirror of
https://github.com/auricom/home-cluster.git
synced 2025-09-26 20:13:31 +02:00

| datasource | package | from | to | | ---------- | ------------------------------- | ---------- | ---------- | | docker | ghcr.io/onedr0p/readarr-nightly | 0.1.5.1680 | 0.1.5.1683 |
97 lines
2.5 KiB
YAML
97 lines
2.5 KiB
YAML
---
|
|
# yaml-language-server: $schema=https://kubernetes-schemas.devbu.io/helmrelease_v2beta1.json
|
|
apiVersion: helm.toolkit.fluxcd.io/v2beta1
|
|
kind: HelmRelease
|
|
metadata:
|
|
name: &app readarr
|
|
namespace: default
|
|
spec:
|
|
interval: 15m
|
|
chart:
|
|
spec:
|
|
chart: app-template
|
|
version: 1.4.0
|
|
sourceRef:
|
|
kind: HelmRepository
|
|
name: bjw-s
|
|
namespace: flux-system
|
|
maxHistory: 3
|
|
install:
|
|
createNamespace: true
|
|
remediation:
|
|
retries: 3
|
|
upgrade:
|
|
cleanupOnFail: true
|
|
remediation:
|
|
retries: 3
|
|
uninstall:
|
|
keepHistory: false
|
|
values:
|
|
image:
|
|
repository: ghcr.io/onedr0p/readarr-nightly
|
|
tag: 0.1.5.1683@sha256:6db7b7b37923a437d0b6212b6d0792c0717ed0bbd43429af4c83679a054659ef
|
|
env:
|
|
TZ: "${TIMEZONE}"
|
|
READARR__INSTANCE_NAME: Readarr (Audio)
|
|
READARR__PORT: &port 8080
|
|
READARR__LOG_LEVEL: info
|
|
envFrom:
|
|
- secretRef:
|
|
name: *app
|
|
service:
|
|
main:
|
|
ports:
|
|
http:
|
|
port: *port
|
|
ingress:
|
|
main:
|
|
enabled: true
|
|
ingressClassName: "nginx"
|
|
annotations:
|
|
auth.home.arpa/enabled: "true"
|
|
nginx.ingress.kubernetes.io/configuration-snippet: |-
|
|
proxy_set_header Accept-Encoding "";
|
|
sub_filter '</head>' '<link rel="stylesheet" type="text/css" href="https://theme-park.${SECRET_CLUSTER_DOMAIN}/css/base/readarr/nord.css"></head>';
|
|
sub_filter_once on;
|
|
hajimari.io/icon: mdi:bookshelf
|
|
hosts:
|
|
- host: &host "{{ .Release.Name }}.${SECRET_CLUSTER_DOMAIN}"
|
|
paths:
|
|
- path: /
|
|
pathType: Prefix
|
|
tls:
|
|
- hosts:
|
|
- *host
|
|
podSecurityContext:
|
|
runAsUser: 568
|
|
runAsGroup: 568
|
|
fsGroup: 568
|
|
fsGroupChangePolicy: "OnRootMismatch"
|
|
supplementalGroups:
|
|
- 100
|
|
persistence:
|
|
config:
|
|
enabled: true
|
|
existingClaim: readarr-config
|
|
mountPath: /config
|
|
books:
|
|
enabled: true
|
|
type: nfs
|
|
server: "${LOCAL_LAN_TRUENAS}"
|
|
path: /mnt/storage/home/claude/books
|
|
mountPath: /mnt/storage/home/claude/books
|
|
downloads:
|
|
enabled: true
|
|
type: nfs
|
|
server: "${LOCAL_LAN_TRUENAS}"
|
|
path: /mnt/storage/downloads
|
|
mountPath: /mnt/storage/downloads
|
|
podAnnotations:
|
|
secret.reloader.stakater.com/reload: *app
|
|
resources:
|
|
requests:
|
|
cpu: 10m
|
|
memory: 250Mi
|
|
limits:
|
|
memory: 1000Mi
|