2023-12-03 18:59:33 +00:00
|
|
|
---
|
|
|
|
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
|
2024-08-11 18:48:41 +00:00
|
|
|
image: ghcr.io/matrixgpt/matrix-chatgpt-bot:3
|
2023-12-03 18:59:33 +00:00
|
|
|
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
|