diff --git a/services/forgejo/forgejo-deployment.yaml b/services/forgejo/forgejo-deployment.yaml index fce7abd..38d9031 100644 --- a/services/forgejo/forgejo-deployment.yaml +++ b/services/forgejo/forgejo-deployment.yaml @@ -79,6 +79,12 @@ spec: value: "true" # Forces OIDC registration - name: FORGEJO__service__SHOW_REGISTRATION_BUTTON value: "false" + - name: FORGEJO__service__ENABLE_PASSWORD_SIGNIN_FORM + value: "false" + - name: FORGEJO__openid__ENABLE_OPENID_SIGNIN + value: "false" + - name: FORGEJO__openid__ENABLE_OPENID_SIGNUP + value: "false" # Package & Container Registries - name: FORGEJO__packages__ENABLED diff --git a/services/nest-matrix-bot/nest-matrix-bot-deployment.yaml b/services/nest-matrix-bot/nest-matrix-bot-deployment.yaml index 21135ab..09ebb61 100644 --- a/services/nest-matrix-bot/nest-matrix-bot-deployment.yaml +++ b/services/nest-matrix-bot/nest-matrix-bot-deployment.yaml @@ -67,6 +67,11 @@ spec: secretKeyRef: name: matrix-bot-credentials key: client-secret + - name: MATRIX_RECOVERY_KEY + valueFrom: + secretKeyRef: + name: matrix-bot-credentials + key: recovery-key volumeMounts: - mountPath: /app/store name: bot-store diff --git a/services/nest-matrix-bot/nest-matrix-bot-external-secret.yaml b/services/nest-matrix-bot/nest-matrix-bot-external-secret.yaml index 5230b88..9575c9f 100644 --- a/services/nest-matrix-bot/nest-matrix-bot-external-secret.yaml +++ b/services/nest-matrix-bot/nest-matrix-bot-external-secret.yaml @@ -24,3 +24,7 @@ spec: remoteRef: key: nest-matrix-bot property: client-secret + - secretKey: recovery-key + remoteRef: + key: nest-matrix-bot + property: bot-security-keys diff --git a/services/nest-matrix-bot/nest-matrix-bot-pvcs.yaml b/services/nest-matrix-bot/nest-matrix-bot-pvcs.yaml index a59ada0..79236e6 100644 --- a/services/nest-matrix-bot/nest-matrix-bot-pvcs.yaml +++ b/services/nest-matrix-bot/nest-matrix-bot-pvcs.yaml @@ -11,4 +11,4 @@ spec: storageClassName: longhorn resources: requests: - storage: 100Mi + storage: 500Mi