mirror of
https://github.com/nold360/hive-apps
synced 2024-11-04 12:56:35 +00:00
47 lines
867 B
YAML
47 lines
867 B
YAML
image:
|
|
repository: ghcr.io/onedr0p/radarr
|
|
tag: 5.3.6.8612
|
|
|
|
env:
|
|
UMASK: "002"
|
|
|
|
ingress:
|
|
main:
|
|
enabled: true
|
|
annotations:
|
|
cert-manager.io/cluster-issuer: vault-issuer
|
|
traefik.ingress.kubernetes.io/router.tls: 'true'
|
|
hosts:
|
|
- host: radarr.dc
|
|
paths:
|
|
- path: /
|
|
pathType: Prefix
|
|
tls:
|
|
- secretName: radarr-tls
|
|
hosts:
|
|
- radarr.dc
|
|
|
|
securityContext:
|
|
privileged: true
|
|
allowPrivilegeEscalation: true
|
|
|
|
persistence:
|
|
config:
|
|
enabled: true
|
|
#mountPath: /downloads
|
|
storageClass: local-path
|
|
accessMode: ReadWriteOnce
|
|
size: 1Gi
|
|
media:
|
|
enabled: true
|
|
type: hostPath
|
|
mountPath: /movies
|
|
hostPath: /data/media/movies
|
|
readOnly: false
|
|
downloads:
|
|
enabled: true
|
|
type: hostPath
|
|
mountPath: /downloads
|
|
hostPath: /data/media/torrent
|
|
readOnly: false
|
|
|