Standardize config.

This commit is contained in:
2026-05-23 19:51:33 +00:00
parent e2e3f730a5
commit 6b5325c6f3
87 changed files with 426 additions and 531 deletions

View File

@@ -18,7 +18,7 @@ spec:
spec:
initContainers:
- name: generate-signing-key
image: "{{ .image }}"
image: "matrixdotorg/synapse:v1.144.0"
command: ["/bin/sh", "-c"]
args:
- |
@@ -80,7 +80,7 @@ spec:
readOnlyRootFilesystem: false
containers:
- name: synapse
image: "{{ .image }}"
image: "matrixdotorg/synapse:v1.144.0"
command: ["/bin/sh", "-c"]
args:
- |
@@ -127,17 +127,17 @@ spec:
# Start Synapse with the processed config
exec /start.py
ports:
- containerPort: {{ .port }}
- containerPort: 8008
protocol: TCP
name: http
- containerPort: {{ .federationPort }}
- containerPort: 8448
protocol: TCP
name: federation
env:
- name: SYNAPSE_CONFIG_PATH
value: /data/homeserver.yaml
- name: TZ
value: "{{ .timezone }}"
value: "UTC"
- name: DB_PASSWORD
valueFrom:
secretKeyRef:
@@ -179,14 +179,14 @@ spec:
livenessProbe:
httpGet:
path: /health
port: {{ .port }}
port: 8008
initialDelaySeconds: 60
periodSeconds: 30
timeoutSeconds: 5
readinessProbe:
httpGet:
path: /health
port: {{ .port }}
port: 8008
initialDelaySeconds: 30
periodSeconds: 10
timeoutSeconds: 5