Skip to content

Commit

Permalink
fix: image override error when passing list (#660)
Browse files Browse the repository at this point in the history
Co-authored-by: Abhilash Nair <[email protected]>
  • Loading branch information
Abhi94N and Abhilash Nair committed Aug 6, 2024
1 parent 734b06f commit 6b6134e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion charts/influxdb3-clustered/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
apiVersion: v2
type: application

version: 0.1.4
version: 0.1.5
appVersion: "20240717-1117630"
name: influxdb3-clustered
description: InfluxDB 3.0 Clustered
Expand Down
6 changes: 3 additions & 3 deletions charts/influxdb3-clustered/templates/app-instance.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,9 @@ spec:
key: {{required "missing catalog.dsn.SecretKey" .Values.catalog.dsn.SecretKey}}
{{- if or .Values.images.overrides .Values.images.registryOverride}}
images:
{{- if .Values.images.overrides}}
overrides: {{.Values.images.overrides}}
{{- end}}
{{- with .Values.images.overrides }}
overrides: {{ . | toYaml | nindent 8 }}
{{- end }}
{{- if .Values.images.registryOverride}}
registryOverride: {{.Values.images.registryOverride}}
{{- end}}
Expand Down

0 comments on commit 6b6134e

Please sign in to comment.