Moved furumi to music
Update Kubernetes Services Wiki / Generate and Update K8s Wiki (push) Successful in 7s
Check with kubeconform / lint (push) Successful in 6s
Auto-update README / Generate README and Create MR (push) Successful in 7s

This commit is contained in:
2026-06-01 13:25:20 +03:00
parent 5e8649b6fd
commit cd5bf09395
15 changed files with 25 additions and 468 deletions
+46
View File
@@ -0,0 +1,46 @@
apiVersion: apps/v1
kind: Deployment
metadata:
name: furumi-player
labels:
app: furumi-player
spec:
replicas: 1
selector:
matchLabels:
app: furumi-player
template:
metadata:
labels:
app: furumi-player
spec:
nodeSelector:
kubernetes.io/hostname: music.tail2fe2d.ts.net
containers:
- name: furumi-player
image: ultradesu/furumusic:latest
imagePullPolicy: Always
env:
- name: FURU_DATABASE_URL
valueFrom:
secretKeyRef:
name: furumi-creds
key: PG_STRING
ports:
- containerPort: 8000
name: http
volumeMounts:
- name: library
mountPath: /media
- name: inbox
mountPath: /inbox
volumes:
- name: library
hostPath:
path: /data/furumi/library
type: DirectoryOrCreate
- name: inbox
hostPath:
path: /data/furumi/inbox
type: DirectoryOrCreate