mirror of
https://github.com/auricom/home-cluster.git
synced 2025-10-02 16:51:52 +02:00
![renovate[bot]](/assets/img/avatar_default.png)
Signed-off-by: Auricom <auricom@users.noreply.github.com> Co-authored-by: Renovate Bot <bot@renovateapp.com>
60 lines
1.3 KiB
YAML
60 lines
1.3 KiB
YAML
---
|
|
apiVersion: helm.toolkit.fluxcd.io/v2beta1
|
|
kind: HelmRelease
|
|
metadata:
|
|
name: sonarr
|
|
namespace: media
|
|
spec:
|
|
interval: 5m
|
|
chart:
|
|
spec:
|
|
# renovate: registryUrl=https://k8s-at-home.com/charts/
|
|
chart: sonarr
|
|
version: 9.0.2
|
|
sourceRef:
|
|
kind: HelmRepository
|
|
name: k8s-at-home-charts
|
|
namespace: flux-system
|
|
interval: 5m
|
|
values:
|
|
controllerType: deployment
|
|
image:
|
|
repository: k8sathome/sonarr
|
|
tag: v3.0.4.1120
|
|
pullPolicy: IfNotPresent
|
|
env:
|
|
TZ: "Europe/Paris"
|
|
podSecurityContext:
|
|
runAsUser: 568
|
|
runAsGroup: 568
|
|
fsGroup: 568
|
|
persistence:
|
|
config:
|
|
enabled: true
|
|
existingClaim: sonarr-config
|
|
additionalVolumeMounts:
|
|
- name: nfs-video
|
|
mountPath: "/mnt/storage/video"
|
|
- name: local-hdd
|
|
mountPath: "/downloads"
|
|
additionalVolumes:
|
|
- name: nfs-video
|
|
persistentVolumeClaim:
|
|
claimName: nfs-video
|
|
- name: local-hdd
|
|
persistentVolumeClaim:
|
|
claimName: local-hdd
|
|
resources:
|
|
requests:
|
|
memory: 500Mi
|
|
cpu: 500m
|
|
limits:
|
|
memory: 1500Mi
|
|
service:
|
|
annotations:
|
|
prometheus.io/probe: "true"
|
|
prometheus.io/protocol: http
|
|
valuesFrom:
|
|
- kind: ConfigMap
|
|
name: helmrelease-media-sonarr
|