feat: add matrix bot deployment
This commit is contained in:
parent
3bbc253dc7
commit
1bfe72ce00
2 changed files with 55 additions and 0 deletions
50
manifests/matrix-bot.yml
Normal file
50
manifests/matrix-bot.yml
Normal file
|
@ -0,0 +1,50 @@
|
|||
---
|
||||
apiVersion: v1
|
||||
kind: Namespace
|
||||
metadata:
|
||||
name: matrix-bot
|
||||
---
|
||||
apiVersion: v1
|
||||
kind: PersistentVolumeClaim
|
||||
metadata:
|
||||
name: matrix-bot-pvc
|
||||
namespace: matrix-bot
|
||||
spec:
|
||||
accessModes:
|
||||
- ReadWriteOnce
|
||||
resources:
|
||||
requests:
|
||||
storage: 128Mi
|
||||
---
|
||||
apiVersion: apps/v1
|
||||
kind: Deployment
|
||||
metadata:
|
||||
name: matrix-chatgpt-bot
|
||||
namespace: matrix-bot
|
||||
labels:
|
||||
app: matrix-chatgpt-bot
|
||||
annotations:
|
||||
configmap.reloader.stakater.com/reload: matrix-bot-cfg
|
||||
spec:
|
||||
selector:
|
||||
matchLabels:
|
||||
app: matrix-chatgpt-bot
|
||||
template:
|
||||
metadata:
|
||||
labels:
|
||||
app: matrix-chatgpt-bot
|
||||
spec:
|
||||
containers:
|
||||
- name: matrix-chatgpt-bot
|
||||
image: ghcr.io/matrixgpt/matrix-chatgpt-bot:latest
|
||||
envFrom:
|
||||
- configMapRef:
|
||||
name: matrix-bot-cfg
|
||||
volumeMounts:
|
||||
- name: matrix-bot-storage
|
||||
mountPath: /storage
|
||||
volumes:
|
||||
- name: matrix-bot-storage
|
||||
persistentVolumeClaim:
|
||||
claimName: matrix-bot-pvc
|
||||
terminationGracePeriodSeconds: 3
|
Loading…
Add table
Add a link
Reference in a new issue