Skip to content

Commit

Permalink
Fix accessing global variables inside range blocks (#121)
Browse files Browse the repository at this point in the history
* Fix accessing global variables inside range blocks

* Update Chart.yaml

Update chart version to 0.7.10
  • Loading branch information
plainfatboy authored Jan 21, 2025
1 parent 050a222 commit 9c68ef4
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion charts/quickwit/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ apiVersion: v2
name: quickwit
description: Sub-second search & analytics engine on cloud storage.
type: application
version: 0.7.9
version: 0.7.10
appVersion: "v0.8.2"
keywords:
- quickwit
Expand Down
2 changes: 1 addition & 1 deletion charts/quickwit/templates/job-create-indices.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ spec:
affinity:
{{- toYaml . | nindent 8 }}
{{- end }}
{{- $tolerations := append .Values.tolerations .Values.bootstrap.tolerations | compact | uniq }}
{{- $tolerations := append $.Values.tolerations $.Values.bootstrap.tolerations | compact | uniq }}
tolerations:
{{- toYaml $tolerations | nindent 8 }}
{{- if $.Values.bootstrap.runtimeClassName }}
Expand Down
2 changes: 1 addition & 1 deletion charts/quickwit/templates/job-create-sources.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ spec:
affinity:
{{- toYaml . | nindent 8 }}
{{- end }}
{{- $tolerations := append .Values.tolerations .Values.bootstrap.tolerations | compact | uniq }}
{{- $tolerations := append $.Values.tolerations $.Values.bootstrap.tolerations | compact | uniq }}
tolerations:
{{- toYaml $tolerations | nindent 8 }}
{{- if $.Values.bootstrap.runtimeClassName }}
Expand Down

0 comments on commit 9c68ef4

Please sign in to comment.