vmware-archive / gangway

An application that can be used to easily enable authentication flows via OIDC for a kubernetes cluster.
Apache License 2.0
409 stars 111 forks source link

Downloaded kubeconfig is missing data. #56

Closed swade1987 closed 6 years ago

swade1987 commented 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.

Adding this manually fixes the issue.