This PR contains the following updates: | Package | Update | Change | |---|---|---| | [docker.io/sentriz/gonic](https://redirect.github.com/sentriz/gonic) | minor | `32c400a` -> `fc7f3de` | --- > [!WARNING] > Some dependencies could not be looked up. Check the Dependency Dashboard for more information. Add the preset `:preserveSemverRanges` to your config if you don't want to pin your dependencies. --- ### Release Notes <details> <summary>sentriz/gonic (docker.io/sentriz/gonic)</summary> ### [`v0.18.0`](https://redirect.github.com/sentriz/gonic/releases/tag/v0.18.0): gonic v0.18.0 [Compare Source](https://redirect.github.com/sentriz/gonic/compare/v0.17.0...v0.18.0) ##### ⚠ BREAKING CHANGES - **deps:** bump to go1.25 ##### Features - **docker:** use alpine native taglib ([c9f4181](https://www.github.com/sentriz/gonic/commit/c9f41810af76d6a49c40af274b001f2b5b1d155d)) - **readme:** document comma escaping in readme ([eaa82b0](https://www.github.com/sentriz/gonic/commit/eaa82b00e55dc56dd5f1b7683769c2f30dadcc63)), closes [#​596](https://redirect.github.com/sentriz/gonic/issues/596) - **subsonic:** add support for lyrics ([#​519](https://redirect.github.com/sentriz/gonic/issues/519)) ([db97bc7](https://www.github.com/sentriz/gonic/commit/db97bc753e1070de12b3907b2b996511140a3259)) - **subsonic:** better support for internet radio and podcast episodes in jukebox ([3db183b](https://www.github.com/sentriz/gonic/commit/3db183bda4b9feda1adf7f4f67218d36eff61a49)), closes [#​572](https://redirect.github.com/sentriz/gonic/issues/572) - **subsonic:** replace html2text with bluemonday ([5916a7f](https://www.github.com/sentriz/gonic/commit/5916a7fe7bc7ac39ca1975665433da627d214769)), closes [#​591](https://redirect.github.com/sentriz/gonic/issues/591) ##### Bug Fixes - **subsonic:** restore disc/track ordering in getMusicDirectory ([8ac8779](https://www.github.com/sentriz/gonic/commit/8ac8779b92ec9c969bf6a26b26454a1c9e49748a)), closes [#​597](https://redirect.github.com/sentriz/gonic/issues/597) ##### Miscellaneous Chores - **deps:** bump to go1.25 ([1bf4a5b](https://www.github.com/sentriz/gonic/commit/1bf4a5b0c1e209770b060c8b4a08910afb72078f)), closes [#​594](https://redirect.github.com/sentriz/gonic/issues/594) </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://redirect.github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0MS44Mi4xMCIsInVwZGF0ZWRJblZlciI6IjQxLjgyLjEwIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvbWlub3IiXX0=-->
47 lines
1.1 KiB
YAML
47 lines
1.1 KiB
YAML
image:
|
|
repository: docker.io/sentriz/gonic
|
|
pullPolicy: IfNotPresent
|
|
tag: v0.18.0@sha256:fc7f3dee29c97be82f0558080637c61ef418437dd4ec760cb7a802a0efe38c20
|
|
|
|
securityContext:
|
|
container:
|
|
runAsNonRoot: false
|
|
runAsUser: 0
|
|
runAsGroup: 0
|
|
|
|
service:
|
|
main:
|
|
ports:
|
|
main:
|
|
port: 10023
|
|
|
|
workload:
|
|
main:
|
|
podSpec:
|
|
containers:
|
|
main:
|
|
env:
|
|
GONIC_LISTEN_ADDR: ":{{ .Values.service.main.ports.main.port }}"
|
|
GONIC_DB_PATH: "{{ .Values.persistence.data.mountPath }}/gonic.db"
|
|
GONIC_CACHE_PATH: "{{ .Values.persistence.cache.mountPath }}"
|
|
GONIC_PLAYLISTS_PATH: "{{ .Values.persistence.playlists.mountPath }}"
|
|
GONIC_PODCAST_PATH: "{{ .Values.persistence.podcast.mountPath }}"
|
|
GONIC_MUSIC_PATH: "{{ .Values.persistence.music.mountPath }}"
|
|
|
|
persistence:
|
|
data:
|
|
enabled: true
|
|
mountPath: /data
|
|
cache:
|
|
enabled: true
|
|
mountPath: /cache
|
|
playlists:
|
|
enabled: true
|
|
mountPath: /playlists
|
|
podcast:
|
|
enabled: true
|
|
mountPath: /podcast
|
|
music:
|
|
enabled: true
|
|
mountPath: /music
|