73 lines
1.2 KiB
YAML
73 lines
1.2 KiB
YAML
|
|
replicaCount: 1
|
|
|
|
image:
|
|
repository: ghcr.io/linuxserver/lidarr
|
|
tag: latest
|
|
pullPolicy: Always
|
|
|
|
env:
|
|
- name: PUID
|
|
value: "1000"
|
|
- name: PGID
|
|
value: "1000"
|
|
- name: TZ
|
|
value: "Europe/Amsterdam"
|
|
- name: LIDARR__POSTGRES__HOST
|
|
value: pgsql-postgresql
|
|
- name: LIDARR__POSTGRES__PORT
|
|
value: "5432"
|
|
- name: LIDARR__POSTGRES__USER
|
|
value: arr_user
|
|
- name: LIDARR__POSTGRES__PASSWORD
|
|
value: clavedatabase
|
|
- name: LIDARR__POSTGRES__MAIN_DB
|
|
value: lidarr_db
|
|
- name: LIDARR__POSTGRES__LOG_DB
|
|
value: lidarr_db_log
|
|
|
|
service:
|
|
type: ClusterIP
|
|
port: 8686
|
|
|
|
ingress:
|
|
enabled: false
|
|
annotations:
|
|
kubernetes.io/ingress.class: nginx
|
|
kubernetes.io/tls-acme: "true"
|
|
path: /
|
|
hosts:
|
|
- lidarr.example.org
|
|
tls:
|
|
- secretName: lidarr-example-org
|
|
hosts:
|
|
- lidarr.example.org
|
|
|
|
volumes:
|
|
- name: plex-data
|
|
persistentVolumeClaim:
|
|
claimName: plex-data
|
|
|
|
volumeMounts:
|
|
- name: plex-data
|
|
mountPath: "/config"
|
|
subPath: "configs/lidarr"
|
|
- name: plex-data
|
|
mountPath: "/nfs"
|
|
|
|
resources:
|
|
requests:
|
|
memory: 500Mi
|
|
cpu: 500m
|
|
ephemeral-storage: 50Mi
|
|
limits:
|
|
memory: 800Mi
|
|
cpu: 1000m
|
|
ephemeral-storage: 1Gi
|
|
|
|
nodeSelector: {}
|
|
|
|
tolerations: []
|
|
|
|
affinity: {}
|