This PR contains the following updates: | Package | Update | Change | |---|---|---| | [docker.io/sissbruecker/linkding](https://redirect.github.com/sissbruecker/linkding) | minor | `e498575` -> `49346eb` | --- > [!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>sissbruecker/linkding (docker.io/sissbruecker/linkding)</summary> ### [`v1.41.0`](https://redirect.github.com/sissbruecker/linkding/blob/HEAD/CHANGELOG.md#v1410-19062025) [Compare Source](https://redirect.github.com/sissbruecker/linkding/compare/v1.40.0...v1.41.0) ##### What's Changed - Add bundles for organizing bookmarks by [@​sissbruecker](https://redirect.github.com/sissbruecker) in [https://github.com/sissbruecker/linkding/pull/1097](https://redirect.github.com/sissbruecker/linkding/pull/1097) - Add REST API for bookmark bundles by [@​sissbruecker](https://redirect.github.com/sissbruecker) in [https://github.com/sissbruecker/linkding/pull/1100](https://redirect.github.com/sissbruecker/linkding/pull/1100) - Add date filters for REST API by [@​sissbruecker](https://redirect.github.com/sissbruecker) in [https://github.com/sissbruecker/linkding/pull/1080](https://redirect.github.com/sissbruecker/linkding/pull/1080) - Fix side panel not being hidden on smaller viewports by [@​sissbruecker](https://redirect.github.com/sissbruecker) in [https://github.com/sissbruecker/linkding/pull/1089](https://redirect.github.com/sissbruecker/linkding/pull/1089) - Fix assets not using correct icon by [@​sissbruecker](https://redirect.github.com/sissbruecker) in [https://github.com/sissbruecker/linkding/pull/1098](https://redirect.github.com/sissbruecker/linkding/pull/1098) - Add LinkBuddy to community section by [@​peterto](https://redirect.github.com/peterto) in [https://github.com/sissbruecker/linkding/pull/1088](https://redirect.github.com/sissbruecker/linkding/pull/1088) - Bump tar-fs in /docs by [@​dependabot](https://redirect.github.com/dependabot) in [https://github.com/sissbruecker/linkding/pull/1084](https://redirect.github.com/sissbruecker/linkding/pull/1084) - Bump django from 5.1.9 to 5.1.10 by [@​dependabot](https://redirect.github.com/dependabot) in [https://github.com/sissbruecker/linkding/pull/1086](https://redirect.github.com/sissbruecker/linkding/pull/1086) - Bump requests from 2.32.3 to 2.32.4 by [@​dependabot](https://redirect.github.com/dependabot) in [https://github.com/sissbruecker/linkding/pull/1090](https://redirect.github.com/sissbruecker/linkding/pull/1090) - Bump urllib3 from 2.2.3 to 2.5.0 by [@​dependabot](https://redirect.github.com/dependabot) in [https://github.com/sissbruecker/linkding/pull/1096](https://redirect.github.com/sissbruecker/linkding/pull/1096) ##### New Contributors - [@​peterto](https://redirect.github.com/peterto) made their first contribution in [https://github.com/sissbruecker/linkding/pull/1088](https://redirect.github.com/sissbruecker/linkding/pull/1088) **Full Changelog**: https://github.com/sissbruecker/linkding/compare/v1.40.0...v1.41.0 *** </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:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMzguMCIsInVwZGF0ZWRJblZlciI6IjM5LjIzOC4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvbWlub3IiXX0=-->
55 lines
1.6 KiB
YAML
55 lines
1.6 KiB
YAML
image:
|
|
repository: docker.io/sissbruecker/linkding
|
|
tag: 1.41.0@sha256:49346ebe531db7034a4347b83bef82838af76b39695f096c50a3dc3064d5ac1f
|
|
pullPolicy: IfNotPresent
|
|
service:
|
|
main:
|
|
ports:
|
|
main:
|
|
port: 10210
|
|
persistence:
|
|
data:
|
|
enabled: true
|
|
mountPath: "/etc/linkding/data"
|
|
lifecycle:
|
|
postStart:
|
|
exec:
|
|
command:
|
|
- "/bin/bash"
|
|
- "-c"
|
|
- |
|
|
if [ -f /etc/linkding/data/.superuser_exists ]; then
|
|
echo "Superuser has been created before. Skipping...";
|
|
else
|
|
echo "Creating superuser...";
|
|
export status=99;
|
|
until [ $status -eq 0 ];
|
|
do
|
|
python manage.py createsuperuser --username=${DJANGO_SUPERUSER_USERNAME} --email=${DJANGO_SUPERUSER_EMAIL} --noinput;
|
|
status=$?;
|
|
sleep 3;
|
|
done;
|
|
echo "This file is to ensure that init script won't try to create a superuser again and fail because it already exsits" > /etc/linkding/data/.superuser_exists;
|
|
echo "Superuser Created!";
|
|
fi;
|
|
|
|
securityContext:
|
|
container:
|
|
readOnlyRootFilesystem: false
|
|
runAsNonRoot: false
|
|
runAsUser: 0
|
|
runAsGroup: 0
|
|
workload:
|
|
main:
|
|
podSpec:
|
|
containers:
|
|
main:
|
|
env:
|
|
LD_SERVER_PORT: "{{ .Values.service.main.ports.main.port }}"
|
|
# User Defined
|
|
LD_REQUEST_TIMEOUT: 60
|
|
LD_DISABLE_BACKGROUND_TASKS: false
|
|
LD_DISABLE_URL_VALIDATION: false
|
|
LD_SUPERUSER_NAME: "superuser"
|
|
LD_SUPERUSER_PASSWORD: "somesecret"
|