feat: add matrix synapse
This commit is contained in:
@@ -12,3 +12,10 @@ Selector labels
|
|||||||
app.kubernetes.io/instance: {{ .Release.Name }}
|
app.kubernetes.io/instance: {{ .Release.Name }}
|
||||||
app.kubernetes.io/part-of: {{ .Release.Name }}
|
app.kubernetes.io/part-of: {{ .Release.Name }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
|
|
||||||
|
{{/*
|
||||||
|
NFS names
|
||||||
|
*/}}
|
||||||
|
{{- define "custom.serviceAccountName" -}}
|
||||||
|
matrix-synapse
|
||||||
|
{{- end -}}
|
||||||
|
|||||||
@@ -1,159 +1,40 @@
|
|||||||
apiVersion: external-secrets.io/v1
|
apiVersion: external-secrets.io/v1
|
||||||
kind: ExternalSecret
|
kind: ExternalSecret
|
||||||
metadata:
|
metadata:
|
||||||
name: matrix-synapse-config-secret
|
name: matrix-synapse-signing-key
|
||||||
namespace: {{ .Release.Namespace }}
|
namespace: {{ .Release.Namespace }}
|
||||||
labels:
|
labels:
|
||||||
app.kubernetes.io/name: matrix-synapse-config-secret
|
app.kubernetes.io/name: matrix-synapse-signing-key
|
||||||
{{- include "custom.labels" . | nindent 4 }}
|
{{- include "custom.labels" . | nindent 4 }}
|
||||||
spec:
|
spec:
|
||||||
secretStoreRef:
|
secretStoreRef:
|
||||||
kind: ClusterSecretStore
|
kind: ClusterSecretStore
|
||||||
name: vault
|
name: openbao
|
||||||
data:
|
|
||||||
- secretKey: oidc.yaml
|
|
||||||
remoteRef:
|
|
||||||
key: /cl01tl/matrix-synapse/config
|
|
||||||
property: oidc.yaml
|
|
||||||
- secretKey: config.yaml
|
|
||||||
remoteRef:
|
|
||||||
key: /cl01tl/matrix-synapse/config
|
|
||||||
property: config.yaml
|
|
||||||
|
|
||||||
---
|
|
||||||
apiVersion: external-secrets.io/v1
|
|
||||||
kind: ExternalSecret
|
|
||||||
metadata:
|
|
||||||
name: matrix-synapse-signingkey
|
|
||||||
namespace: {{ .Release.Namespace }}
|
|
||||||
labels:
|
|
||||||
app.kubernetes.io/name: matrix-synapse-signingkey
|
|
||||||
{{- include "custom.labels" . | nindent 4 }}
|
|
||||||
spec:
|
|
||||||
secretStoreRef:
|
|
||||||
kind: ClusterSecretStore
|
|
||||||
name: vault
|
|
||||||
data:
|
data:
|
||||||
- secretKey: signing.key
|
- secretKey: signing.key
|
||||||
remoteRef:
|
remoteRef:
|
||||||
key: /cl01tl/matrix-synapse/config
|
key: /cl01tl/matrix-synapse/key
|
||||||
property: signing-key
|
property: signing-key
|
||||||
|
|
||||||
---
|
---
|
||||||
apiVersion: external-secrets.io/v1
|
apiVersion: external-secrets.io/v1
|
||||||
kind: ExternalSecret
|
kind: ExternalSecret
|
||||||
metadata:
|
metadata:
|
||||||
name: matrix-hookshot-config-secret
|
name: matrix-synapse-valkey-config
|
||||||
namespace: {{ .Release.Namespace }}
|
namespace: {{ .Release.Namespace }}
|
||||||
labels:
|
labels:
|
||||||
app.kubernetes.io/name: matrix-hookshot-config-secret
|
app.kubernetes.io/name: matrix-synapse-valkey-config
|
||||||
{{- include "custom.labels" . | nindent 4 }}
|
{{- include "custom.labels" . | nindent 4 }}
|
||||||
spec:
|
spec:
|
||||||
secretStoreRef:
|
secretStoreRef:
|
||||||
kind: ClusterSecretStore
|
kind: ClusterSecretStore
|
||||||
name: vault
|
name: openbao
|
||||||
data:
|
|
||||||
- secretKey: config.yml
|
|
||||||
remoteRef:
|
|
||||||
key: /cl01tl/matrix-synapse/hookshot
|
|
||||||
property: config
|
|
||||||
- secretKey: registration.yml
|
|
||||||
remoteRef:
|
|
||||||
key: /cl01tl/matrix-synapse/hookshot
|
|
||||||
property: registration
|
|
||||||
- secretKey: hookshot-registration.yaml
|
|
||||||
remoteRef:
|
|
||||||
key: /cl01tl/matrix-synapse/hookshot
|
|
||||||
property: registration
|
|
||||||
- secretKey: passkey.pem
|
|
||||||
remoteRef:
|
|
||||||
key: /cl01tl/matrix-synapse/hookshot
|
|
||||||
property: passkey
|
|
||||||
|
|
||||||
---
|
|
||||||
apiVersion: external-secrets.io/v1
|
|
||||||
kind: ExternalSecret
|
|
||||||
metadata:
|
|
||||||
name: mautrix-discord-config-secret
|
|
||||||
namespace: {{ .Release.Namespace }}
|
|
||||||
labels:
|
|
||||||
app.kubernetes.io/name: {{ .Release.Name }}
|
|
||||||
app.kubernetes.io/instance: {{ .Release.Name }}
|
|
||||||
spec:
|
|
||||||
secretStoreRef:
|
|
||||||
kind: ClusterSecretStore
|
|
||||||
name: vault
|
|
||||||
data:
|
|
||||||
- secretKey: config.yaml
|
|
||||||
remoteRef:
|
|
||||||
key: /cl01tl/matrix-synapse/mautrix-discord
|
|
||||||
property: config
|
|
||||||
- secretKey: mautrix-discord-registration.yaml
|
|
||||||
remoteRef:
|
|
||||||
key: /cl01tl/matrix-synapse/mautrix-discord
|
|
||||||
property: registration
|
|
||||||
|
|
||||||
---
|
|
||||||
apiVersion: external-secrets.io/v1
|
|
||||||
kind: ExternalSecret
|
|
||||||
metadata:
|
|
||||||
name: mautrix-whatsapp-config-secret
|
|
||||||
namespace: {{ .Release.Namespace }}
|
|
||||||
labels:
|
|
||||||
app.kubernetes.io/name: mautrix-whatsapp-config-secret
|
|
||||||
{{- include "custom.labels" . | nindent 4 }}
|
|
||||||
spec:
|
|
||||||
secretStoreRef:
|
|
||||||
kind: ClusterSecretStore
|
|
||||||
name: vault
|
|
||||||
data:
|
|
||||||
- secretKey: config.yaml
|
|
||||||
remoteRef:
|
|
||||||
key: /cl01tl/matrix-synapse/mautrix-whatsapp
|
|
||||||
property: config
|
|
||||||
- secretKey: mautrix-whatsapp-registration.yaml
|
|
||||||
remoteRef:
|
|
||||||
key: /cl01tl/matrix-synapse/mautrix-whatsapp
|
|
||||||
property: registration
|
|
||||||
|
|
||||||
---
|
|
||||||
apiVersion: external-secrets.io/v1
|
|
||||||
kind: ExternalSecret
|
|
||||||
metadata:
|
|
||||||
name: double-puppet-registration-secret
|
|
||||||
namespace: {{ .Release.Namespace }}
|
|
||||||
labels:
|
|
||||||
app.kubernetes.io/name: double-puppet-registration-secret
|
|
||||||
{{- include "custom.labels" . | nindent 4 }}
|
|
||||||
spec:
|
|
||||||
secretStoreRef:
|
|
||||||
kind: ClusterSecretStore
|
|
||||||
name: vault
|
|
||||||
data:
|
|
||||||
- secretKey: double-puppet-registration.yaml
|
|
||||||
remoteRef:
|
|
||||||
key: /cl01tl/matrix-synapse/double-puppet
|
|
||||||
property: registration
|
|
||||||
|
|
||||||
---
|
|
||||||
apiVersion: external-secrets.io/v1
|
|
||||||
kind: ExternalSecret
|
|
||||||
metadata:
|
|
||||||
name: matrix-synapse-valkey-secret
|
|
||||||
namespace: {{ .Release.Namespace }}
|
|
||||||
labels:
|
|
||||||
app.kubernetes.io/name: matrix-synapse-valkey-secret
|
|
||||||
{{- include "custom.labels" . | nindent 4 }}
|
|
||||||
spec:
|
|
||||||
secretStoreRef:
|
|
||||||
kind: ClusterSecretStore
|
|
||||||
name: vault
|
|
||||||
data:
|
data:
|
||||||
- secretKey: default
|
- secretKey: default
|
||||||
remoteRef:
|
remoteRef:
|
||||||
key: /cl01tl/matrix-synapse/redis
|
key: /cl01tl/matrix-synapse/valkey
|
||||||
property: password
|
property: password
|
||||||
- secretKey: password
|
- secretKey: password
|
||||||
remoteRef:
|
remoteRef:
|
||||||
key: /cl01tl/matrix-synapse/redis
|
key: /cl01tl/matrix-synapse/valkey
|
||||||
property: password
|
property: password
|
||||||
|
|||||||
@@ -0,0 +1,114 @@
|
|||||||
|
apiVersion: secrets-store.csi.x-k8s.io/v1
|
||||||
|
kind: SecretProviderClass
|
||||||
|
metadata:
|
||||||
|
name: matrix-synapse-config
|
||||||
|
namespace: {{ .Release.Namespace }}
|
||||||
|
labels:
|
||||||
|
app.kubernetes.io/name: matrix-synapse-config
|
||||||
|
{{- include "custom.labels" . | nindent 4 }}
|
||||||
|
spec:
|
||||||
|
provider: openbao
|
||||||
|
parameters:
|
||||||
|
baoAddress: "http://openbao-internal.openbao:8200"
|
||||||
|
roleName: matrix-synapse
|
||||||
|
objects: |
|
||||||
|
- objectName: config.yaml
|
||||||
|
fileName: config.yaml
|
||||||
|
secretPath: secret/data/cl01tl/matrix-synapse/config
|
||||||
|
secretKey: config.yaml
|
||||||
|
- objectName: oidc.yaml
|
||||||
|
fileName: oidc.yaml
|
||||||
|
secretPath: secret/data/cl01tl/matrix-synapse/config
|
||||||
|
secretKey: oidc.yaml
|
||||||
|
- objectName: hookshot-registration.yaml
|
||||||
|
fileName: hookshot-registration.yaml
|
||||||
|
secretPath: secret/data/cl01tl/matrix-synapse/hookshot
|
||||||
|
secretKey: hookshot-registration.yaml
|
||||||
|
- objectName: mautrix-discord-registration.yaml
|
||||||
|
fileName: mautrix-discord-registration.yaml
|
||||||
|
secretPath: secret/data/cl01tl/matrix-synapse/mautrix-discord
|
||||||
|
secretKey: mautrix-discord-registration.yaml
|
||||||
|
- objectName: mautrix-whatsapp-registration.yaml
|
||||||
|
fileName: mautrix-whatsapp-registration.yaml
|
||||||
|
secretPath: secret/data/cl01tl/matrix-synapse/mautrix-whatsapp
|
||||||
|
secretKey: mautrix-whatsapp-registration.yaml
|
||||||
|
- objectName: double-puppet-registration.yaml
|
||||||
|
fileName: double-puppet-registration.yaml
|
||||||
|
secretPath: secret/data/cl01tl/matrix-synapse/double-puppet
|
||||||
|
secretKey: double-puppet-registration.yaml
|
||||||
|
|
||||||
|
---
|
||||||
|
apiVersion: secrets-store.csi.x-k8s.io/v1
|
||||||
|
kind: SecretProviderClass
|
||||||
|
metadata:
|
||||||
|
name: matrix-hookshot-config
|
||||||
|
namespace: {{ .Release.Namespace }}
|
||||||
|
labels:
|
||||||
|
app.kubernetes.io/name: matrix-hookshot-config
|
||||||
|
{{- include "custom.labels" . | nindent 4 }}
|
||||||
|
spec:
|
||||||
|
provider: openbao
|
||||||
|
parameters:
|
||||||
|
baoAddress: "http://openbao-internal.openbao:8200"
|
||||||
|
roleName: matrix-synapse
|
||||||
|
objects: |
|
||||||
|
- objectName: config.yml
|
||||||
|
fileName: config.yml
|
||||||
|
secretPath: secret/data/cl01tl/matrix-synapse/hookshot
|
||||||
|
secretKey: config.yml
|
||||||
|
- objectName: registration.yml
|
||||||
|
fileName: registration.yml
|
||||||
|
secretPath: secret/data/cl01tl/matrix-synapse/hookshot
|
||||||
|
secretKey: hookshot-registration.yaml
|
||||||
|
- objectName: passkey.pem
|
||||||
|
fileName: passkey.pem
|
||||||
|
secretPath: secret/data/cl01tl/matrix-synapse/hookshot
|
||||||
|
secretKey: passkey.pem
|
||||||
|
|
||||||
|
---
|
||||||
|
apiVersion: secrets-store.csi.x-k8s.io/v1
|
||||||
|
kind: SecretProviderClass
|
||||||
|
metadata:
|
||||||
|
name: mautrix-discord-config
|
||||||
|
namespace: {{ .Release.Namespace }}
|
||||||
|
labels:
|
||||||
|
app.kubernetes.io/name: mautrix-discord-config
|
||||||
|
{{- include "custom.labels" . | nindent 4 }}
|
||||||
|
spec:
|
||||||
|
provider: openbao
|
||||||
|
parameters:
|
||||||
|
baoAddress: "http://openbao-internal.openbao:8200"
|
||||||
|
roleName: matrix-synapse
|
||||||
|
objects: |
|
||||||
|
- objectName: config.yaml
|
||||||
|
fileName: config.yaml
|
||||||
|
secretPath: secret/data/cl01tl/matrix-synapse/mautrix-discord
|
||||||
|
secretKey: config.yaml
|
||||||
|
- objectName: mautrix-discord-registration.yaml
|
||||||
|
fileName: mautrix-discord-registration.yaml
|
||||||
|
secretPath: secret/data/cl01tl/matrix-synapse/mautrix-discord
|
||||||
|
secretKey: mautrix-discord-registration.yaml
|
||||||
|
|
||||||
|
---
|
||||||
|
apiVersion: secrets-store.csi.x-k8s.io/v1
|
||||||
|
kind: SecretProviderClass
|
||||||
|
metadata:
|
||||||
|
name: mautrix-whatsapp-config
|
||||||
|
namespace: {{ .Release.Namespace }}
|
||||||
|
labels:
|
||||||
|
app.kubernetes.io/name: mautrix-whatsapp-config
|
||||||
|
{{- include "custom.labels" . | nindent 4 }}
|
||||||
|
spec:
|
||||||
|
provider: openbao
|
||||||
|
parameters:
|
||||||
|
baoAddress: "http://openbao-internal.openbao:8200"
|
||||||
|
roleName: matrix-synapse
|
||||||
|
objects: |
|
||||||
|
- objectName: config.yaml
|
||||||
|
fileName: config.yaml
|
||||||
|
secretPath: secret/data/cl01tl/matrix-synapse/mautrix-whatsapp
|
||||||
|
secretKey: config.yaml
|
||||||
|
- objectName: mautrix-whatsapp-registration.yaml
|
||||||
|
fileName: mautrix-whatsapp-registration.yaml
|
||||||
|
secretPath: secret/data/cl01tl/matrix-synapse/mautrix-whatsapp
|
||||||
|
secretKey: mautrix-whatsapp-registration.yaml
|
||||||
@@ -0,0 +1,8 @@
|
|||||||
|
apiVersion: v1
|
||||||
|
kind: ServiceAccount
|
||||||
|
metadata:
|
||||||
|
name: {{ include "custom.serviceAccountName" . }}
|
||||||
|
namespace: {{ .Release.Namespace }}
|
||||||
|
labels:
|
||||||
|
app.kubernetes.io/name: {{ include "custom.serviceAccountName" . }}
|
||||||
|
{{- include "custom.labels" . | nindent 4 }}
|
||||||
@@ -8,7 +8,7 @@ matrix-synapse:
|
|||||||
signingkey:
|
signingkey:
|
||||||
job:
|
job:
|
||||||
enabled: false
|
enabled: false
|
||||||
existingSecret: matrix-synapse-signingkey
|
existingSecret: matrix-synapse-signing-key
|
||||||
existingSecretKey: signing.key
|
existingSecretKey: signing.key
|
||||||
config:
|
config:
|
||||||
reportStats: false
|
reportStats: false
|
||||||
@@ -37,45 +37,16 @@ matrix-synapse:
|
|||||||
strategy:
|
strategy:
|
||||||
type: Recreate
|
type: Recreate
|
||||||
extraVolumes:
|
extraVolumes:
|
||||||
- name: matrix-synapse-config-secret
|
- name: config
|
||||||
secret:
|
csi:
|
||||||
secretName: matrix-synapse-config-secret
|
driver: secrets-store.csi.k8s.io
|
||||||
- name: matrix-hookshot-config-secret
|
readOnly: true
|
||||||
secret:
|
volumeAttributes:
|
||||||
secretName: matrix-hookshot-config-secret
|
secretProviderClass: matrix-synapse-config
|
||||||
- name: mautrix-discord-config-secret
|
|
||||||
secret:
|
|
||||||
secretName: mautrix-discord-config-secret
|
|
||||||
- name: mautrix-whatsapp-config-secret
|
|
||||||
secret:
|
|
||||||
secretName: mautrix-whatsapp-config-secret
|
|
||||||
- name: double-puppet-registration-secret
|
|
||||||
secret:
|
|
||||||
secretName: double-puppet-registration-secret
|
|
||||||
extraVolumeMounts:
|
extraVolumeMounts:
|
||||||
- name: matrix-synapse-config-secret
|
- name: config
|
||||||
mountPath: /synapse/config/conf.d/oidc.yaml
|
mountPath: /synapse/config/conf.d
|
||||||
subPath: oidc.yaml
|
mountPropagation: None
|
||||||
readOnly: true
|
|
||||||
- name: matrix-synapse-config-secret
|
|
||||||
mountPath: /synapse/config/conf.d/config.yaml
|
|
||||||
subPath: config.yaml
|
|
||||||
readOnly: true
|
|
||||||
- name: matrix-hookshot-config-secret
|
|
||||||
mountPath: /synapse/config/conf.d/hookshot-registration.yaml
|
|
||||||
subPath: hookshot-registration.yaml
|
|
||||||
readOnly: true
|
|
||||||
- name: mautrix-discord-config-secret
|
|
||||||
mountPath: /synapse/config/conf.d/mautrix-discord-registration.yaml
|
|
||||||
subPath: mautrix-discord-registration.yaml
|
|
||||||
readOnly: true
|
|
||||||
- name: mautrix-whatsapp-config-secret
|
|
||||||
mountPath: /synapse/config/conf.d/mautrix-whatsapp-registration.yaml
|
|
||||||
subPath: mautrix-whatsapp-registration.yaml
|
|
||||||
readOnly: true
|
|
||||||
- name: double-puppet-registration-secret
|
|
||||||
mountPath: /synapse/config/conf.d/double-puppet-registration.yaml
|
|
||||||
subPath: double-puppet-registration.yaml
|
|
||||||
readOnly: true
|
readOnly: true
|
||||||
resources:
|
resources:
|
||||||
requests:
|
requests:
|
||||||
@@ -120,7 +91,7 @@ matrix-synapse:
|
|||||||
externalRedis:
|
externalRedis:
|
||||||
host: matrix-synapse-valkey
|
host: matrix-synapse-valkey
|
||||||
port: 6379
|
port: 6379
|
||||||
existingSecret: matrix-synapse-valkey-secret
|
existingSecret: matrix-synapse-valkey-config
|
||||||
existingSecretPasswordKey: password
|
existingSecretPasswordKey: password
|
||||||
persistence:
|
persistence:
|
||||||
enabled: true
|
enabled: true
|
||||||
@@ -186,9 +157,13 @@ matrix-hookshot:
|
|||||||
path: /metrics
|
path: /metrics
|
||||||
persistence:
|
persistence:
|
||||||
config:
|
config:
|
||||||
enabled: true
|
type: custom
|
||||||
type: secret
|
volumeSpec:
|
||||||
name: matrix-hookshot-config-secret
|
csi:
|
||||||
|
driver: secrets-store.csi.k8s.io
|
||||||
|
readOnly: true
|
||||||
|
volumeAttributes:
|
||||||
|
secretProviderClass: matrix-hookshot-config
|
||||||
advancedMounts:
|
advancedMounts:
|
||||||
main:
|
main:
|
||||||
main:
|
main:
|
||||||
@@ -197,9 +172,13 @@ matrix-hookshot:
|
|||||||
mountPropagation: None
|
mountPropagation: None
|
||||||
subPath: config.yml
|
subPath: config.yml
|
||||||
registration:
|
registration:
|
||||||
enabled: true
|
type: custom
|
||||||
type: secret
|
volumeSpec:
|
||||||
name: matrix-hookshot-config-secret
|
csi:
|
||||||
|
driver: secrets-store.csi.k8s.io
|
||||||
|
readOnly: true
|
||||||
|
volumeAttributes:
|
||||||
|
secretProviderClass: matrix-hookshot-config
|
||||||
advancedMounts:
|
advancedMounts:
|
||||||
main:
|
main:
|
||||||
main:
|
main:
|
||||||
@@ -208,9 +187,13 @@ matrix-hookshot:
|
|||||||
mountPropagation: None
|
mountPropagation: None
|
||||||
subPath: registration.yml
|
subPath: registration.yml
|
||||||
passkey:
|
passkey:
|
||||||
enabled: true
|
type: custom
|
||||||
type: secret
|
volumeSpec:
|
||||||
name: matrix-hookshot-config-secret
|
csi:
|
||||||
|
driver: secrets-store.csi.k8s.io
|
||||||
|
readOnly: true
|
||||||
|
volumeAttributes:
|
||||||
|
secretProviderClass: matrix-hookshot-config
|
||||||
advancedMounts:
|
advancedMounts:
|
||||||
main:
|
main:
|
||||||
main:
|
main:
|
||||||
@@ -270,27 +253,19 @@ mautrix-discord:
|
|||||||
targetPort: 29334
|
targetPort: 29334
|
||||||
persistence:
|
persistence:
|
||||||
config:
|
config:
|
||||||
enabled: true
|
type: custom
|
||||||
type: secret
|
volumeSpec:
|
||||||
name: mautrix-discord-config-secret
|
csi:
|
||||||
|
driver: secrets-store.csi.k8s.io
|
||||||
|
readOnly: true
|
||||||
|
volumeAttributes:
|
||||||
|
secretProviderClass: mautrix-discord-config
|
||||||
advancedMounts:
|
advancedMounts:
|
||||||
main:
|
main:
|
||||||
init-copy-config:
|
init-copy-config:
|
||||||
- path: /tmp/config.yaml
|
- path: /tmp
|
||||||
readOnly: true
|
readOnly: true
|
||||||
mountPropagation: None
|
mountPropagation: None
|
||||||
subPath: config.yaml
|
|
||||||
registration:
|
|
||||||
enabled: true
|
|
||||||
type: secret
|
|
||||||
name: mautrix-discord-config-secret
|
|
||||||
advancedMounts:
|
|
||||||
main:
|
|
||||||
init-copy-config:
|
|
||||||
- path: /tmp/mautrix-discord-registration.yaml
|
|
||||||
readOnly: true
|
|
||||||
mountPropagation: None
|
|
||||||
subPath: mautrix-discord-registration.yaml
|
|
||||||
data:
|
data:
|
||||||
forceRename: mautrix-discord
|
forceRename: mautrix-discord
|
||||||
storageClass: ceph-block
|
storageClass: ceph-block
|
||||||
@@ -346,27 +321,19 @@ mautrix-whatsapp:
|
|||||||
targetPort: 29318
|
targetPort: 29318
|
||||||
persistence:
|
persistence:
|
||||||
config:
|
config:
|
||||||
enabled: true
|
type: custom
|
||||||
type: secret
|
volumeSpec:
|
||||||
name: mautrix-whatsapp-config-secret
|
csi:
|
||||||
|
driver: secrets-store.csi.k8s.io
|
||||||
|
readOnly: true
|
||||||
|
volumeAttributes:
|
||||||
|
secretProviderClass: mautrix-whatsapp-config
|
||||||
advancedMounts:
|
advancedMounts:
|
||||||
main:
|
main:
|
||||||
init-copy-config:
|
init-copy-config:
|
||||||
- path: /tmp/config.yaml
|
- path: /tmp
|
||||||
readOnly: true
|
readOnly: true
|
||||||
mountPropagation: None
|
mountPropagation: None
|
||||||
subPath: config.yaml
|
|
||||||
registration:
|
|
||||||
enabled: true
|
|
||||||
type: secret
|
|
||||||
name: mautrix-whatsapp-config-secret
|
|
||||||
advancedMounts:
|
|
||||||
main:
|
|
||||||
init-copy-config:
|
|
||||||
- path: /tmp/mautrix-whatsapp-registration.yaml
|
|
||||||
readOnly: true
|
|
||||||
mountPropagation: None
|
|
||||||
subPath: mautrix-whatsapp-registration.yaml
|
|
||||||
data:
|
data:
|
||||||
forceRename: mautrix-whatsapp
|
forceRename: mautrix-whatsapp
|
||||||
storageClass: ceph-block
|
storageClass: ceph-block
|
||||||
@@ -414,7 +381,7 @@ valkey-matrix-synapse:
|
|||||||
valkey:
|
valkey:
|
||||||
auth:
|
auth:
|
||||||
enabled: true
|
enabled: true
|
||||||
usersExistingSecret: matrix-synapse-valkey-secret
|
usersExistingSecret: matrix-synapse-valkey-config
|
||||||
aclUsers:
|
aclUsers:
|
||||||
default:
|
default:
|
||||||
permissions: "~* &* +@all"
|
permissions: "~* &* +@all"
|
||||||
|
|||||||
Reference in New Issue
Block a user