mirror of
https://github.com/k8s-at-home/charts.git
synced 2025-01-23 23:49:12 +00:00
[gonic] update to latest gonic version (#541)
This commit is contained in:
parent
c522152e20
commit
38efefa16b
@ -1,8 +1,8 @@
|
|||||||
apiVersion: v2
|
apiVersion: v2
|
||||||
appVersion: latest
|
appVersion: v0.12.0
|
||||||
description: Music streaming server / subsonic server API implementation
|
description: Music streaming server / subsonic server API implementation
|
||||||
name: gonic
|
name: gonic
|
||||||
version: 1.0.0
|
version: 2.0.0
|
||||||
keywords:
|
keywords:
|
||||||
- music
|
- music
|
||||||
- subsonic
|
- subsonic
|
||||||
|
21
charts/gonic/ci/ct-values.yaml
Normal file
21
charts/gonic/ci/ct-values.yaml
Normal file
@ -0,0 +1,21 @@
|
|||||||
|
env:
|
||||||
|
GONIC_MUSIC_PATH: "/music"
|
||||||
|
GONIC_PODCAST_PATH: "/podcasts"
|
||||||
|
GONIC_CACHE_PATH: "/cache"
|
||||||
|
persistence:
|
||||||
|
data:
|
||||||
|
enabled: true
|
||||||
|
emptyDir: true
|
||||||
|
mountPath: /data
|
||||||
|
podcasts:
|
||||||
|
enabled: true
|
||||||
|
emptyDir: true
|
||||||
|
mountPath: /podcasts
|
||||||
|
cache:
|
||||||
|
enabled: true
|
||||||
|
emptyDir: true
|
||||||
|
mountPath: /cache
|
||||||
|
music:
|
||||||
|
enabled: true
|
||||||
|
emptyDir: true
|
||||||
|
mountPath: /music
|
@ -3,7 +3,7 @@
|
|||||||
image:
|
image:
|
||||||
repository: sentriz/gonic
|
repository: sentriz/gonic
|
||||||
pullPolicy: IfNotPresent
|
pullPolicy: IfNotPresent
|
||||||
tag: latest
|
tag: v0.12.0
|
||||||
|
|
||||||
strategy:
|
strategy:
|
||||||
type: Recreate
|
type: Recreate
|
||||||
@ -15,13 +15,24 @@ service:
|
|||||||
# # See more environment variables in the gonic documentation
|
# # See more environment variables in the gonic documentation
|
||||||
# https://github.com/sentriz/gonic#configuration-options
|
# https://github.com/sentriz/gonic#configuration-options
|
||||||
env: {}
|
env: {}
|
||||||
# TZ: UTC
|
# TZ:
|
||||||
|
# GONIC_MUSIC_PATH:
|
||||||
|
# GONIC_PODCAST_PATH:
|
||||||
|
# GONIC_CACHE_PATH:
|
||||||
|
|
||||||
persistence:
|
persistence:
|
||||||
data:
|
data:
|
||||||
enabled: false
|
enabled: false
|
||||||
emptyDir: false
|
emptyDir: false
|
||||||
|
|
||||||
|
podcasts:
|
||||||
|
enabled: false
|
||||||
|
emptyDir: false
|
||||||
|
|
||||||
|
cache:
|
||||||
|
enabled: false
|
||||||
|
emptyDir: false
|
||||||
|
|
||||||
music:
|
music:
|
||||||
enabled: false
|
enabled: false
|
||||||
emptyDir: false
|
emptyDir: false
|
||||||
|
Loading…
Reference in New Issue
Block a user