File tree Expand file tree Collapse file tree 3 files changed +7
-9
lines changed Expand file tree Collapse file tree 3 files changed +7
-9
lines changed Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ apiVersion: v2
2
2
name : quickwit
3
3
description : Sub-second search & analytics engine on cloud storage.
4
4
type : application
5
- version : 0.7.8
5
+ version : 0.7.9
6
6
appVersion : " v0.8.2"
7
7
keywords :
8
8
- quickwit
Original file line number Diff line number Diff line change @@ -90,14 +90,13 @@ spec:
90
90
nodeSelector :
91
91
{{- toYaml . | nindent 8 }}
92
92
{{- end }}
93
- {{- with $.Values.bootstrap.affinity }}
93
+ {{- with merge $.Values.affinity $.Values.bootstrap.affinity }}
94
94
affinity :
95
95
{{- toYaml . | nindent 8 }}
96
96
{{- end }}
97
- {{- with $ .Values.bootstrap.tolerations }}
97
+ {{- $tolerations := append .Values.tolerations .Values. bootstrap.tolerations | compact | uniq }}
98
98
tolerations :
99
- {{- toYaml . | nindent 8 }}
100
- {{- end }}
99
+ {{- toYaml $tolerations | nindent 8 }}
101
100
{{- if $.Values.bootstrap.runtimeClassName }}
102
101
runtimeClassName : {{ $.Values.bootstrap.runtimeClassName | quote }}
103
102
{{- end }}
Original file line number Diff line number Diff line change @@ -92,14 +92,13 @@ spec:
92
92
nodeSelector :
93
93
{{- toYaml . | nindent 8 }}
94
94
{{- end }}
95
- {{- with $.Values.bootstrap.affinity }}
95
+ {{- with merge $.Values.affinity $.Values.bootstrap.affinity }}
96
96
affinity :
97
97
{{- toYaml . | nindent 8 }}
98
98
{{- end }}
99
- {{- with $ .Values.bootstrap.tolerations }}
99
+ {{- $tolerations := append .Values.tolerations .Values. bootstrap.tolerations | compact | uniq }}
100
100
tolerations :
101
- {{- toYaml . | nindent 8 }}
102
- {{- end }}
101
+ {{- toYaml $tolerations | nindent 8 }}
103
102
{{- if $.Values.bootstrap.runtimeClassName }}
104
103
runtimeClassName : {{ $.Values.bootstrap.runtimeClassName | quote }}
105
104
{{- end }}
You can’t perform that action at this time.
0 commit comments