kubeconfig is written with insecure permissions
When the kubeconfig is written to the local workstation the permissions need to be changed. This is the message
WARNING: Kubernetes configuration file is group-readable. This is insecure. Location: ~/.kube/config
Need to add this
```
chmod 600 ~/.kube/config
```
issue