1
0
mirror of https://github.com/lensapp/lens.git synced 2025-05-20 05:10:56 +00:00

Expose a way to access active cluster from Extension API

Signed-off-by: Janne Savolainen <janne.savolainen@live.fi>
This commit is contained in:
Janne Savolainen 2022-07-11 10:25:27 +03:00
parent 0da1f216fb
commit 5b2c53b251
No known key found for this signature in database
GPG Key ID: 8C6CFB2FFFE8F68A

View File

@ -10,6 +10,7 @@ import type { Disposer } from "../../common/utils";
import catalogCategoryRegistryInjectable from "../../common/catalog/category-registry.injectable";
import { asLegacyGlobalForExtensionApi } from "../as-legacy-globals-for-extension-api/as-legacy-global-object-for-extension-api";
import catalogEntityRegistryInjectable from "../../renderer/api/catalog/entity/registry.injectable";
import activeKubernetesClusterInjectable from "../../renderer/cluster-frame-context/active-kubernetes-cluster.injectable";
export const catalogCategories = asLegacyGlobalForExtensionApi(catalogCategoryRegistryInjectable);
@ -53,3 +54,7 @@ export class CatalogEntityRegistry {
}
export const catalogEntities = new CatalogEntityRegistry();
export const activeCluster = asLegacyGlobalForExtensionApi(
activeKubernetesClusterInjectable,
);