2022-04-01 21:33:54 +00:00
image :
2023-11-17 10:22:57 +00:00
repository : sissbruecker/linkding
2024-08-30 18:19:13 +00:00
tag : 1.31 .1 @sha256:b1c13af25892d4926018951210da19dd5cce1a673b61e6e8efdb6d4f421475a1
2022-04-01 21:33:54 +00:00
pullPolicy : IfNotPresent
service :
main :
ports :
main :
port : 10210
persistence :
data :
enabled : true
mountPath : "/etc/linkding/data"
2022-04-03 18:23:55 +00:00
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;
2022-08-08 21:25:02 +00:00
portal :
2023-04-11 10:07:17 +00:00
open :
enabled : true
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
2023-08-12 08:22:26 +00:00
LD_SUPERUSER_NAME : "superuser"
LD_SUPERUSER_PASSWORD : "somesecret"