Skip to content

Commit 9c68ef4

Browse files
authored
Fix accessing global variables inside range blocks (#121)
* Fix accessing global variables inside range blocks * Update Chart.yaml Update chart version to 0.7.10
1 parent 050a222 commit 9c68ef4

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

charts/quickwit/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ apiVersion: v2
22
name: quickwit
33
description: Sub-second search & analytics engine on cloud storage.
44
type: application
5-
version: 0.7.9
5+
version: 0.7.10
66
appVersion: "v0.8.2"
77
keywords:
88
- quickwit

charts/quickwit/templates/job-create-indices.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ spec:
9494
affinity:
9595
{{- toYaml . | nindent 8 }}
9696
{{- end }}
97-
{{- $tolerations := append .Values.tolerations .Values.bootstrap.tolerations | compact | uniq }}
97+
{{- $tolerations := append $.Values.tolerations $.Values.bootstrap.tolerations | compact | uniq }}
9898
tolerations:
9999
{{- toYaml $tolerations | nindent 8 }}
100100
{{- if $.Values.bootstrap.runtimeClassName }}

charts/quickwit/templates/job-create-sources.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ spec:
9696
affinity:
9797
{{- toYaml . | nindent 8 }}
9898
{{- end }}
99-
{{- $tolerations := append .Values.tolerations .Values.bootstrap.tolerations | compact | uniq }}
99+
{{- $tolerations := append $.Values.tolerations $.Values.bootstrap.tolerations | compact | uniq }}
100100
tolerations:
101101
{{- toYaml $tolerations | nindent 8 }}
102102
{{- if $.Values.bootstrap.runtimeClassName }}

0 commit comments

Comments
 (0)