Skip to content

Commit

Permalink
[matrix-synapse] Disables dragonfly deployment, cause WiP
Browse files Browse the repository at this point in the history
  • Loading branch information
0hlov3 committed Jan 10, 2025
1 parent 503892c commit 0010e36
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 13 deletions.
2 changes: 1 addition & 1 deletion charts/matrix-synapse/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ home: https://github.com/element-hq/synapse
type: application

# Chart version should follow semantic versioning: https://semver.org/
version: 1.0.1
version: 1.0.2

# Application version reflects the specific release of the application.
# Use quotes to preserve formatting.
Expand Down
30 changes: 18 additions & 12 deletions charts/matrix-synapse/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -189,11 +189,17 @@ register_new_matrix_user http://localhost:8008 -c /synapse/config/homeserver.yam
| `externalPostgresql.password` | Password of the database to use. | `""` |
| `externalPostgresql.existingSecret.name` | Name of an existing Kubernetes secret containing database credentials. | `""` |
| `externalPostgresql.existingSecret.keys.host` | Key for the host in the existing secret. | `""` |
| `externalPostgresql.existingSecret.keys.port` | Key for the port in the existing secret. | `nil` |
| `externalPostgresql.existingSecret.keys.port` | Key for the port in the existing secret. | `""` |
| `externalPostgresql.existingSecret.keys.database` | Key for the port in the existing secret. | `""` |
| `externalPostgresql.existingSecret.keys.username` | Key for the username in the existing secret. | `""` |
| `externalPostgresql.existingSecret.keys.password` | Key for the password in the existing secret. | `""` |

### Redis/Dragonfly WiP Don't USE right NOW!

| Name | Description | Value |
| ------------------- | ------------------------------------------------------------ | ------- |
| `dragonfly.enabled` | Enables Deployment of dragonflyDB as Redis replacement [WiP] | `false` |

### General

| Name | Description | Value |
Expand All @@ -214,7 +220,7 @@ register_new_matrix_user http://localhost:8008 -c /synapse/config/homeserver.yam
| `securityContext.runAsNonRoot` | Set containers Security Context runAsNonRoot | `true` |
| `securityContext.runAsUser` | Set containers Security Context runAsUser | `1000` |
| `service.type` | Sets the Service Type. | `ClusterIP` |
| `service.port` | Sets the Service port. | `80` |
| `service.port` | Sets the Service port. | `8008` |
| `ingress.enabled` | Enable ingress record generation for Keycloak | `false` |
| `ingress.className` | IngressClass that will be be used to implement the Ingress (Kubernetes 1.18+) | `""` |
| `ingress.annotations` | Additional annotations for the Ingress resource. To enable certificate autogeneration, place here your cert-manager annotations. | `{}` |
Expand All @@ -223,13 +229,13 @@ register_new_matrix_user http://localhost:8008 -c /synapse/config/homeserver.yam

### Synapse signing Key config

| Name | Description | Value |
| -------------------------------------------- | ------------------------------------------------------------- | -------------------- |
| `signingkey.job.enabled` | Enables the signinkeyjob to create a SigningKey if nor exists | `true` |
| `signingkey.job.storeSecretImage.registry` | The Kubectl Image Registry to for storing the singinKey | `docker.io` |
| `signingkey.job.storeSecretImage.repository` | The Kubectl Image Rposiory to for storing the singinKey | `chainguard/kubectl` |
| `signingkey.job.storeSecretImage.tag` | The Kubectl Image Tag to for storing the singinKey | `latest` |
| `signingkey.job.storeSecretImage.pullPolicy` | The Kubectl Image pullPolicy | `IfNotPresent` |
| `signingkey.existingSecret` | The Secret of the SinginKey if Exists | `""` |
| `signingkey.existingSecretKey` | The Secret Key of the SinginKey where the key is stored | `""` |
| `signingkey.resources` | Resources of the SigningKeyJob Containers | `{}` |
| Name | Description | Value |
| -------------------------------------------- | ------------------------------------------------------------- | ----------------- |
| `signingkey.job.enabled` | Enables the signinkeyjob to create a SigningKey if nor exists | `false` |
| `signingkey.job.storeSecretImage.registry` | The Kubectl Image Registry to for storing the singinKey | `docker.io` |
| `signingkey.job.storeSecretImage.repository` | The Kubectl Image Rposiory to for storing the singinKey | `bitnami/kubectl` |
| `signingkey.job.storeSecretImage.tag` | The Kubectl Image Tag to for storing the singinKey | `latest` |
| `signingkey.job.storeSecretImage.pullPolicy` | The Kubectl Image pullPolicy | `IfNotPresent` |
| `signingkey.existingSecret` | The Secret of the SinginKey if Exists | `""` |
| `signingkey.existingSecretKey` | The Secret Key of the SinginKey where the key is stored | `""` |
| `signingkey.resources` | Resources of the SigningKeyJob Containers | `{}` |
7 changes: 7 additions & 0 deletions charts/matrix-synapse/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -219,6 +219,13 @@ externalPostgresql:
## Default: ""
password: ""

############################
## @section Redis/Dragonfly WiP Don't USE right NOW!
###########################
dragonfly:
## @param dragonfly.enabled Enables Deployment of dragonflyDB as Redis replacement [WiP]
enabled: false

###################
## @section General
###################
Expand Down

0 comments on commit 0010e36

Please sign in to comment.