Merge pull request #15623 from shardulsrivastava/fix/15349/fix-kubernetes-auth-provider-config-schema

fix: add missing googleServiceAccount auth provider in config schema
This commit is contained in:
Ben Lambert
2023-01-09 11:31:52 +01:00
committed by GitHub
2 changed files with 7 additions and 1 deletions
+5
View File
@@ -0,0 +1,5 @@
---
'@backstage/plugin-kubernetes-backend': patch
---
Added the missing auth provider googleServiceAccount in config schema.
+2 -1
View File
@@ -47,7 +47,8 @@ export interface Config {
| 'google'
| 'serviceAccount'
| 'azure'
| 'oidc';
| 'oidc'
| 'googleServiceAccount';
/** @visibility frontend */
oidcTokenProvider?: string;
/** @visibility frontend */