Merge pull request #30953 from backstage/blam/kubernetes-fix

`k8s`: fix issue with `objectsToFetch` defaulting
This commit is contained in:
Ben Lambert
2025-08-21 08:58:07 +02:00
committed by GitHub
2 changed files with 6 additions and 1 deletions
+5
View File
@@ -0,0 +1,5 @@
---
'@backstage/plugin-kubernetes-backend': patch
---
Fix issue with default objects not being loaded properly
@@ -177,7 +177,7 @@ export class KubernetesInitializer {
return {
customResources,
objectTypesToFetch: objectTypesToFetch ?? [],
objectTypesToFetch: objectTypesToFetch ?? DEFAULT_OBJECTS,
};
}