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

38 lines
751 B
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-17 20:53:31 -04:00
- image: sissbruecker/linkding:1.31.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: {}