Created
June 9, 2018 16:25
-
-
Save DazWilkin/52d016288b95571919f8ebe2ca61434b to your computer and use it in GitHub Desktop.
Kubernetes Engine: kubectl config
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
apiVersion: v1 | |
kind: Config | |
preferences: {} | |
clusters: | |
- cluster: | |
certificate-authority-data: [[REDACTED]] | |
server: [[REDACTED]] | |
name: white | |
- cluster: | |
certificate-authority-data: [[REDACTED]] | |
server: [[REDACTED]] | |
name: black | |
contexts: | |
- context: | |
cluster: white | |
user: dazwilkin | |
name: white | |
- context: | |
cluster: black | |
user: dazwilkin | |
name: black | |
current-context: white | |
users: | |
- name: dazwilkin | |
user: | |
auth-provider: | |
config: | |
access-token: [[REDACTED]] | |
cmd-args: config config-helper --format=json | |
cmd-path: /.../google-cloud-sdk/bin/gcloud | |
expiry: 2018-06-09T00:00:00Z | |
expiry-key: '{.credential.token_expiry}' | |
token-key: '{.credential.access_token}' | |
name: gcp |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment