[gonic] update to latest gonic version (#541)

This commit is contained in:
ᗪєνιη ᗷυнʟ 2021-02-04 02:10:57 -05:00 committed by GitHub
parent c522152e20
commit 38efefa16b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 36 additions and 4 deletions

View File

@ -1,8 +1,8 @@
apiVersion: v2
appVersion: latest
appVersion: v0.12.0
description: Music streaming server / subsonic server API implementation
name: gonic
version: 1.0.0
version: 2.0.0
keywords:
- music
- subsonic

View 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

View File

@ -3,7 +3,7 @@
image:
repository: sentriz/gonic
pullPolicy: IfNotPresent
tag: latest
tag: v0.12.0
strategy:
type: Recreate
@ -15,13 +15,24 @@ service:
# # See more environment variables in the gonic documentation
# https://github.com/sentriz/gonic#configuration-options
env: {}
# TZ: UTC
# TZ:
# GONIC_MUSIC_PATH:
# GONIC_PODCAST_PATH:
# GONIC_CACHE_PATH:
persistence:
data:
enabled: false
emptyDir: false
podcasts:
enabled: false
emptyDir: false
cache:
enabled: false
emptyDir: false
music:
enabled: false
emptyDir: false