feat: add userbot k8s deployment method
Deploy to Server / deploy (push) Has been cancelled

- Kustomize: base + overlays/dev + overlays/prod
This commit is contained in:
2026-06-07 19:41:28 +02:00
parent 43c38767a1
commit 0c5cf29f83
10 changed files with 236 additions and 0 deletions
@@ -0,0 +1,35 @@
apiVersion: apps/v1
kind: Deployment
metadata:
name: forust-userbot-deployment
spec:
template:
spec:
containers:
- name: forust-userbot
volumeMounts:
- name: downloads
mountPath: /app/downloads
volumes:
- name: downloads
hostPath:
path: /srv/homelab/userbot/Downloads
type: DirectoryOrCreate
---
apiVersion: apps/v1
kind: Deployment
metadata:
name: anna-userbot-deployment
spec:
template:
spec:
containers:
- name: anna-userbot
volumeMounts:
- name: downloads
mountPath: /app/downloads
volumes:
- name: downloads
hostPath:
path: /srv/homelab/userbot/Downloads
type: DirectoryOrCreate