1454bf98e7
* feat: add new kubernetes backend endpoints Signed-off-by: Matthew Clarke <mclarke@spotify.com> * add more tests Signed-off-by: Matthew Clarke <mclarke@spotify.com> * add eslint exceptions Signed-off-by: Matthew Clarke <mclarke@spotify.com> * register new endpoints Signed-off-by: Matthew Clarke <mclarke@spotify.com> * add changeset Signed-off-by: Matthew Clarke <mclarke@spotify.com> * add breaking change ot changeset Signed-off-by: Matthew Clarke <mclarke@spotify.com> * fix tsc in test Signed-off-by: Matthew Clarke <mclarke@spotify.com> * changeset typo Signed-off-by: Matthew Clarke <mclarke@spotify.com> * api report update Signed-off-by: Matthew Clarke <mclarke@spotify.com>
453 B
453 B
@backstage/plugin-kubernetes-backend
| @backstage/plugin-kubernetes-backend |
|---|
| minor |
Add new endpoints to Kubernetes backend plugin
BREAKING: Kubernetes backend plugin now depends on CatalogApi
// Create new CatalogClient
const catalogApi = new CatalogClient({ discoveryApi: env.discovery });
const { router } = await KubernetesBuilder.createBuilder({
logger: env.logger,
config: env.config,
// Inject it into createBuilder params
catalogApi,
}).build();