From e0863bb7eb5557a90fe6afd6cee66cfb2d30e6df Mon Sep 17 00:00:00 2001 From: Ben Toogood Date: Tue, 12 May 2020 14:10:39 +0100 Subject: [PATCH] K8s: Add Secret Type to yaml template --- util/kubernetes/client/templates.go | 1 + 1 file changed, 1 insertion(+) diff --git a/util/kubernetes/client/templates.go b/util/kubernetes/client/templates.go index 5e5721d3..ce0e3b0e 100644 --- a/util/kubernetes/client/templates.go +++ b/util/kubernetes/client/templates.go @@ -129,6 +129,7 @@ metadata: var secretTmpl = ` apiVersion: v1 kind: Secret +type: "{{ .Type }}" metadata: name: "{{ .Metadata.Name }}" namespace: "{{ .Metadata.Namespace }}"