2026-06-15 16:01:52 -04:00
|
|
|
apiVersion: apps/v1
|
|
|
|
|
kind: Deployment
|
|
|
|
|
metadata:
|
2026-07-18 17:41:29 -04:00
|
|
|
name: droppedneedle
|
2026-07-21 11:21:26 -04:00
|
|
|
annotations:
|
|
|
|
|
keel.sh/policy: "all"
|
|
|
|
|
keel.sh/match-tag: "true"
|
|
|
|
|
keel.sh/schedule: "0 3 * * *"
|
2026-06-15 16:01:52 -04:00
|
|
|
spec:
|
|
|
|
|
replicas: 1
|
|
|
|
|
selector:
|
|
|
|
|
matchLabels:
|
2026-07-18 17:41:29 -04:00
|
|
|
app: droppedneedle
|
2026-06-15 16:01:52 -04:00
|
|
|
strategy:
|
|
|
|
|
type: Recreate
|
|
|
|
|
template:
|
|
|
|
|
metadata:
|
|
|
|
|
labels:
|
2026-07-18 17:41:29 -04:00
|
|
|
app: droppedneedle
|
2026-06-15 16:01:52 -04:00
|
|
|
spec:
|
|
|
|
|
containers:
|
2026-07-18 17:41:29 -04:00
|
|
|
- name: droppedneedle
|
|
|
|
|
image: ghcr.io/habirabbu/droppedneedle:latest
|
2026-06-15 16:01:52 -04:00
|
|
|
ports:
|
|
|
|
|
- containerPort: 8688
|
|
|
|
|
protocol: TCP
|
|
|
|
|
name: web-ui
|
|
|
|
|
env:
|
|
|
|
|
- name: PUID
|
|
|
|
|
value: "1000"
|
|
|
|
|
- name: PGID
|
|
|
|
|
value: "1000"
|
|
|
|
|
- name: PORT
|
|
|
|
|
value: "8688"
|
|
|
|
|
- name: TZ
|
|
|
|
|
value: "America/New_York"
|
|
|
|
|
- name: UVICORN_PROXY_HEADERS
|
|
|
|
|
value: "true"
|
|
|
|
|
- name: UVICORN_FORWARDED_ALLOW_IPS
|
|
|
|
|
value: "*"
|
2026-07-18 17:41:29 -04:00
|
|
|
- name: SLSKD_DOWNLOADS_PATH
|
|
|
|
|
value: "/yarr/downloads/slskd/complete"
|
2026-06-15 16:01:52 -04:00
|
|
|
volumeMounts:
|
|
|
|
|
- mountPath: /app/config
|
2026-07-18 17:41:29 -04:00
|
|
|
name: droppedneedle-config
|
2026-06-15 16:01:52 -04:00
|
|
|
- mountPath: /app/cache
|
2026-07-18 17:41:29 -04:00
|
|
|
name: droppedneedle-cache
|
|
|
|
|
- mountPath: /yarr
|
2026-06-15 16:01:52 -04:00
|
|
|
name: yarr
|
|
|
|
|
restartPolicy: Always
|
|
|
|
|
volumes:
|
2026-07-18 17:41:29 -04:00
|
|
|
- name: droppedneedle-config
|
2026-06-15 16:01:52 -04:00
|
|
|
persistentVolumeClaim:
|
2026-07-18 17:41:29 -04:00
|
|
|
claimName: musicseerr-config-pvc # Service changed name, cannot rename PVC
|
|
|
|
|
- name: droppedneedle-cache
|
2026-06-15 16:01:52 -04:00
|
|
|
persistentVolumeClaim:
|
|
|
|
|
claimName: musicseerr-cache-pvc
|
2026-07-18 17:41:29 -04:00
|
|
|
# Note: in order for atomic renames to work we need the music library
|
|
|
|
|
# and the downloads folders to be on the same mount
|
2026-06-15 16:01:52 -04:00
|
|
|
- name: yarr
|
|
|
|
|
nfs:
|
|
|
|
|
server: robin.home.nest
|
2026-07-18 17:41:29 -04:00
|
|
|
path: /yarr
|