Skip to content

Commit

Permalink
Quote possible empty tls secret data (#95)
Browse files Browse the repository at this point in the history
  • Loading branch information
travisgroth authored May 4, 2020
1 parent 8e269c6 commit d72fc0a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion charts/pomerium/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
apiVersion: v1
name: pomerium
version: 8.5.1
version: 8.5.2
appVersion: 0.7.5
home: http://www.pomerium.io/
icon: https://www.pomerium.io/logo-long.svg
Expand Down
4 changes: 2 additions & 2 deletions charts/pomerium/templates/tls-secrets.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ metadata:
app.kubernetes.io/instance: {{ .Release.Name }}
type: kubernetes.io/tls
data:
tls.crt: {{ .Values.ingress.secret.cert }}
tls.key: {{ .Values.ingress.secret.key }}
tls.crt: {{ .Values.ingress.secret.cert | quote }}
tls.key: {{ .Values.ingress.secret.key | quote }}
---
{{- end }}
{{- end }}
Expand Down

0 comments on commit d72fc0a

Please sign in to comment.