cluster

Infrastructure files for Nordgedanken and Midnightthoughts.
git clone git://archive.git.mtrnord.blog/MTRNord/cluster.git
Log | Files | Refs | README

commit 96f611ce31edb9bef4ef835ef2ca5a4baa15fbe9
parent 82e11e413b31683e8f1c9e4fe9c996d2f0e3c319
Author: MTRNord <mtrnord1@gmail.com>
Date:   Fri, 17 Jan 2025 23:42:00 +0100

Update to v2 for fluffychat

Diffstat:
Mapps/base/matrix/draupnir-fluffy/deployment.yaml | 57+++++++++++++++++++++++++++++++--------------------------
1 file changed, 31 insertions(+), 26 deletions(-)

diff --git a/apps/base/matrix/draupnir-fluffy/deployment.yaml b/apps/base/matrix/draupnir-fluffy/deployment.yaml @@ -34,38 +34,43 @@ spec: - image: gnuxie/draupnir:v2.0.0 imagePullPolicy: Always livenessProbe: - failureThreshold: 3 - httpGet: - path: /healthz - port: 8080 - initialDelaySeconds: 60 - periodSeconds: 30 - successThreshold: 1 - timeoutSeconds: 1 + failureThreshold: 3 + httpGet: + path: /healthz + port: 8080 + initialDelaySeconds: 60 + periodSeconds: 30 + successThreshold: 1 + timeoutSeconds: 1 name: mjolnir-fluffy-container readinessProbe: - httpGet: - path: /health - port: 8080 - initialDelaySeconds: 60 - periodSeconds: 30 + httpGet: + path: /health + port: 8080 + initialDelaySeconds: 60 + periodSeconds: 30 securityContext: - allowPrivilegeEscalation: false - capabilities: - drop: - - ALL - readOnlyRootFilesystem: true - #runAsNonRoot: true + allowPrivilegeEscalation: false + capabilities: + drop: + - ALL + readOnlyRootFilesystem: true + #runAsNonRoot: true volumeMounts: - - mountPath: /data/config/production.yaml - name: config-volume - subPath: production.yaml - - mountPath: /data/storage - name: storage + - mountPath: /data/config/production.yaml + name: config-volume + subPath: production.yaml + - mountPath: /data/storage + name: storage + - mountPath: /tmp + name: tmp volumes: - configMap: - name: mjolnir-fluffy-config + name: mjolnir-fluffy-config name: config-volume - name: storage persistentVolumeClaim: - claimName: mjolnir-fluffy-persistent-storage + claimName: mjolnir-fluffy-persistent-storage + - name: tmp + emptyDir: + sizeLimit: 2048Mi