Signed-off-by: Marcus Noble <github@marcusnoble.co.uk>
This commit is contained in:
Marcus Noble 2023-04-13 18:25:39 +01:00
parent 5e234c8d32
commit 4ab1267d95
Signed by: AverageMarcus
GPG Key ID: B8F2DB8A7AEBAF78
2 changed files with 57 additions and 1 deletions

View File

@ -457,6 +457,19 @@ spec:
- name: signing-key
mountPath: /data/keys
containers:
- name: copy-media
image: "bash"
imagePullPolicy: IfNotPresent
command:
- bash
- -c
- |
sleep 9999
volumeMounts:
- name: media-store
mountPath: /data/old
- name: user-media
mountPath: /data/new
- name: "synapse"
image: "matrixdotorg/synapse:v1.71.0"
imagePullPolicy: IfNotPresent
@ -485,7 +498,7 @@ spec:
subPath: matrix.cluster.fun.log.config
- name: signing-key
mountPath: /data/keys
- name: user-media
- name: media-store
mountPath: /data/media_store
- name: uploads
mountPath: /data/uploads
@ -535,6 +548,9 @@ spec:
- name: signing-key
persistentVolumeClaim:
claimName: chat-matrix-signing-key
- name: media-store
persistentVolumeClaim:
claimName: chat-matrix-media-store
- name: user-media
persistentVolumeClaim:
claimName: chat-matrix-user-media

View File

@ -1,5 +1,45 @@
apiVersion: v1
kind: PersistentVolume
metadata:
annotations:
pv.kubernetes.io/provisioned-by: csi.scaleway.com
finalizers:
- kubernetes.io/pv-protection
- external-attacher/csi-scaleway-com
name: pvc-fb3ef708-13ad-4f9b-b6b7-5e6cbb9c1bdf
spec:
accessModes:
- ReadWriteOnce
capacity:
storage: 8Gi
csi:
driver: csi.scaleway.com
fsType: ext4
volumeAttributes:
storage.kubernetes.io/csiProvisionerIdentity: 1588413765965-1847-csi.scaleway.com
volumeHandle: fr-par-1/eb8e5669-56ea-49e3-a631-efbeaca4c4ef
persistentVolumeReclaimPolicy: Retain
storageClassName: scw-bssd
volumeMode: Filesystem
---
apiVersion: v1
kind: PersistentVolumeClaim
metadata:
name: chat-matrix-media-store
namespace: chat
labels:
app.kubernetes.io/name: "matrix"
component: synapse
spec:
accessModes:
- ReadWriteOnce
resources:
requests:
storage: 8Gi
volumeName: pvc-fb3ef708-13ad-4f9b-b6b7-5e6cbb9c1bdf
---
apiVersion: v1
kind: PersistentVolume
metadata:
annotations:
pv.kubernetes.io/provisioned-by: csi.scaleway.com