Unverified Commit 2a0d8f38 authored by Craig Hobbs's avatar Craig Hobbs Committed by GitHub

fix: key references (#137)

parent f1a43a9f
apiVersion: v2
version: 0.1.3
version: 0.1.4
appVersion: 1.8.0
engine: gotpl
......
......@@ -53,9 +53,9 @@ spec:
secretName: {{ .Values.data.https.secret.name }}
{{ if or .Values.data.https.secret.crt .Values.data.https.secret.key }}
items:
- key: {{ .Values.data.https.crt }}
- key: {{ .Values.data.https.secret.crt }}
path: tls.crt
- key: {{ .Values.data.https.key }}
- key: {{ .Values.data.https.secret.key }}
path: tls.key
{{ end }}
{{ end }}
......
......@@ -53,9 +53,9 @@ spec:
secretName: {{ .Values.meta.https.secret.name }}
{{ if or .Values.meta.https.secret.crt .Values.meta.https.secret.key }}
items:
- key: {{ .Values.meta.https.crt }}
- key: {{ .Values.meta.https.secret.crt }}
path: tls.crt
- key: {{ .Values.meta.https.key }}
- key: {{ .Values.meta.https.secret.key }}
path: tls.key
{{ end }}
{{ end }}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment