Skip to content

Commit 4779923

Browse files
committed
fix: cluster secret template, insecure should be a boolean
1 parent 100ca2a commit 4779923

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cmd/template/cluster-secret.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ data:
5959
certData: "{{ base64 .KubeConfig.TLSClientConfig.CertData }}"
6060
{{ end }}
6161
# Server should be accessed without verifying the TLS certificate
62-
insecure: "{{ .KubeConfig.TLSClientConfig.Insecure }}"
62+
insecure: {{ .KubeConfig.TLSClientConfig.Insecure }}
6363
{{ if .KubeConfig.TLSClientConfig.KeyData }}
6464
# Base64 encoded PEM-encoded bytes (typically read from a client certificate key file).
6565
keyData: "{{ base64 .KubeConfig.TLSClientConfig.KeyData }}"

0 commit comments

Comments
 (0)