mirror of
https://github.com/auricom/home-cluster.git
synced 2025-09-17 18:24:14 +02:00
75 lines
1.9 KiB
YAML
75 lines
1.9 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 recyclarr
|
|
namespace: default
|
|
spec:
|
|
interval: 30m
|
|
chart:
|
|
spec:
|
|
chart: app-template
|
|
version: 3.5.1
|
|
sourceRef:
|
|
kind: HelmRepository
|
|
name: bjw-s
|
|
namespace: flux-system
|
|
maxHistory: 2
|
|
install:
|
|
createNamespace: true
|
|
remediation:
|
|
retries: 3
|
|
upgrade:
|
|
cleanupOnFail: true
|
|
remediation:
|
|
strategy: rollback
|
|
retries: 3
|
|
uninstall:
|
|
keepHistory: false
|
|
values:
|
|
controllers:
|
|
recyclarr:
|
|
annotations:
|
|
reloader.stakater.com/auto: "true"
|
|
containers:
|
|
app:
|
|
image:
|
|
repository: ghcr.io/recyclarr/recyclarr
|
|
tag: 7.4.0@sha256:619c3b8920a179f2c578acd0f54e9a068f57c049aff840469eed66e93a4be2cf
|
|
env:
|
|
TZ: ${TIMEZONE}
|
|
envFrom:
|
|
- secretRef:
|
|
name: recyclarr-secret
|
|
resources:
|
|
requests:
|
|
cpu: 10m
|
|
memory: 64M
|
|
limits:
|
|
memory: 128M
|
|
pod:
|
|
securityContext:
|
|
runAsUser: 568
|
|
runAsGroup: 568
|
|
fsGroup: 568
|
|
fsGroupChangePolicy: OnRootMismatch
|
|
service:
|
|
app:
|
|
controller: *app
|
|
enabled: false
|
|
persistence:
|
|
config:
|
|
enabled: true
|
|
existingClaim: recyclarr
|
|
config-file:
|
|
type: configMap
|
|
name: recyclarr-configmap
|
|
globalMounts:
|
|
- path: /config/recyclarr.yml
|
|
subPath: recyclarr.yml
|
|
readOnly: true
|
|
- path: /config/settings.yml
|
|
subPath: settings.yml
|
|
readOnly: true
|