fix(matrix-synapse): add global (and improve docs)
This commit is contained in:
parent
6f65889391
commit
300933d812
4 changed files with 15 additions and 28 deletions
|
@ -4,7 +4,7 @@ name: matrix-synapse
|
||||||
description: Matrix reference homeserver
|
description: Matrix reference homeserver
|
||||||
icon: https://matrix.org/images/matrix-logo.svg
|
icon: https://matrix.org/images/matrix-logo.svg
|
||||||
type: application
|
type: application
|
||||||
version: "1.0.19"
|
version: "1.0.20"
|
||||||
# renovate: image=ghcr.io/element-hq/synapse
|
# renovate: image=ghcr.io/element-hq/synapse
|
||||||
appVersion: 1.126.0
|
appVersion: 1.126.0
|
||||||
maintainers:
|
maintainers:
|
||||||
|
|
|
@ -7,7 +7,7 @@ description: "Matrix reference homeserver"
|
||||||
|
|
||||||
# matrix-synapse
|
# matrix-synapse
|
||||||
|
|
||||||
  
|
  
|
||||||
|
|
||||||
Matrix reference homeserver
|
Matrix reference homeserver
|
||||||
|
|
||||||
|
@ -71,9 +71,10 @@ helm uninstall matrix-synapse-release
|
||||||
| grafana.dashboards.annotations | object | `{}` | |
|
| grafana.dashboards.annotations | object | `{}` | |
|
||||||
| grafana.dashboards.enabled | bool | `false` | |
|
| grafana.dashboards.enabled | bool | `false` | |
|
||||||
| grafana.dashboards.labels.grafana_dashboard | string | `"1"` | |
|
| grafana.dashboards.labels.grafana_dashboard | string | `"1"` | |
|
||||||
| image.pullPolicy | string | `"IfNotPresent"` | |
|
| image.pullPolicy | string | `"IfNotPresent"` | This sets the pull policy for images. (could be overwritten by global.image.pullPolicy) |
|
||||||
| image.registry | string | `"ghcr.io"` | |
|
| image.pullSecrets | list | `[]` | Optionally specify an array of imagePullSecrets. Secrets must be manually created in the namespace. ref: https://kubernetes.io/docs/tasks/configure-pod-container/pull-image-private-registry/ |
|
||||||
| image.repository | string | `"element-hq/synapse"` | |
|
| image.registry | string | `"ghcr.io"` | image registry (could be overwritten by global.image.registry) |
|
||||||
|
| image.repository | string | `"element-hq/synapse"` | image repository |
|
||||||
| image.tag | string | `nil` | Overrides the image tag whose default is the chart appVersion. |
|
| image.tag | string | `nil` | Overrides the image tag whose default is the chart appVersion. |
|
||||||
| ingress.annotations | object | `{}` | |
|
| ingress.annotations | object | `{}` | |
|
||||||
| ingress.csHosts | list | `[]` | |
|
| ingress.csHosts | list | `[]` | |
|
||||||
|
|
|
@ -1,16 +0,0 @@
|
||||||
---
|
|
||||||
apiVersion: v1
|
|
||||||
kind: Pod
|
|
||||||
metadata:
|
|
||||||
name: "{{ include "matrix-synapse.fullname" . }}-test-connection"
|
|
||||||
labels:
|
|
||||||
{{- include "matrix-synapse.labels" . | nindent 4 }}
|
|
||||||
annotations:
|
|
||||||
"helm.sh/hook": test-success
|
|
||||||
spec:
|
|
||||||
containers:
|
|
||||||
- name: wget
|
|
||||||
image: busybox
|
|
||||||
command: ['wget']
|
|
||||||
args: ['{{ include "matrix-synapse.fullname" . }}:{{ $.Values.service.port }}/_matrix/client/versions']
|
|
||||||
restartPolicy: Never
|
|
|
@ -8,17 +8,19 @@ global:
|
||||||
pullPolicy:
|
pullPolicy:
|
||||||
|
|
||||||
image:
|
image:
|
||||||
|
# -- image registry (could be overwritten by global.image.registry)
|
||||||
registry: ghcr.io
|
registry: ghcr.io
|
||||||
|
# -- image repository
|
||||||
repository: element-hq/synapse
|
repository: element-hq/synapse
|
||||||
|
# -- This sets the pull policy for images. (could be overwritten by global.image.pullPolicy)
|
||||||
|
pullPolicy: IfNotPresent
|
||||||
# -- Overrides the image tag whose default is the chart appVersion.
|
# -- Overrides the image tag whose default is the chart appVersion.
|
||||||
tag:
|
tag:
|
||||||
pullPolicy: IfNotPresent
|
# -- Optionally specify an array of imagePullSecrets.
|
||||||
## Optionally specify an array of imagePullSecrets.
|
# Secrets must be manually created in the namespace.
|
||||||
## Secrets must be manually created in the namespace.
|
# ref: https://kubernetes.io/docs/tasks/configure-pod-container/pull-image-private-registry/
|
||||||
## ref: https://kubernetes.io/docs/tasks/configure-pod-container/pull-image-private-registry/
|
#
|
||||||
##
|
pullSecrets: []
|
||||||
# pullSecrets:
|
|
||||||
# - myRegistryKeySecretName
|
|
||||||
|
|
||||||
# -- Override part of the installed name, will still keep release name.
|
# -- Override part of the installed name, will still keep release name.
|
||||||
nameOverride:
|
nameOverride:
|
||||||
|
|
Loading…
Add table
Reference in a new issue