Skip to content

Commit

Permalink
Merge pull request #20 from ekarlso/fix-pullsecrets
Browse files Browse the repository at this point in the history
Fix pullSecrets with toYaml
  • Loading branch information
Licenser authored May 31, 2023
2 parents e36d257 + 3127c98 commit 6c04f93
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion charts/tremor/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,6 @@ appVersion: "1.0"
description: "Chart to deploy a tremor instance"
icon: https://raw.githubusercontent.com/cncf/artwork/master/projects/tremor/horizontal/color/tremor-horizontal-color.png
name: "tremor"
version: "0.13.0-rc.12-2"
version: "0.13.0-rc.12-3"
maintainers:
- name: tremor-rs
2 changes: 1 addition & 1 deletion charts/tremor/templates/daemonset.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ spec:
{{- end }}
spec:
{{- with .Values.image.pullSecrets }}
imagePullSecrets: {{ . }}
imagePullSecrets: {{ toYaml . }}
{{- end }}
serviceAccountName: {{ template "tremor.fullname" . }}
{{- if .Values.priorityClassName }}
Expand Down
2 changes: 1 addition & 1 deletion charts/tremor/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ spec:
{{- end }}
spec:
{{- with .Values.image.pullSecrets }}
imagePullSecrets: {{ . }}
imagePullSecrets: {{ toYaml . }}
{{- end }}
serviceAccount: {{ template "tremor.fullname" . }}
{{- if .Values.priorityClassName }}
Expand Down

0 comments on commit 6c04f93

Please sign in to comment.