diff --git a/charts/gonic/Chart.yaml b/charts/gonic/Chart.yaml index 22a4324e..82dc2c7e 100644 --- a/charts/gonic/Chart.yaml +++ b/charts/gonic/Chart.yaml @@ -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 diff --git a/charts/gonic/ci/ct-values.yaml b/charts/gonic/ci/ct-values.yaml new file mode 100644 index 00000000..5c576b2d --- /dev/null +++ b/charts/gonic/ci/ct-values.yaml @@ -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 diff --git a/charts/gonic/values.yaml b/charts/gonic/values.yaml index 86f625aa..9c67f461 100644 --- a/charts/gonic/values.yaml +++ b/charts/gonic/values.yaml @@ -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