Add client token to generated kubeconfig
GKE now creates clusters which use token-based auth by default. Mint an access token for the current client and add a "token" field to the generated kubeconfig al la:
users:
- name: "${name}"
user:
client-certificate-data: "${client_certificate}"
client-key-data: "${client_key}"
token: "${token}"