Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion charts/matrix/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ sources:

type: application

version: 17.0.1
version: 17.1.0

# renovate: image=matrixdotorg/synapse
appVersion: v1.117.0
Expand Down
3 changes: 2 additions & 1 deletion charts/matrix/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# matrix

![Version: 17.0.1](https://img.shields.io/badge/Version-17.0.1-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: v1.117.0](https://img.shields.io/badge/AppVersion-v1.117.0-informational?style=flat-square)
![Version: 17.1.0](https://img.shields.io/badge/Version-17.1.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: v1.117.0](https://img.shields.io/badge/AppVersion-v1.117.0-informational?style=flat-square)

A Helm chart to deploy a Matrix homeserver stack on Kubernetes

Expand Down Expand Up @@ -438,6 +438,7 @@ A Helm chart to deploy a Matrix homeserver stack on Kubernetes
| element.probes.startup | object | `{}` | |
| element.replicaCount | int | `1` | replicas for element pods |
| element.resources | object | `{}` | |
| element.revisionHistoryLimit | int | `2` | set the revisionHistoryLimit to decide how many replicaSets are kept when you change a deployment. Explicitly setting this field to 0, will result in cleaning up all the history of your Deployment thus that Deployment will not be able to roll back. |
| element.roomDirectoryServers | list | `["matrix.org"]` | Servers to show in the Explore menu (the current server is always shown) |
| element.service.port | int | `80` | service port for element |
| element.service.type | string | `"ClusterIP"` | service type for element |
Expand Down
1 change: 1 addition & 0 deletions charts/matrix/templates/element/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ metadata:
{{ include "matrix.element.labels" . | indent 4}}
spec:
replicas: {{ .Values.element.replicaCount }}
revisionHistoryLimit: {{ .Values.element.revisionHistoryLimit }}
selector:
matchLabels:
app.kubernetes.io/name: {{ include "matrix.name" . }}-element
Expand Down
6 changes: 6 additions & 0 deletions charts/matrix/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -1492,6 +1492,12 @@ element:
# Element Desktop, or any other Matrix clients
enabled: true

# -- set the revisionHistoryLimit to decide how many replicaSets are
# kept when you change a deployment. Explicitly setting this field to 0,
# will result in cleaning up all the history of your Deployment thus that
# Deployment will not be able to roll back.
revisionHistoryLimit: 2

ingress:
# -- ingressClassName for the k8s ingress
className: "nginx"
Expand Down