Files
homelab/apps/hydra/linkding/deployment.yaml
T

51 lines
1.1 KiB
YAML
Raw Normal View History

2026-04-17 20:49:37 -04:00
apiVersion: apps/v1
kind: Deployment
metadata:
labels:
app: linking
name: linking
namespace: linkding
spec:
selector:
matchLabels:
app: linking
strategy: {}
template:
metadata:
labels:
app: linking
spec:
containers:
2026-04-18 19:02:37 -04:00
- env:
- name: LD_CSRF_TRUSTED_ORIGINS
value: https://link.danicos.me
2026-04-20 19:58:02 -04:00
- name: LD_SUPERUSER_NAME
valueFrom:
secretKeyRef:
key: supe_user_name
name: linkding
- name: LD_SUPERUSER_PASSWORD
valueFrom:
secretKeyRef:
key: supe_user_password
name: linkding
2026-04-18 19:02:37 -04:00
image: sissbruecker/linkding:1.45.0
2026-04-17 20:49:37 -04:00
name: linkding
ports:
- containerPort: 9090
resources: {}
2026-04-18 10:57:01 -04:00
securityContext:
allowPrivilegeEscalation: false
2026-04-18 10:18:07 -04:00
volumeMounts:
- mountPath: /etc/linkding/data
name: data
2026-04-18 10:57:01 -04:00
securityContext:
fsGroup: 33
runAsGroup: 33
runAsUser: 33
2026-04-18 10:18:07 -04:00
volumes:
- name: data
persistentVolumeClaim:
claimName: linking-pvc
2026-04-17 20:49:37 -04:00
status: {}