Skip to content

Commit

Permalink
fix scoping for imagePullSecrets (#117)
Browse files Browse the repository at this point in the history
* Fixed scoping issue for imagePullSecrets

Scoping for .Values.image.imagePullSecrets led to a templating error when providing secrets from values.
Fixed by adjusting the reference respective to the scope.

Signed-off-by: Fridolin Zurlinden <[email protected]>

* Fixed scoping issue for imagePullSecrets

Scoping for .Values.image.imagePullSecrets led to a templating error when providing secrets from values.
Fixed by adjusting the reference respective to the scope.

Signed-off-by: Fridolin Zurlinden <[email protected]>

* Bumped version

Co-authored-by: André Bauer <[email protected]>
  • Loading branch information
ifrido and monotek authored Apr 27, 2022
1 parent d28ca02 commit 72ca961
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion zammad/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
apiVersion: v2
name: zammad
version: 6.3.0
version: 6.3.1
appVersion: 5.1.0
description: Zammad is a web based open source helpdesk/customer support system with many features to manage customer communication via several channels like telephone, facebook, twitter, chat and e-mails.
home: https://zammad.org
Expand Down
2 changes: 1 addition & 1 deletion zammad/templates/statefulset.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ spec:
spec:
{{- with .Values.image.imagePullSecrets }}
imagePullSecrets:
{{- toYaml .Values.image.imagePullSecrets | nindent 8 }}
{{- toYaml . | nindent 8 }}
{{- end }}
{{- if .Values.serviceAccount.create }}
serviceAccountName: {{ include "zammad.serviceAccountName" . }}
Expand Down

0 comments on commit 72ca961

Please sign in to comment.