mirror of
https://github.com/auricom/home-cluster.git
synced 2025-10-01 07:55:06 +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>
69 lines
1.6 KiB
YAML
69 lines
1.6 KiB
YAML
---
|
|
apiVersion: helm.toolkit.fluxcd.io/v2beta1
|
|
kind: HelmRelease
|
|
metadata:
|
|
name: lidarr
|
|
namespace: media
|
|
spec:
|
|
interval: 5m
|
|
chart:
|
|
spec:
|
|
# renovate: registryUrl=https://k8s-at-home.com/charts/
|
|
chart: lidarr
|
|
version: 6.3.1
|
|
sourceRef:
|
|
kind: HelmRepository
|
|
name: k8s-at-home-charts
|
|
namespace: flux-system
|
|
interval: 5m
|
|
values:
|
|
controllerType: deployment
|
|
image:
|
|
repository: k8sathome/lidarr
|
|
tag: v0.8.0.2023
|
|
pullPolicy: IfNotPresent
|
|
env:
|
|
TZ: "Europe/Paris"
|
|
podSecurityContext:
|
|
runAsUser: 568
|
|
runAsGroup: 568
|
|
fsGroup: 568
|
|
persistence:
|
|
config:
|
|
enabled: true
|
|
existingClaim: lidarr-config
|
|
additionalVolumeMounts:
|
|
- name: nfs-music
|
|
mountPath: "/mnt/storage/music"
|
|
- name: local-hdd
|
|
mountPath: "/downloads"
|
|
additionalVolumes:
|
|
- name: nfs-music
|
|
persistentVolumeClaim:
|
|
claimName: nfs-music
|
|
- 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
|
|
affinity:
|
|
nodeAffinity:
|
|
requiredDuringSchedulingIgnoredDuringExecution:
|
|
nodeSelectorTerms:
|
|
- matchExpressions:
|
|
- key: kubernetes.io/hostname
|
|
operator: In
|
|
values:
|
|
- k3os-worker3
|
|
valuesFrom:
|
|
- kind: ConfigMap
|
|
name: helmrelease-media-lidarr
|