mirror of
https://github.com/nold360/hive-apps
synced 2024-12-22 13:01:21 +00:00
Add(navidrome)
This commit is contained in:
parent
716067fd7a
commit
044d01f128
2 changed files with 62 additions and 0 deletions
11
projects/music/project.yaml
Normal file
11
projects/music/project.yaml
Normal file
|
@ -0,0 +1,11 @@
|
|||
config:
|
||||
description: Music Streaming
|
||||
syncWave: 100
|
||||
repo: k8s-at-home
|
||||
|
||||
apps:
|
||||
- name: navidrome
|
||||
chart: navidrome
|
||||
targetRevision: 6.3.2
|
||||
include:
|
||||
- ingress-internal
|
51
projects/music/values/navidrome.yaml
Normal file
51
projects/music/values/navidrome.yaml
Normal file
|
@ -0,0 +1,51 @@
|
|||
image:
|
||||
repository: deluan/navidrome
|
||||
tag: 0.43.0
|
||||
|
||||
ingress:
|
||||
main:
|
||||
enabled: true
|
||||
annotations:
|
||||
cert-manager.io/cluster-issuer: vault-issuer
|
||||
traefik.ingress.kubernetes.io/router.tls: 'true'
|
||||
hosts:
|
||||
- host: music.dc
|
||||
paths:
|
||||
- path: /
|
||||
pathType: Prefix
|
||||
tls:
|
||||
- secretName: music-tls
|
||||
hosts:
|
||||
- music.dc
|
||||
env:
|
||||
# -- Set the container timezone
|
||||
TZ: UTC
|
||||
# -- Log level. Useful for troubleshooting.
|
||||
ND_LOGLEVEL: info
|
||||
# -- How long Navidrome will wait before closing web ui idle sessions
|
||||
ND_SESSIONTIMEOUT: 24h
|
||||
# -- Enables transcoding configuration in the UI
|
||||
ND_ENABLETRANSCODINGCONFIG: "true"
|
||||
# -- Folder where your music library is stored.
|
||||
ND_MUSICFOLDER: /music
|
||||
|
||||
securityContext:
|
||||
privileged: false
|
||||
|
||||
podSecurityContext:
|
||||
#runAsUser: 1000
|
||||
runAsGroup: 1000
|
||||
fsGroup: 1000
|
||||
|
||||
persistence:
|
||||
config:
|
||||
enabled: true
|
||||
mountPath: /data
|
||||
storageClass: local-path
|
||||
accessMode: ReadWriteOnce
|
||||
size: 1Gi
|
||||
music:
|
||||
enabled: true
|
||||
type: hostPath
|
||||
mountPath: /music
|
||||
hostPath: /data/media/music
|
Loading…
Reference in a new issue