Skip to content

Commit

Permalink
Fix typo in redash.env template
Browse files Browse the repository at this point in the history
This caused the following error during rendering:
```
helm.go:84: [debug] template: redash/templates/worker-deployment.yaml:51:14: executing "redash/templates/worker-deployment.yaml" at <include "redash.env" $envCtx>: error calling include: template: redash/templates/_helpers.tpl:462:12: executing "redash.env" at <.quote>: can't evaluate field quote in type string
```
  • Loading branch information
Gregy committed Jun 18, 2024
1 parent e6dce74 commit 42434c0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion charts/redash/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
apiVersion: v1
name: redash
version: 3.1.0-alpha6
version: 3.1.0-alpha7
appVersion: 24.04.0-dev-b8718551048.32
description: Redash is an open source tool built for teams to query, visualize and collaborate.
keywords:
Expand Down
2 changes: 1 addition & 1 deletion charts/redash/templates/_helpers.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -459,7 +459,7 @@ Shared environment block used across each component.
{{- end }}
{{- with .Values.redash.jwtAuthHeaderName }}
- name: REDASH_JWT_AUTH_HEADER_NAME
value: {{ .quote }}
value: {{ quote . }}
{{- end }}
{{- with .Values.redash.featureShowQueryResultsCount }}
- name: REDASH_FEATURE_SHOW_QUERY_RESULTS_COUNT
Expand Down

0 comments on commit 42434c0

Please sign in to comment.