Closed swade1987 closed 6 years ago
It looks like the downloaded kubeconfig is missing some configuration (see below)
apiVersion: v1 clusters: - cluster: certificate-authority:
It should be ...
apiVersion: v1 clusters: - cluster: certificate-authority-data:
Basically including the -data at the end of certificate-authority.
-data
certificate-authority
Adding this manually fixes the issue.
It looks like the downloaded kubeconfig is missing some configuration (see below)
It should be ...
Basically including the
-data
at the end ofcertificate-authority
.Adding this manually fixes the issue.