This commit is contained in:
Waylon Walker 2025-11-22 22:20:32 -06:00
parent 8c0277c8f3
commit 9e2c30af22
60 changed files with 8853 additions and 232 deletions

45
matrix/pvc-inspector.yaml Normal file
View file

@ -0,0 +1,45 @@
apiVersion: v1
kind: Namespace
metadata:
name: matrix
---
apiVersion: v1
kind: Pod
metadata:
name: pvc-inspector
namespace: matrix
spec:
containers:
- image: docker.io/matrixdotorg/synapse:latest
name: pvc-inspector
command: ["sleep", "infinity"]
volumeMounts:
- mountPath: /data
name: synapse-data
- image: docker.io/matrixdotorg/synapse:latest
name: pvc-inspector-synapse
command: ["sleep", "infinity"]
volumeMounts:
- mountPath: /data
name: synapse-data
volumes:
- name: synapse-data
persistentVolumeClaim:
claimName: synapse-data
---
apiVersion: v1
kind: PersistentVolumeClaim
metadata:
creationTimestamp: null
labels:
io.kompose.service: synapse-data
name: synapse-data
namespace: matrix
spec:
accessModes:
- ReadWriteOnce
resources:
requests:
storage: 100Mi
status: {}