This repository was archived by the owner on Nov 25, 2024. It is now read-only.
File tree 4 files changed +34
-1
lines changed
4 files changed +34
-1
lines changed Original file line number Diff line number Diff line change 1
1
apiVersion : v2
2
2
name : dendrite
3
- version : " 0.14.5 "
3
+ version : " 0.14.6 "
4
4
appVersion : " 0.13.8"
5
5
description : Dendrite Matrix Homeserver
6
6
type : application
Original file line number Diff line number Diff line change @@ -113,4 +113,16 @@ spec:
113
113
imagePullSecrets :
114
114
{{- with .Values.imagePullSecrets }}
115
115
{{ . | toYaml | nindent 6 }}
116
+ {{- end }}
117
+ {{- with .Values.nodeSelector }}
118
+ nodeSelector :
119
+ {{- toYaml . | nindent 8 }}
120
+ {{- end }}
121
+ {{- with .Values.affinity }}
122
+ affinity :
123
+ {{- toYaml . | nindent 8 }}
124
+ {{- end }}
125
+ {{- with .Values.tolerations }}
126
+ tolerations :
127
+ {{- toYaml . | nindent 8 }}
116
128
{{- end }}
Original file line number Diff line number Diff line change 98
98
volumes :
99
99
- name : signing-key
100
100
emptyDir : {}
101
+ {{- with .Values.nodeSelector }}
102
+ nodeSelector :
103
+ {{- toYaml . | nindent 8 }}
104
+ {{- end }}
105
+ {{- with .Values.affinity }}
106
+ affinity :
107
+ {{- toYaml . | nindent 8 }}
108
+ {{- end }}
109
+ {{- with .Values.tolerations }}
110
+ tolerations :
111
+ {{- toYaml . | nindent 8 }}
112
+ {{- end }}
101
113
parallelism : 1
102
114
completions : 1
103
115
backoffLimit : 1
Original file line number Diff line number Diff line change @@ -100,6 +100,15 @@ strategy:
100
100
# -- Maximum number of pods that can be scheduled above the desired number of pods
101
101
maxSurge : 25%
102
102
103
+ # -- Node selector configuration
104
+ nodeSelector : {}
105
+
106
+ # -- Tolerations configuration
107
+ tolerations : {}
108
+
109
+ # -- Affinity configuration
110
+ affinity : {}
111
+
103
112
dendrite_config :
104
113
version : 2
105
114
global :
You can’t perform that action at this time.
0 commit comments