add Azure as a Kubernetes auth provider (#11299)
* add azure auth provider Signed-off-by: Guilherme Oenning <goenning@eshopworld.com> * fix prettier-S Signed-off-by: Guilherme Oenning <goenning@eshopworld.com> * add aks dashboard formatter Signed-off-by: Guilherme Oenning <goenning@eshopworld.com> * ammend patch notes Signed-off-by: Guilherme Oenning <goenning@eshopworld.com> * typo Signed-off-by: Guilherme Oenning <goenning@eshopworld.com> * update enum to include azure Signed-off-by: goenning <me@goenning.net> * fix typo Signed-off-by: goenning <me@goenning.net> * add plugin to changeset Signed-off-by: goenning <me@goenning.net> Co-authored-by: Guilherme Oenning <goenning@eshopworld.com>
This commit is contained in:
committed by
GitHub
parent
ccfb9f972d
commit
1ef98cfe48
@@ -18,7 +18,7 @@ import { V1Service } from '@kubernetes/client-node';
|
||||
// Warning: (ae-missing-release-tag) "AuthProviderType" is exported by the package, but it is missing a release tag (@alpha, @beta, @public, or @internal)
|
||||
//
|
||||
// @public (undocumented)
|
||||
export type AuthProviderType = 'google' | 'serviceAccount' | 'aws';
|
||||
export type AuthProviderType = 'google' | 'serviceAccount' | 'aws' | 'azure';
|
||||
|
||||
// Warning: (ae-missing-release-tag) "ClientContainerStatus" is exported by the package, but it is missing a release tag (@alpha, @beta, @public, or @internal)
|
||||
//
|
||||
|
||||
@@ -84,7 +84,7 @@ export interface ObjectsByEntityResponse {
|
||||
items: ClusterObjects[];
|
||||
}
|
||||
|
||||
export type AuthProviderType = 'google' | 'serviceAccount' | 'aws';
|
||||
export type AuthProviderType = 'google' | 'serviceAccount' | 'aws' | 'azure';
|
||||
|
||||
export type FetchResponse =
|
||||
| PodFetchResponse
|
||||
|
||||
Reference in New Issue
Block a user