mirror of
https://github.com/nold360/hive-apps
synced 2024-11-03 04:16:35 +00:00
50 lines
943 B
YAML
50 lines
943 B
YAML
image:
|
|
repository: ghcr.io/k8s-at-home/lidarr
|
|
tag: v1.1.0.2600
|
|
|
|
ingress:
|
|
main:
|
|
enabled: true
|
|
annotations:
|
|
cert-manager.io/cluster-issuer: vault-issuer
|
|
traefik.ingress.kubernetes.io/router.tls: 'true'
|
|
hosts:
|
|
- host: lidarr.dc
|
|
paths:
|
|
- path: /
|
|
pathType: Prefix
|
|
tls:
|
|
- secretName: lidarr-tls
|
|
hosts:
|
|
- lidarr.dc
|
|
|
|
securityContext:
|
|
privileged: false
|
|
|
|
podSecurityContext:
|
|
#runAsUser: 1000
|
|
runAsGroup: 1000
|
|
fsGroup: 1000
|
|
|
|
persistence:
|
|
config:
|
|
enabled: true
|
|
#mountPath: /downloads
|
|
storageClass: local-path
|
|
accessMode: ReadWriteOnce
|
|
size: 1Gi
|
|
media:
|
|
enabled: true
|
|
type: hostPath
|
|
mountPath: /music
|
|
hostPath: /data/media/music
|
|
torrent:
|
|
enabled: true
|
|
type: hostPath
|
|
mountPath: /torrent
|
|
hostPath: /data/torrent
|
|
downloads:
|
|
enabled: true
|
|
type: hostPath
|
|
mountPath: /downloads
|
|
hostPath: /data/downloads
|