36 lines
796 B
YAML
36 lines
796 B
YAML
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
|