[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 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

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: 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