Increase matrix user media PV (in-progres)
Signed-off-by: Marcus Noble <github@marcusnoble.co.uk>
This commit is contained in:
parent
2e13637388
commit
2d5902ac7f
@ -457,6 +457,21 @@ spec:
|
|||||||
- name: signing-key
|
- name: signing-key
|
||||||
mountPath: /data/keys
|
mountPath: /data/keys
|
||||||
containers:
|
containers:
|
||||||
|
- name: copy-media
|
||||||
|
image: "bash"
|
||||||
|
imagePullPolicy: IfNotPresent
|
||||||
|
command:
|
||||||
|
- bash
|
||||||
|
- -c
|
||||||
|
- |
|
||||||
|
cp -R /data/old /data/new
|
||||||
|
echo "Done"
|
||||||
|
sleep 9999
|
||||||
|
volumeMounts:
|
||||||
|
- name: media-store
|
||||||
|
mountPath: /data/old
|
||||||
|
- name: user-media
|
||||||
|
mountPath: /data/new
|
||||||
- name: "synapse"
|
- name: "synapse"
|
||||||
image: "matrixdotorg/synapse:v1.71.0"
|
image: "matrixdotorg/synapse:v1.71.0"
|
||||||
imagePullPolicy: IfNotPresent
|
imagePullPolicy: IfNotPresent
|
||||||
@ -474,12 +489,12 @@ spec:
|
|||||||
- name: mautrix-whatsapp-registration
|
- name: mautrix-whatsapp-registration
|
||||||
mountPath: /data/mautrix-whatsapp-registration.yaml
|
mountPath: /data/mautrix-whatsapp-registration.yaml
|
||||||
subPath: registration.yaml
|
subPath: registration.yaml
|
||||||
- name: mautrix-signal-registration
|
# - name: mautrix-signal-registration
|
||||||
mountPath: /data/mautrix-signal-registration.yaml
|
# mountPath: /data/mautrix-signal-registration.yaml
|
||||||
subPath: registration.yaml
|
# subPath: registration.yaml
|
||||||
- name: mautrix-telegram-registration
|
# - name: mautrix-telegram-registration
|
||||||
mountPath: /data/mautrix-telegram-registration.yaml
|
# mountPath: /data/mautrix-telegram-registration.yaml
|
||||||
subPath: registration.yaml
|
# subPath: registration.yaml
|
||||||
- name: synapse-config-logging
|
- name: synapse-config-logging
|
||||||
mountPath: /data/matrix.cluster.fun.log.config
|
mountPath: /data/matrix.cluster.fun.log.config
|
||||||
subPath: matrix.cluster.fun.log.config
|
subPath: matrix.cluster.fun.log.config
|
||||||
@ -526,18 +541,21 @@ spec:
|
|||||||
- name: mautrix-whatsapp-registration
|
- name: mautrix-whatsapp-registration
|
||||||
secret:
|
secret:
|
||||||
secretName: mautrix-whatsapp-registration
|
secretName: mautrix-whatsapp-registration
|
||||||
- name: mautrix-signal-registration
|
# - name: mautrix-signal-registration
|
||||||
secret:
|
# secret:
|
||||||
secretName: mautrix-signal-registration
|
# secretName: mautrix-signal-registration
|
||||||
- name: mautrix-telegram-registration
|
# - name: mautrix-telegram-registration
|
||||||
secret:
|
# secret:
|
||||||
secretName: mautrix-telegram-registration
|
# secretName: mautrix-telegram-registration
|
||||||
- name: signing-key
|
- name: signing-key
|
||||||
persistentVolumeClaim:
|
persistentVolumeClaim:
|
||||||
claimName: chat-matrix-signing-key
|
claimName: chat-matrix-signing-key
|
||||||
- name: media-store
|
- name: media-store
|
||||||
persistentVolumeClaim:
|
persistentVolumeClaim:
|
||||||
claimName: chat-matrix-media-store
|
claimName: chat-matrix-media-store
|
||||||
|
- name: user-media
|
||||||
|
persistentVolumeClaim:
|
||||||
|
claimName: chat-matrix-user-media
|
||||||
- name: uploads
|
- name: uploads
|
||||||
emptyDir: {}
|
emptyDir: {}
|
||||||
- name: tmp
|
- name: tmp
|
||||||
|
@ -40,6 +40,46 @@ spec:
|
|||||||
---
|
---
|
||||||
apiVersion: v1
|
apiVersion: v1
|
||||||
kind: PersistentVolume
|
kind: PersistentVolume
|
||||||
|
metadata:
|
||||||
|
annotations:
|
||||||
|
pv.kubernetes.io/provisioned-by: csi.scaleway.com
|
||||||
|
finalizers:
|
||||||
|
- kubernetes.io/pv-protection
|
||||||
|
- external-attacher/csi-scaleway-com
|
||||||
|
name: pvc-470f5860-49e0-414c-bb36-329970afc44b
|
||||||
|
spec:
|
||||||
|
accessModes:
|
||||||
|
- ReadWriteOnce
|
||||||
|
capacity:
|
||||||
|
storage: 12Gi
|
||||||
|
csi:
|
||||||
|
driver: csi.scaleway.com
|
||||||
|
fsType: ext4
|
||||||
|
volumeAttributes:
|
||||||
|
storage.kubernetes.io/csiProvisionerIdentity: 1676472026170-8081-csi.scaleway.com
|
||||||
|
volumeHandle: fr-par-1/5e73e304-11e8-42cb-90fe-361889089d2d
|
||||||
|
persistentVolumeReclaimPolicy: Retain
|
||||||
|
storageClassName: scw-bssd
|
||||||
|
volumeMode: Filesystem
|
||||||
|
---
|
||||||
|
apiVersion: v1
|
||||||
|
kind: PersistentVolumeClaim
|
||||||
|
metadata:
|
||||||
|
name: chat-matrix-user-media
|
||||||
|
namespace: chat
|
||||||
|
labels:
|
||||||
|
app.kubernetes.io/name: "matrix"
|
||||||
|
component: synapse
|
||||||
|
spec:
|
||||||
|
accessModes:
|
||||||
|
- ReadWriteOnce
|
||||||
|
resources:
|
||||||
|
requests:
|
||||||
|
storage: 12Gi
|
||||||
|
volumeName: pvc-470f5860-49e0-414c-bb36-329970afc44b
|
||||||
|
---
|
||||||
|
apiVersion: v1
|
||||||
|
kind: PersistentVolume
|
||||||
metadata:
|
metadata:
|
||||||
annotations:
|
annotations:
|
||||||
pv.kubernetes.io/provisioned-by: csi.scaleway.com
|
pv.kubernetes.io/provisioned-by: csi.scaleway.com
|
||||||
|
Loading…
Reference in New Issue
Block a user