This PR contains the following updates: | Package | Update | Change | |---|---|---| | [ghcr.io/slskd/slskd](https://slskd.org) ([source](https://redirect.github.com/slskd/slskd)) | patch | `4c17d5f` -> `57f87d8` | Add the preset `:preserveSemverRanges` to your config if you don't want to pin your dependencies. --- ### Release Notes <details> <summary>slskd/slskd (ghcr.io/slskd/slskd)</summary> ### [`v0.23.1`](https://redirect.github.com/slskd/slskd/releases/tag/0.23.1) [Compare Source](https://redirect.github.com/slskd/slskd/compare/0.23.0...0.23.1) #### What's Changed - Fix regression in scripts and webhooks causing json to be missing detail by [@​jpdillingham](https://redirect.github.com/jpdillingham) in [https://github.com/slskd/slskd/pull/1389](https://redirect.github.com/slskd/slskd/pull/1389) **Full Changelog**: https://github.com/slskd/slskd/compare/0.23.0...0.23.1 </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:eyJjcmVhdGVkSW5WZXIiOiI0MS4yMC4wIiwidXBkYXRlZEluVmVyIjoiNDEuMjAuMCIsInRhcmdldEJyYW5jaCI6Im1hc3RlciIsImxhYmVscyI6WyJhdXRvbWVyZ2UiLCJyZW5vdmF0ZS9jb250YWluZXIiLCJ0eXBlL3BhdGNoIl19-->
72 lines
2.1 KiB
YAML
72 lines
2.1 KiB
YAML
image:
|
|
repository: ghcr.io/slskd/slskd
|
|
pullPolicy: IfNotPresent
|
|
tag: 0.23.1@sha256:57f87d80b882b882f72cecc0b3aa0f0adb4c7887ed278906c237ff30003ae639
|
|
|
|
securityContext:
|
|
container:
|
|
readOnlyRootFilesystem: false
|
|
runAsGroup: 0
|
|
runAsUser: 0
|
|
|
|
service:
|
|
main:
|
|
ports:
|
|
main:
|
|
port: 5030
|
|
|
|
workload:
|
|
main:
|
|
podSpec:
|
|
containers:
|
|
main:
|
|
env:
|
|
# listens on any interface
|
|
SLSKD_SLSK_LISTEN_IP_ADDRESS: 0.0.0.0
|
|
# sets the port internally
|
|
SLSKD_SLSK_LISTEN_PORT: "{{ .Values.service.main.ports.main.port }}"
|
|
SLSKD_HTTP_PORT: "{{ .Values.service.main.ports.main.port }}"
|
|
APP_DIR: "{{.Values.persistence.data.mountPath }}"
|
|
SLSKD_SHARED_DIR: "{{.Values.persistence.share.mountPath }}"
|
|
SLSKD_DOWNLOADS_DIR: "{{ .Values.persistence.complete.mountPath }}"
|
|
SLSKD_INCOMPLETE_DIR: "{{ .Values.persistence.incomplete.mountPath }}"
|
|
SLSKD_USERNAME: "admin"
|
|
SLSKD_PASSWORD: "admin123"
|
|
SLSKD_JWT_KEY:
|
|
secretKeyRef:
|
|
name: slskd-secrets
|
|
key: SLSKD_JWT_KEY
|
|
# SLSKD_INSTANCE_NAME: default
|
|
# SLSKD_NO_AUTH:
|
|
# true | false
|
|
# SLSKD_REMOTE_FILE_MANAGEMENT: false
|
|
# memory | disk
|
|
# SLSKD_SHARE_CACHE_STORAGE_MODE: memory
|
|
# SLSKD_SHARE_CACHE_WORKERS: 4
|
|
# 1 week
|
|
# SLSKD_SHARE_CACHE_RETENTION: 10080
|
|
# true | false
|
|
# SLSKD_RELAY:
|
|
# controller | agent | debug
|
|
# SLSKD_RELAY_MODE:
|
|
# ROOMS
|
|
# SLSKD_SLSK_ADDRESS: vps.slsknet.org
|
|
# SLSKD_SLSK_PORT: 2271
|
|
|
|
# SLSKD_SLSK_CONNECTION_TIMEOUT: 10000
|
|
# SLSKD_SLSK_INACTIVITY_TIMEOUT: 15000
|
|
|
|
persistence:
|
|
data:
|
|
enabled: true
|
|
mountPath: "/app"
|
|
share:
|
|
enabled: true
|
|
mountPath: "/share"
|
|
incomplete:
|
|
enabled: true
|
|
mountPath: "/downloads/incomplete"
|
|
complete:
|
|
enabled: true
|
|
mountPath: "/downloads/complete"
|