File tree Expand file tree Collapse file tree 2 files changed +10
-2
lines changed
plugins/kubernetes-backend Expand file tree Collapse file tree 2 files changed +10
-2
lines changed Original file line number Diff line number Diff line change 1+ ---
2+ ' @backstage/plugin-kubernetes-backend ' : patch
3+ ---
4+
5+ Adapted the config.d.ts for custom k8s cluster authProvider implementations
Original file line number Diff line number Diff line change @@ -22,6 +22,7 @@ export interface Config {
2222 | 'configmaps'
2323 | 'deployments'
2424 | 'limitranges'
25+ | 'resourcequotas'
2526 | 'replicasets'
2627 | 'horizontalpodautoscalers'
2728 | 'jobs'
@@ -32,7 +33,7 @@ export interface Config {
3233 | 'daemonsets'
3334 > ;
3435 serviceLocatorMethod : {
35- type : 'multiTenant' ;
36+ type : 'multiTenant' | 'singleTenant' | 'catalogRelation' ;
3637 } ;
3738 clusterLocatorMethods : Array <
3839 | {
@@ -55,7 +56,8 @@ export interface Config {
5556 | 'google'
5657 | 'googleServiceAccount'
5758 | 'oidc'
58- | 'serviceAccount' ;
59+ | 'serviceAccount'
60+ | string ;
5961 /** @visibility secret */
6062 authMetadata ?: object ;
6163 /** @visibility frontend */
@@ -116,6 +118,7 @@ export interface Config {
116118 configmaps ?: string ;
117119 deployments ?: string ;
118120 limitranges ?: string ;
121+ resourcequotas ?: string ;
119122 replicasets ?: string ;
120123 horizontalpodautoscalers ?: string ;
121124 jobs ?: string ;
You can’t perform that action at this time.
0 commit comments