From 59d74756ef2fdd0279f59f199879cc985cfef47d Mon Sep 17 00:00:00 2001 From: Mark Burnett Date: Thu, 28 Jun 2018 10:45:25 -0500 Subject: [PATCH] Fix: rename tls.ca to ca.crt in secret snippet Change-Id: Ia2029bb1d2aef6f708fe5ff32daf8ccaf18d8e34 --- helm-toolkit/templates/manifests/_secret-tls.yaml.tpl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/helm-toolkit/templates/manifests/_secret-tls.yaml.tpl b/helm-toolkit/templates/manifests/_secret-tls.yaml.tpl index 0dbefa19..549530da 100644 --- a/helm-toolkit/templates/manifests/_secret-tls.yaml.tpl +++ b/helm-toolkit/templates/manifests/_secret-tls.yaml.tpl @@ -33,7 +33,7 @@ data: tls.crt: {{ $host.public.tls.crt | b64enc }} tls.key: {{ $host.public.tls.key | b64enc }} {{- if $host.public.tls.ca }} - tls.ca: {{ $host.public.tls.ca | b64enc }} + ca.crt: {{ $host.public.tls.ca | b64enc }} {{- end }} {{- end }} {{- end }}