Skip to content

Commit

Permalink
fix: github secret extra quotation mark(#415)
Browse files Browse the repository at this point in the history
  • Loading branch information
Reshet-GoIT authored Jul 5, 2021
1 parent d4ff2b7 commit 44cea73
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion sentry/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ apiVersion: v2
name: sentry
description: A Helm chart for Kubernetes
type: application
version: 11.4.0
version: 11.4.1
appVersion: 21.6.1
dependencies:
- name: redis
Expand Down
14 changes: 7 additions & 7 deletions sentry/templates/configmap-sentry.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,23 +34,23 @@ data:
##########
{{- if .Values.github.appId }}
github-app.id: {{ .Values.github.appId }}
{{ end }}
{{- end }}
{{- if .Values.github.appName }}
github-app.name: {{ .Values.github.appName | quote }}
{{ end }}
{{- end }}
{{- if .Values.github.privateKey }}
github-app.private-key: |-
{{ .Values.github.privateKey | nindent 8 }}"
{{ end }}
{{ .Values.github.privateKey | indent 8 }}
{{- end }}
{{- if .Values.github.webhookSecret }}
github-app.webhook-secret: {{ .Values.github.webhookSecret | quote }}
{{ end }}
{{- end }}
{{- if .Values.github.clientId }}
github-app.client-id: {{ .Values.github.clientId | quote }}
{{ end }}
{{- end }}
{{- if .Values.github.clientSecret }}
github-app.client-secret: {{ .Values.github.clientSecret | quote }}
{{ end }}
{{- end }}

##########
# Google #
Expand Down

0 comments on commit 44cea73

Please sign in to comment.