mirror of
https://github.com/nold360/hive-apps
synced 2024-12-22 21:51:20 +00:00
change(navidrome -> airsonic)
This commit is contained in:
parent
7759cceb09
commit
8bd20f4d29
3 changed files with 62 additions and 61 deletions
|
@ -1,11 +1,9 @@
|
||||||
config:
|
config:
|
||||||
description: Music Streaming
|
description: Music Streaming
|
||||||
syncWave: 100
|
syncWave: 100
|
||||||
repo: k8s-at-home
|
|
||||||
|
|
||||||
apps:
|
apps:
|
||||||
- name: navidrome
|
- name: airsonic
|
||||||
chart: navidrome
|
chart: airsonic
|
||||||
|
repo: k8s-at-home
|
||||||
targetRevision: 6.3.2
|
targetRevision: 6.3.2
|
||||||
include:
|
|
||||||
- ingress-internal
|
|
||||||
|
|
59
projects/music/values/airsonic.yaml
Normal file
59
projects/music/values/airsonic.yaml
Normal file
|
@ -0,0 +1,59 @@
|
||||||
|
image:
|
||||||
|
repository: airsonicadvanced/airsonic-advanced
|
||||||
|
tag: latest
|
||||||
|
pullPolicy: Always
|
||||||
|
|
||||||
|
env:
|
||||||
|
JAVA_OPTS: "-Dserver.use-forward-headers=true"
|
||||||
|
|
||||||
|
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
|
||||||
|
|
||||||
|
securityContext:
|
||||||
|
privileged: false
|
||||||
|
|
||||||
|
podSecurityContext:
|
||||||
|
runAsUser: 1000
|
||||||
|
runAsGroup: 1000
|
||||||
|
fsGroup: 1000
|
||||||
|
|
||||||
|
persistence:
|
||||||
|
music:
|
||||||
|
enabled: true
|
||||||
|
mountPath: /var/music
|
||||||
|
type: hostPath
|
||||||
|
hostPath: /data/media/music
|
||||||
|
|
||||||
|
config:
|
||||||
|
enabled: true
|
||||||
|
mountPath: /var/airsonic
|
||||||
|
size: 1Gi
|
||||||
|
accessMode: ReadWriteOnce
|
||||||
|
playlists:
|
||||||
|
enabled: true
|
||||||
|
mountPath: /var/playlists
|
||||||
|
size: 1Gi
|
||||||
|
accessMode: ReadWriteOnce
|
||||||
|
podcasts:
|
||||||
|
enabled: true
|
||||||
|
mountPath: /var/podcasts
|
||||||
|
size: 1Gi
|
||||||
|
accessMode: ReadWriteOnce
|
||||||
|
media:
|
||||||
|
enabled: true
|
||||||
|
mountPath: /var/media
|
||||||
|
size: 1Gi
|
||||||
|
accessMode: ReadWriteOnce
|
|
@ -1,56 +0,0 @@
|
||||||
image:
|
|
||||||
repository: deluan/navidrome
|
|
||||||
tag: 0.47.5
|
|
||||||
|
|
||||||
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
|
|
||||||
|
|
||||||
ND_SCANSCHEDULE: "0"
|
|
||||||
ND_LASTFM_ENABLED: "false"
|
|
||||||
ND_ENABLEEXTERNALSERVICES: "false"
|
|
||||||
ND_LISTENBRAINZ_ENABLED: "false"
|
|
||||||
|
|
||||||
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