Skip to content

Class: LensExtension#

Renderer.LensExtension

Hierarchy#

  • LensExtension<LensRendererExtensionDependencies>

LensExtension

Table of contents#

Constructors#

Properties#

Accessors#

Methods#

Constructors#

constructor#

new LensExtension(__namedParameters)

Parameters#

Name Type
__namedParameters InstalledExtension

Inherited from#

LensExtension<LensRendererExtensionDependencies>.constructor

Properties#

[Disposers]#

[Disposers]: ExtendableDisposer

Inherited from#

LensExtension.__@Disposers@30072


[lensExtensionDependencies]#

Readonly [lensExtensionDependencies]: LensRendererExtensionDependencies

Inherited from#

LensExtension.__@lensExtensionDependencies@30075


additionalCategoryColumns#

additionalCategoryColumns: AdditionalCategoryColumnRegistration[] = []


appPreferenceTabs#

appPreferenceTabs: AppPreferenceTabRegistration[] = []


appPreferences#

appPreferences: AppPreferenceRegistration[] = []


catalogEntityDetailItems#

catalogEntityDetailItems: CatalogEntityDetailRegistration<CatalogEntity<CatalogEntityMetadata, CatalogEntityStatus, CatalogEntitySpec>>[] = []


clusterPageMenus#

clusterPageMenus: ClusterPageMenuRegistration[] = []


clusterPages#

clusterPages: PageRegistration[] = []


commands#

commands: CommandRegistration[] = []


customCategoryViews#

customCategoryViews: CustomCategoryViewRegistration[] = []


entitySettings#

entitySettings: EntitySettingRegistration[] = []


globalPages#

globalPages: PageRegistration[] = []


id#

Readonly id: string

Inherited from#

LensExtension.id


isBundled#

Readonly isBundled: boolean

Inherited from#

LensExtension.isBundled


kubeObjectDetailItems#

kubeObjectDetailItems: KubeObjectDetailRegistration<KubeObject<KubeObjectMetadata<KubeObjectScope>, unknown, unknown>>[] = []


kubeObjectHandlers#

kubeObjectHandlers: KubeObjectHandlerRegistration[] = []


kubeObjectMenuItems#

kubeObjectMenuItems: KubeObjectMenuRegistration[] = []


kubeObjectStatusTexts#

kubeObjectStatusTexts: KubeObjectStatusRegistration[] = []


kubeWorkloadsOverviewItems#

kubeWorkloadsOverviewItems: WorkloadsOverviewDetailRegistration[] = []


manifest#

Readonly manifest: LensExtensionManifest

Inherited from#

LensExtension.manifest


manifestPath#

Readonly manifestPath: string

Inherited from#

LensExtension.manifestPath


protocolHandlers#

protocolHandlers: ProtocolHandlerRegistration[] = []

Inherited from#

LensExtension.protocolHandlers


statusBarItems#

statusBarItems: StatusBarRegistration[] = []


topBarItems#

topBarItems: TopBarRegistration[] = []


welcomeBanners#

welcomeBanners: WelcomeBannerRegistration[] = []


welcomeMenus#

welcomeMenus: WelcomeMenuRegistration[] = []

Accessors#

description#

get description(): undefined | string

Returns#

undefined | string

Inherited from#

LensExtension.description


isEnabled#

get isEnabled(): boolean

Returns#

boolean

Inherited from#

LensExtension.isEnabled


name#

get name(): string

Returns#

string

Inherited from#

LensExtension.name


sanitizedExtensionId#

get sanitizedExtensionId(): string

Returns#

string

Inherited from#

LensExtension.sanitizedExtensionId


version#

get version(): string

Returns#

string

Inherited from#

LensExtension.version

Methods#

activate#

activate(): Promise<void>

Returns#

Promise<void>

Inherited from#

LensExtension.activate


addCatalogCategoryFilter#

addCatalogCategoryFilter(fn): Disposer

Add a filtering function for the catalog categories. This will be removed if the extension is disabled.

Parameters#

Name Type Description
fn CategoryFilter The function which should return a truthy value for those categories which should be kept.

Returns#

Disposer

A function to clean up the filter


addCatalogFilter#

addCatalogFilter(fn): Disposer

Add a filtering function for the catalog entities. This will be removed if the extension is disabled.

Parameters#

Name Type Description
fn EntityFilter The function which should return a truthy value for those entities which should be kept.

Returns#

Disposer

A function to clean up the filter


disable#

disable(): Promise<void>

Returns#

Promise<void>

Inherited from#

LensExtension.disable


enable#

enable(register): Promise<void>

Parameters#

Name Type
register (ext: LensExtension) => Promise<Disposer[]>

Returns#

Promise<void>

Inherited from#

LensExtension.enable


getExtensionFileFolder#

getExtensionFileFolder(): Promise<string>

getExtensionFileFolder returns the path to an already created folder. This folder is for the sole use of this extension.

Note: there is no security done on this folder, only obfuscation of the folder name.

Returns#

Promise<string>

Inherited from#

LensExtension.getExtensionFileFolder


isEnabledForCluster#

isEnabledForCluster(cluster): Promise<Boolean>

Defines if extension is enabled for a given cluster. This method is only called when the extension is created within a cluster frame.

The default implementation is to return true

deprecated Switch to using "enabled" or "visible" properties in each registration together with activeCluster

Parameters#

Name Type
cluster KubernetesCluster<KubernetesClusterMetadata, KubernetesClusterStatus, KubernetesClusterSpec>

Returns#

Promise<Boolean>


navigate(pageId?, params?): Promise<void>

Parameters#

Name Type
pageId? string
params object

Returns#

Promise<void>


onActivate#

Protected onActivate(): void | Promise<void>

Returns#

void | Promise<void>

Inherited from#

LensExtension.onActivate


onDeactivate#

Protected onDeactivate(): void | Promise<void>

Returns#

void | Promise<void>

Inherited from#

LensExtension.onDeactivate