Skip to content

Commit

Permalink
Merge pull request #12 from vbehar/fix-chart
Browse files Browse the repository at this point in the history
fix(chart): don't break when gitOwners is provided
  • Loading branch information
jenkins-x-bot-test authored Jul 21, 2021
2 parents 693ed54 + 2023117 commit 4e02e89
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion charts/cd-indicators/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ spec:
args:
- --postgres-uri=postgres://{{ if .Values.postgresql.useInternalInstance }}{{ include "cdindicators.fullname" . }}-postgresql:5432{{ else }}{{ .Values.postgresql.postgresqlHost }}:{{ .Values.postgresql.postgresqlPort }}{{ end }}/{{ .Values.postgresql.postgresqlDatabase }}?{{ range $k,$v := .Values.config.postgres.extraParams }}{{ $k }}={{ $v }}&{{ end }}
{{- with .Values.config.gitOwners }}
- --git-owners={{ join . "," }}
- --git-owners={{ . | join "," }}
{{- end }}
- --resync-interval={{ .Values.config.resyncInterval }}
- --log-level={{ .Values.config.logLevel }}
Expand Down

0 comments on commit 4e02e89

Please sign in to comment.