-
Notifications
You must be signed in to change notification settings - Fork 988
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Test auth provider plugins are loaded
- Loading branch information
1 parent
d853f1e
commit b53789d
Showing
2 changed files
with
185 additions
and
0 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
apiVersion: v1 | ||
kind: Config | ||
preferences: {} | ||
clusters: | ||
- cluster: | ||
certificate-authority-data: ZHVtbXk= | ||
server: https://127.0.0.1 | ||
name: default | ||
|
||
contexts: | ||
- context: | ||
cluster: default | ||
user: azure | ||
name: azure | ||
- context: | ||
cluster: default | ||
user: gcp | ||
name: gcp | ||
- context: | ||
cluster: default | ||
user: oidc | ||
name: oidc | ||
|
||
users: | ||
- name: azure | ||
user: | ||
auth-provider: | ||
config: | ||
access-token: dummy | ||
cmd-args: config config-helper --format=json | ||
cmd-path: /usr/local/Caskroom/google-cloud-sdk/latest/google-cloud-sdk/bin/gcloud | ||
expiry: 2017-06-19T14:02:42Z | ||
expiry-key: '{.credential.token_expiry}' | ||
token-key: '{.credential.access_token}' | ||
name: azure | ||
- name: gcp | ||
user: | ||
auth-provider: | ||
config: | ||
access-token: dummy | ||
cmd-args: config config-helper --format=json | ||
cmd-path: /usr/local/Caskroom/google-cloud-sdk/latest/google-cloud-sdk/bin/gcloud | ||
expiry: 2017-06-19T14:02:42Z | ||
expiry-key: '{.credential.token_expiry}' | ||
token-key: '{.credential.access_token}' | ||
name: gcp | ||
- name: oidc | ||
user: | ||
auth-provider: | ||
config: | ||
access-token: dummy | ||
cmd-args: config config-helper --format=json | ||
cmd-path: /usr/local/Caskroom/google-cloud-sdk/latest/google-cloud-sdk/bin/gcloud | ||
expiry: 2017-06-19T14:02:42Z | ||
expiry-key: '{.credential.token_expiry}' | ||
token-key: '{.credential.access_token}' | ||
name: oidc |