mirror of
https://github.com/matrix-org/dendrite.git
synced 2024-11-22 06:11:55 -06:00
Merge branch 'main' into rdanzey/helm-release-gh-pages
This commit is contained in:
commit
62c8dbf579
|
@ -1,6 +1,6 @@
|
||||||
apiVersion: v2
|
apiVersion: v2
|
||||||
name: dendrite
|
name: dendrite
|
||||||
version: "0.14.5"
|
version: "0.14.6"
|
||||||
appVersion: "0.13.8"
|
appVersion: "0.13.8"
|
||||||
description: Dendrite Matrix Homeserver
|
description: Dendrite Matrix Homeserver
|
||||||
type: application
|
type: application
|
||||||
|
|
|
@ -56,6 +56,9 @@ spec:
|
||||||
args:
|
args:
|
||||||
- '--config'
|
- '--config'
|
||||||
- '/etc/dendrite/dendrite.yaml'
|
- '/etc/dendrite/dendrite.yaml'
|
||||||
|
{{- with .Values.extraArgs }}
|
||||||
|
{{- toYaml . | nindent 10 }}
|
||||||
|
{{- end }}
|
||||||
ports:
|
ports:
|
||||||
- name: http
|
- name: http
|
||||||
containerPort: 8008
|
containerPort: 8008
|
||||||
|
@ -113,4 +116,16 @@ spec:
|
||||||
imagePullSecrets:
|
imagePullSecrets:
|
||||||
{{- with .Values.imagePullSecrets }}
|
{{- with .Values.imagePullSecrets }}
|
||||||
{{ . | toYaml | nindent 6 }}
|
{{ . | toYaml | nindent 6 }}
|
||||||
|
{{- end }}
|
||||||
|
{{- with .Values.nodeSelector }}
|
||||||
|
nodeSelector:
|
||||||
|
{{- toYaml . | nindent 8 }}
|
||||||
|
{{- end }}
|
||||||
|
{{- with .Values.affinity }}
|
||||||
|
affinity:
|
||||||
|
{{- toYaml . | nindent 8 }}
|
||||||
|
{{- end }}
|
||||||
|
{{- with .Values.tolerations }}
|
||||||
|
tolerations:
|
||||||
|
{{- toYaml . | nindent 8 }}
|
||||||
{{- end }}
|
{{- end }}
|
|
@ -98,6 +98,18 @@ spec:
|
||||||
volumes:
|
volumes:
|
||||||
- name: signing-key
|
- name: signing-key
|
||||||
emptyDir: {}
|
emptyDir: {}
|
||||||
|
{{- with .Values.nodeSelector }}
|
||||||
|
nodeSelector:
|
||||||
|
{{- toYaml . | nindent 8 }}
|
||||||
|
{{- end }}
|
||||||
|
{{- with .Values.affinity }}
|
||||||
|
affinity:
|
||||||
|
{{- toYaml . | nindent 8 }}
|
||||||
|
{{- end }}
|
||||||
|
{{- with .Values.tolerations }}
|
||||||
|
tolerations:
|
||||||
|
{{- toYaml . | nindent 8 }}
|
||||||
|
{{- end }}
|
||||||
parallelism: 1
|
parallelism: 1
|
||||||
completions: 1
|
completions: 1
|
||||||
backoffLimit: 1
|
backoffLimit: 1
|
||||||
|
|
|
@ -77,6 +77,9 @@ persistence:
|
||||||
# GKE, AWS & OpenStack)
|
# GKE, AWS & OpenStack)
|
||||||
storageClass:
|
storageClass:
|
||||||
|
|
||||||
|
# -- Add additional arguments to the dendrite command
|
||||||
|
extraArgs: []
|
||||||
|
|
||||||
# -- Add additional volumes to the Dendrite Pod
|
# -- Add additional volumes to the Dendrite Pod
|
||||||
extraVolumes: []
|
extraVolumes: []
|
||||||
# ex.
|
# ex.
|
||||||
|
@ -100,6 +103,15 @@ strategy:
|
||||||
# -- Maximum number of pods that can be scheduled above the desired number of pods
|
# -- Maximum number of pods that can be scheduled above the desired number of pods
|
||||||
maxSurge: 25%
|
maxSurge: 25%
|
||||||
|
|
||||||
|
# -- Node selector configuration
|
||||||
|
nodeSelector: {}
|
||||||
|
|
||||||
|
# -- Tolerations configuration
|
||||||
|
tolerations: {}
|
||||||
|
|
||||||
|
# -- Affinity configuration
|
||||||
|
affinity: {}
|
||||||
|
|
||||||
dendrite_config:
|
dendrite_config:
|
||||||
version: 2
|
version: 2
|
||||||
global:
|
global:
|
||||||
|
|
Loading…
Reference in a new issue