56 lines
1.0 KiB
YAML
56 lines
1.0 KiB
YAML
---
|
|
replicaCount: 1
|
|
|
|
image:
|
|
repository: ghcr.io/linuxserver/lidarr
|
|
tag: "latest"
|
|
pullPolicy: Always
|
|
|
|
env:
|
|
TZ: "Europe/Amsterdam"
|
|
PUID: "1000"
|
|
PGID: "1000"
|
|
LIDARR__POSTGRES_HOST: pgsql-postgresql
|
|
LIDARR__POSTGRES_PORT: "5432"
|
|
LIDARR__POSTGRES_USER: arr_user
|
|
LIDARR__POSTGRES_PASSWORD: "clavedatabase"
|
|
LIDARR__POSTGRES_MAIN_DB: lidarr_db
|
|
LIDARR__POSTGRES_LOG_DB: lidarr_db_log
|
|
|
|
service:
|
|
main:
|
|
type: ClusterIP
|
|
ports:
|
|
http:
|
|
port: 8686
|
|
|
|
persistence:
|
|
config:
|
|
enabled: true
|
|
existingClaim: plex-data
|
|
subPath: configs/lidarr
|
|
media:
|
|
enabled: true
|
|
existingClaim: plex-data
|
|
mountPath: /nfs
|
|
|
|
resources:
|
|
requests:
|
|
memory: "500Mi"
|
|
cpu: "500m"
|
|
ephemeral-storage: "50Mi"
|
|
limits:
|
|
memory: "800Mi"
|
|
cpu: "1000m"
|
|
ephemeral-storage: "1Gi"
|
|
|
|
affinity:
|
|
nodeAffinity:
|
|
requiredDuringSchedulingIgnoredDuringExecution:
|
|
nodeSelectorTerms:
|
|
- matchExpressions:
|
|
- key: kubernetes.io/hostname
|
|
operator: NotIn
|
|
values:
|
|
- turing2
|