Skip to content

Commit a8902db

Browse files
fix #681 by adding tmp ephemeral volume to prevent element crash (#701)
* fix #681 by adding tmp ephemeral volume * helm-docs: automated action --------- Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
1 parent 1fbc3c7 commit a8902db

File tree

3 files changed

+7
-2
lines changed

3 files changed

+7
-2
lines changed

charts/matrix/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ sources:
88

99
type: application
1010

11-
version: 19.9.0
11+
version: 19.9.1
1212

1313
# renovate: image=ghcr.io/element-hq/synapse
1414
appVersion: v1.131.0

charts/matrix/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# matrix
22

3-
![Version: 19.9.0](https://img.shields.io/badge/Version-19.9.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: v1.131.0](https://img.shields.io/badge/AppVersion-v1.131.0-informational?style=flat-square)
3+
![Version: 19.9.1](https://img.shields.io/badge/Version-19.9.1-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: v1.131.0](https://img.shields.io/badge/AppVersion-v1.131.0-informational?style=flat-square)
44

55
A Helm chart to deploy a Matrix homeserver stack on Kubernetes
66

charts/matrix/templates/element/deployment.yaml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,8 @@ spec:
5757
- mountPath: /var/run/pid
5858
name: ephemeral
5959
subPath: pid
60+
- mountPath: /tmp
61+
name: ephemeral-tmp
6062
readinessProbe:
6163
httpGet:
6264
path: /
@@ -95,4 +97,7 @@ spec:
9597
# ephemeral cache, PID file, and any other temporary files nginx needs access to
9698
- name: ephemeral
9799
emptyDir: {}
100+
# ephemeral cache, for /tmp
101+
- name: ephemeral-tmp
102+
emptyDir: {}
98103
{{- end }}

0 commit comments

Comments
 (0)