archives added
This commit is contained in:
33
archives/matrix/matrix-depl.yaml
Normal file
33
archives/matrix/matrix-depl.yaml
Normal file
@ -0,0 +1,33 @@
|
||||
apiVersion: apps/v1
|
||||
kind: Deployment
|
||||
metadata:
|
||||
name: matrix-synapse
|
||||
spec:
|
||||
selector:
|
||||
matchLabels:
|
||||
run: matrix-synapse
|
||||
strategy:
|
||||
type: Recreate
|
||||
template:
|
||||
metadata:
|
||||
labels:
|
||||
run: matrix-synapse
|
||||
spec:
|
||||
containers:
|
||||
- image: matrixdotorg/synapse:v1.25.0
|
||||
name: synapse
|
||||
#args: ["generate"]
|
||||
#env:
|
||||
#- name: SYNAPSE_SERVER_NAME
|
||||
# value: "matrix.squi.fr"
|
||||
#- name: SYNAPSE_REPORT_STATS
|
||||
# value: "yes"
|
||||
volumeMounts:
|
||||
- name: data
|
||||
mountPath: /data
|
||||
ports:
|
||||
- containerPort: 8008
|
||||
volumes:
|
||||
- name: data
|
||||
persistentVolumeClaim:
|
||||
claimName: matrix-synapse
|
||||
Reference in New Issue
Block a user