diff --git a/templates/linux-mac-common.html b/templates/linux-mac-common.html index e4bd825e..d09719e6 100644 --- a/templates/linux-mac-common.html +++ b/templates/linux-mac-common.html @@ -71,7 +71,8 @@

Run configuration commands

{{- if or .K8sCaPem .K8sCaURI }} --certificate-authority=${HOME}/.kube/certs/{{ .ClusterName}}/k8s-ca.crt \ {{- end }} - --server={{ .K8sMasterURI }} + --server={{ .K8sMasterURI }} \ + --insecure-skip-tls-verify=true
diff --git a/templates/windows-tab.html b/templates/windows-tab.html index a1e2b003..4a197d30 100644 --- a/templates/windows-tab.html +++ b/templates/windows-tab.html @@ -87,7 +87,8 @@

Run configuration commands

kubectl config set-cluster {{ .ClusterName }}
     {{- if or .K8sCaPem .K8sCaURI }} --certificate-authority=${HOME}/.kube/certs/{{ .ClusterName}}/k8s-ca.crt
-    {{- end }} --server={{ .K8sMasterURI }}
+ {{- end }} --server={{ .K8sMasterURI }} \ + --insecure-skip-tls-verify=true