We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fd0b8f8 commit f096f50Copy full SHA for f096f50
templates/tls.Secret.yaml
@@ -1,7 +1,7 @@
1
apiVersion: v1
2
data:
3
- cert: {{ if .Values.site.tlsCert }}{{ include "expandedString" (dict "str" .Values.site.tlsCert "Files" .Files) | b64enc}}{{ else }}""{{end}}
4
- key: {{if .Values.site.tlsKey }}{{ include "expandedString" (dict "str" .Values.site.tlsKey "Files" .Files) | b64enc}}{{ else }}""{{end}}
+ cert: {{ if .Values.site.tlsCert }}{{ .Values.site.tlsCert | b64enc }}{{ else }}""{{end}}
+ key: {{if .Values.site.tlsKey }}{{ .Values.site.tlsKey | b64enc}}{{ else }}""{{end}}
5
kind: Secret
6
metadata:
7
name: tls
0 commit comments