@k8slens/extensions 5.3.0-git.277184c572.0 → 5.3.0-git.30170163a6.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/__mocks__/electron.ts +0 -5
- package/dist/integration/helpers/utils.d.ts +1 -1
- package/dist/src/common/app-paths.d.ts +43 -0
- package/dist/src/common/catalog/catalog-entity.d.ts +4 -1
- package/dist/src/common/catalog-entities/kubernetes-cluster.d.ts +9 -1
- package/dist/src/common/catalog-entities/web-link.d.ts +2 -0
- package/dist/src/common/cluster-store.d.ts +0 -1
- package/dist/src/common/hotbar-store.d.ts +5 -0
- package/dist/src/common/hotbar-types.d.ts +1 -1
- package/dist/src/common/k8s-api/endpoints/nodes.api.d.ts +16 -32
- package/dist/src/common/k8s-api/endpoints/pods.api.d.ts +7 -6
- package/dist/src/common/k8s-api/endpoints/secret.api.d.ts +5 -6
- package/dist/src/common/k8s-api/endpoints/service.api.d.ts +1 -1
- package/dist/src/common/k8s-api/json-api.d.ts +2 -0
- package/dist/src/common/k8s-api/kube-api.d.ts +1 -1
- package/dist/src/common/kube-helpers.d.ts +9 -14
- package/dist/src/common/routes/port-forwards.d.ts +1 -0
- package/dist/src/common/user-store/preferences-helpers.d.ts +8 -1
- package/dist/src/common/user-store/user-store.d.ts +1 -1
- package/dist/src/common/{custom-errors.d.ts → utils/__tests__/tuple.test.d.ts} +1 -3
- package/dist/src/common/utils/{getPath.d.ts → array.d.ts} +4 -5
- package/dist/src/common/utils/index.d.ts +7 -5
- package/dist/src/common/utils/iter.d.ts +23 -9
- package/dist/src/common/utils/objects.d.ts +27 -0
- package/dist/src/common/utils/sort-compare.d.ts +50 -0
- package/dist/src/common/utils/tuple.d.ts +40 -0
- package/dist/src/extensions/common-api/catalog.d.ts +2 -1
- package/dist/src/extensions/extension-api.js +436 -1959
- package/dist/src/main/cluster.d.ts +0 -1
- package/dist/src/main/helm/helm-chart-manager.d.ts +5 -0
- package/dist/src/main/helm/helm-repo-manager.d.ts +1 -0
- package/dist/src/main/kube-auth-proxy.d.ts +1 -0
- package/dist/src/main/kubectl.d.ts +1 -1
- package/dist/src/main/utils/update-channel.d.ts +6 -0
- package/dist/src/renderer/bootstrap.d.ts +1 -1
- package/dist/src/renderer/components/+add-cluster/add-cluster.d.ts +1 -1
- package/dist/src/renderer/components/+apps-releases/release-menu.d.ts +3 -3
- package/dist/src/renderer/components/+catalog/catalog-entity-details.d.ts +0 -1
- package/dist/src/renderer/components/+catalog/catalog-entity-drawer-menu.d.ts +0 -1
- package/dist/src/renderer/components/+catalog/catalog-entity-item.d.ts +1 -1
- package/dist/src/renderer/components/+catalog/catalog.d.ts +2 -0
- package/dist/src/renderer/components/+catalog/hotbar-toggle-menu-item.d.ts +27 -0
- package/dist/src/renderer/components/+cluster/cluster-issues.d.ts +0 -1
- package/dist/src/renderer/components/+cluster/cluster-metric-switchers.d.ts +0 -1
- package/dist/src/renderer/components/+cluster/cluster-metrics.d.ts +0 -1
- package/dist/src/renderer/components/+cluster/cluster-overview.d.ts +0 -1
- package/dist/src/renderer/components/+cluster/cluster-pie-charts.d.ts +0 -1
- package/dist/src/renderer/components/+config-maps/config-map-details.d.ts +1 -1
- package/dist/src/renderer/components/+config-pod-disruption-budgets/pod-disruption-budgets-details.d.ts +1 -1
- package/dist/src/renderer/components/+config-resource-quotas/resource-quota-details.d.ts +1 -1
- package/dist/src/renderer/components/+config-secrets/__tests__/secret-details.test.d.ts +21 -0
- package/dist/src/renderer/components/+config-secrets/secret-details.d.ts +5 -4
- package/dist/src/renderer/components/+custom-resources/crd-details.d.ts +1 -1
- package/dist/src/renderer/components/+custom-resources/crd-resource-details.d.ts +2 -2
- package/dist/src/renderer/components/+entity-settings/entity-settings.d.ts +1 -2
- package/dist/src/renderer/components/+events/event-details.d.ts +1 -1
- package/dist/src/renderer/components/+events/kube-event-details.d.ts +1 -1
- package/dist/src/renderer/components/+namespaces/namespace-select-filter.d.ts +3 -0
- package/dist/src/renderer/components/+namespaces/namespace.store.d.ts +55 -2
- package/dist/src/renderer/components/+network-endpoints/endpoint-details.d.ts +1 -1
- package/dist/src/renderer/components/+network-ingresses/ingress-details.d.ts +1 -1
- package/dist/src/renderer/components/+network-policies/network-policy-details.d.ts +1 -1
- package/dist/src/renderer/components/+network-port-forwards/port-forward-details.d.ts +33 -0
- package/dist/src/renderer/components/+network-port-forwards/port-forward-menu.d.ts +1 -1
- package/dist/src/renderer/components/+network-port-forwards/port-forwards.d.ts +10 -1
- package/dist/src/renderer/components/+network-services/service-details.d.ts +1 -1
- package/dist/src/renderer/components/+network-services/service-port-component.d.ts +0 -1
- package/dist/src/renderer/components/+pod-security-policies/pod-security-policy-details.d.ts +9 -8
- package/dist/src/renderer/components/+storage-classes/storage-class-details.d.ts +1 -1
- package/dist/src/renderer/components/+workloads-cronjobs/cronjob-details.d.ts +1 -1
- package/dist/src/renderer/components/+workloads-pods/pod-container-port.d.ts +0 -1
- package/dist/src/renderer/components/+workloads-pods/pod-details-list.d.ts +0 -3
- package/dist/src/renderer/components/dock/create-resource.store.d.ts +3 -3
- package/dist/src/renderer/components/dock/log-list.d.ts +1 -1
- package/dist/src/renderer/components/dock/terminal.d.ts +1 -1
- package/dist/src/renderer/components/drawer/drawer.d.ts +1 -1
- package/dist/src/renderer/components/error-boundary/error-boundary.d.ts +13 -3
- package/dist/src/renderer/components/hotbar/hotbar-entity-icon.d.ts +0 -2
- package/dist/src/renderer/components/input/input.d.ts +1 -1
- package/dist/src/renderer/components/input/search-input-url.d.ts +1 -1
- package/dist/src/renderer/components/kube-object-meta/kube-object-meta.d.ts +1 -1
- package/dist/src/renderer/components/layout/setting-layout.d.ts +0 -1
- package/dist/src/renderer/components/layout/sidebar-storage.d.ts +1 -0
- package/dist/src/renderer/components/layout/sidebar.d.ts +3 -1
- package/dist/src/renderer/components/resizing-anchor/resizing-anchor.d.ts +1 -1
- package/dist/src/renderer/components/switch/switcher.d.ts +1 -1
- package/dist/src/renderer/components/table/__tests__/getSorted.test.d.ts +21 -0
- package/dist/src/renderer/components/table/sorting.d.ts +22 -0
- package/dist/src/renderer/components/table/table.d.ts +20 -3
- package/dist/src/renderer/components/virtual-list/virtual-list.d.ts +7 -1
- package/dist/src/renderer/port-forward/index.d.ts +1 -0
- package/dist/src/renderer/port-forward/port-forward-dialog.d.ts +0 -1
- package/dist/src/renderer/port-forward/port-forward-item.d.ts +4 -0
- package/dist/src/renderer/port-forward/port-forward-utils.d.ts +24 -0
- package/dist/src/renderer/port-forward/port-forward.store.d.ts +1 -1
- package/dist/src/renderer/utils/__tests__/converted-name.test.d.ts +21 -0
- package/dist/src/renderer/utils/createStorage.d.ts +2 -3
- package/dist/src/renderer/utils/index.d.ts +9 -10
- package/dist/src/renderer/utils/name-parts.d.ts +27 -0
- package/dist/src/renderer/utils/storageHelper.d.ts +1 -0
- package/package.json +1 -1
|
@@ -293,7 +293,6 @@ export declare class Cluster implements ClusterModel, ClusterState {
|
|
|
293
293
|
accessible: boolean;
|
|
294
294
|
disconnected: boolean;
|
|
295
295
|
};
|
|
296
|
-
protected getAllowedNamespacesErrorCount: number;
|
|
297
296
|
protected getAllowedNamespaces(): Promise<string[]>;
|
|
298
297
|
protected getAllowedResources(): Promise<KubeResource[]>;
|
|
299
298
|
isAllowedResource(kind: string): boolean;
|
|
@@ -20,6 +20,10 @@
|
|
|
20
20
|
*/
|
|
21
21
|
import type { HelmRepo } from "./helm-repo-manager";
|
|
22
22
|
import type { RepoHelmChartList } from "../../common/k8s-api/endpoints/helm-charts.api";
|
|
23
|
+
export interface HelmCacheFile {
|
|
24
|
+
apiVersion: string;
|
|
25
|
+
entries: RepoHelmChartList;
|
|
26
|
+
}
|
|
23
27
|
export declare class HelmChartManager {
|
|
24
28
|
#private;
|
|
25
29
|
protected repo: HelmRepo;
|
|
@@ -30,5 +34,6 @@ export declare class HelmChartManager {
|
|
|
30
34
|
private executeCommand;
|
|
31
35
|
getReadme(name: string, version?: string): Promise<string>;
|
|
32
36
|
getValues(name: string, version?: string): Promise<string>;
|
|
37
|
+
protected updateYamlCache(): Promise<void>;
|
|
33
38
|
protected cachedYaml(): Promise<RepoHelmChartList>;
|
|
34
39
|
}
|
|
@@ -45,6 +45,7 @@ export declare class HelmRepoManager extends Singleton {
|
|
|
45
45
|
private init;
|
|
46
46
|
protected static parseHelmEnv(): Promise<HelmEnv>;
|
|
47
47
|
repo(name: string): Promise<HelmRepo>;
|
|
48
|
+
private readConfig;
|
|
48
49
|
repositories(): Promise<HelmRepo[]>;
|
|
49
50
|
static update(): Promise<any>;
|
|
50
51
|
static addRepo({ name, url }: HelmRepo): Promise<string>;
|
|
@@ -41,5 +41,5 @@ export declare class Kubectl {
|
|
|
41
41
|
ensureKubectl(): Promise<boolean>;
|
|
42
42
|
downloadKubectl(): Promise<void>;
|
|
43
43
|
protected writeInitScripts(): Promise<void>;
|
|
44
|
-
protected getDownloadMirror():
|
|
44
|
+
protected getDownloadMirror(): import("../common/user-store/preferences-helpers").DownloadMirror;
|
|
45
45
|
}
|
|
@@ -18,4 +18,10 @@
|
|
|
18
18
|
* IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
|
|
19
19
|
* CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
20
20
|
*/
|
|
21
|
+
/**
|
|
22
|
+
* Compute the next update channel from the current updating channel
|
|
23
|
+
* @param defaultChannel The default (initial) channel to check
|
|
24
|
+
* @param channel The current channel that did not have a new version associated with it
|
|
25
|
+
* @returns The channel name of the next release version
|
|
26
|
+
*/
|
|
21
27
|
export declare function nextUpdateChannel(defaultChannel: string, channel: string): string;
|
|
@@ -29,7 +29,7 @@ import * as LensExtensionsRendererApi from "../extensions/renderer-api";
|
|
|
29
29
|
declare type AppComponent = React.ComponentType & {
|
|
30
30
|
init?(rootElem: HTMLElement): Promise<void>;
|
|
31
31
|
};
|
|
32
|
-
export declare function bootstrap(
|
|
32
|
+
export declare function bootstrap(comp: () => Promise<AppComponent>): Promise<void>;
|
|
33
33
|
/**
|
|
34
34
|
* Exports for virtual package "@k8slens/extensions" for renderer-process.
|
|
35
35
|
* All exporting names available in global runtime scope:
|
|
@@ -34,7 +34,7 @@ export declare class AddCluster extends React.Component {
|
|
|
34
34
|
constructor(props: {});
|
|
35
35
|
componentDidMount(): void;
|
|
36
36
|
get allErrors(): string[];
|
|
37
|
-
refreshContexts: (() => void
|
|
37
|
+
refreshContexts: import("lodash").DebouncedFunc<() => void>;
|
|
38
38
|
addClusters: () => Promise<void>;
|
|
39
39
|
render(): JSX.Element;
|
|
40
40
|
}
|
|
@@ -26,9 +26,9 @@ interface Props extends MenuActionsProps {
|
|
|
26
26
|
hideDetails?(): void;
|
|
27
27
|
}
|
|
28
28
|
export declare class HelmReleaseMenu extends React.Component<Props> {
|
|
29
|
-
remove()
|
|
30
|
-
upgrade()
|
|
31
|
-
rollback()
|
|
29
|
+
remove: () => Promise<void>;
|
|
30
|
+
upgrade: () => void;
|
|
31
|
+
rollback: () => void;
|
|
32
32
|
renderContent(): JSX.Element;
|
|
33
33
|
render(): JSX.Element;
|
|
34
34
|
}
|
|
@@ -18,7 +18,6 @@
|
|
|
18
18
|
* IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
|
|
19
19
|
* CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
20
20
|
*/
|
|
21
|
-
import "./catalog-entity-details.scss";
|
|
22
21
|
import { Component } from "react";
|
|
23
22
|
import type { CatalogCategory, CatalogEntity } from "../../../common/catalog";
|
|
24
23
|
import type { CatalogEntityItem } from "./catalog-entity-item";
|
|
@@ -30,7 +30,6 @@ export declare class CatalogEntityDrawerMenu<T extends CatalogEntity> extends Re
|
|
|
30
30
|
constructor(props: CatalogEntityDrawerMenuProps<T>);
|
|
31
31
|
componentDidMount(): void;
|
|
32
32
|
onMenuItemClick(menuItem: CatalogEntityContextMenu): void;
|
|
33
|
-
addToHotbar(entity: CatalogEntity): void;
|
|
34
33
|
getMenuItems(entity: T): React.ReactChild[];
|
|
35
34
|
render(): JSX.Element;
|
|
36
35
|
}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import React from "react";
|
|
2
|
-
import
|
|
2
|
+
import { CatalogEntity } from "../../api/catalog-entity";
|
|
3
3
|
import type { ItemObject } from "../../../common/item.store";
|
|
4
4
|
import type { CatalogEntityRegistry } from "../../api/catalog-entity-registry";
|
|
5
5
|
export declare class CatalogEntityItem<T extends CatalogEntity> implements ItemObject {
|
|
@@ -40,12 +40,14 @@ export declare class Catalog extends React.Component<Props> {
|
|
|
40
40
|
get routeActiveTab(): string;
|
|
41
41
|
componentDidMount(): Promise<void>;
|
|
42
42
|
addToHotbar(item: CatalogEntityItem<CatalogEntity>): void;
|
|
43
|
+
removeFromHotbar(item: CatalogEntityItem<CatalogEntity>): void;
|
|
43
44
|
onDetails: (item: CatalogEntityItem<CatalogEntity>) => void;
|
|
44
45
|
onMenuItemClick(menuItem: CatalogEntityContextMenu): void;
|
|
45
46
|
get categories(): import("../../api/catalog-entity").CatalogCategory[];
|
|
46
47
|
onTabChange: (tabId: string | null) => void;
|
|
47
48
|
renderNavigation(): JSX.Element;
|
|
48
49
|
renderItemMenu: (item: CatalogEntityItem<CatalogEntity>) => JSX.Element;
|
|
50
|
+
renderName(item: CatalogEntityItem<CatalogEntity>): JSX.Element;
|
|
49
51
|
renderIcon(item: CatalogEntityItem<CatalogEntity>): JSX.Element;
|
|
50
52
|
renderList(): JSX.Element;
|
|
51
53
|
render(): JSX.Element;
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Copyright (c) 2021 OpenLens Authors
|
|
3
|
+
*
|
|
4
|
+
* Permission is hereby granted, free of charge, to any person obtaining a copy of
|
|
5
|
+
* this software and associated documentation files (the "Software"), to deal in
|
|
6
|
+
* the Software without restriction, including without limitation the rights to
|
|
7
|
+
* use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
|
|
8
|
+
* the Software, and to permit persons to whom the Software is furnished to do so,
|
|
9
|
+
* subject to the following conditions:
|
|
10
|
+
*
|
|
11
|
+
* The above copyright notice and this permission notice shall be included in all
|
|
12
|
+
* copies or substantial portions of the Software.
|
|
13
|
+
*
|
|
14
|
+
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
15
|
+
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
|
|
16
|
+
* FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
|
|
17
|
+
* COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
|
|
18
|
+
* IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
|
|
19
|
+
* CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
20
|
+
*/
|
|
21
|
+
import { ReactNode } from "react";
|
|
22
|
+
import type { CatalogEntity } from "../../api/catalog-entity";
|
|
23
|
+
export declare function HotbarToggleMenuItem(props: {
|
|
24
|
+
entity: CatalogEntity;
|
|
25
|
+
addContent: ReactNode;
|
|
26
|
+
removeContent: ReactNode;
|
|
27
|
+
}): JSX.Element;
|
|
@@ -18,7 +18,6 @@
|
|
|
18
18
|
* IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
|
|
19
19
|
* CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
20
20
|
*/
|
|
21
|
-
import "./cluster-issues.scss";
|
|
22
21
|
import React from "react";
|
|
23
22
|
import type { ItemObject } from "../../../common/item.store";
|
|
24
23
|
interface Props {
|
|
@@ -18,5 +18,4 @@
|
|
|
18
18
|
* IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
|
|
19
19
|
* CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
20
20
|
*/
|
|
21
|
-
import "./cluster-metric-switchers.scss";
|
|
22
21
|
export declare const ClusterMetricSwitchers: () => JSX.Element;
|
|
@@ -18,7 +18,6 @@
|
|
|
18
18
|
* IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
|
|
19
19
|
* CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
20
20
|
*/
|
|
21
|
-
import "./cluster-overview.scss";
|
|
22
21
|
import React from "react";
|
|
23
22
|
export declare class ClusterOverview extends React.Component {
|
|
24
23
|
private metricPoller;
|
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
import "./config-map-details.scss";
|
|
22
22
|
import React from "react";
|
|
23
23
|
import type { KubeObjectDetailsProps } from "../kube-object-details";
|
|
24
|
-
import
|
|
24
|
+
import { ConfigMap } from "../../../common/k8s-api/endpoints";
|
|
25
25
|
interface Props extends KubeObjectDetailsProps<ConfigMap> {
|
|
26
26
|
}
|
|
27
27
|
export declare class ConfigMapDetails extends React.Component<Props> {
|
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
import "./pod-disruption-budgets-details.scss";
|
|
22
22
|
import React from "react";
|
|
23
23
|
import type { KubeObjectDetailsProps } from "../kube-object-details";
|
|
24
|
-
import
|
|
24
|
+
import { PodDisruptionBudget } from "../../../common/k8s-api/endpoints";
|
|
25
25
|
interface Props extends KubeObjectDetailsProps<PodDisruptionBudget> {
|
|
26
26
|
}
|
|
27
27
|
export declare class PodDisruptionBudgetDetails extends React.Component<Props> {
|
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
import "./resource-quota-details.scss";
|
|
22
22
|
import React from "react";
|
|
23
23
|
import type { KubeObjectDetailsProps } from "../kube-object-details";
|
|
24
|
-
import
|
|
24
|
+
import { ResourceQuota } from "../../../common/k8s-api/endpoints/resource-quota.api";
|
|
25
25
|
interface Props extends KubeObjectDetailsProps<ResourceQuota> {
|
|
26
26
|
}
|
|
27
27
|
export declare class ResourceQuotaDetails extends React.Component<Props> {
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Copyright (c) 2021 OpenLens Authors
|
|
3
|
+
*
|
|
4
|
+
* Permission is hereby granted, free of charge, to any person obtaining a copy of
|
|
5
|
+
* this software and associated documentation files (the "Software"), to deal in
|
|
6
|
+
* the Software without restriction, including without limitation the rights to
|
|
7
|
+
* use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
|
|
8
|
+
* the Software, and to permit persons to whom the Software is furnished to do so,
|
|
9
|
+
* subject to the following conditions:
|
|
10
|
+
*
|
|
11
|
+
* The above copyright notice and this permission notice shall be included in all
|
|
12
|
+
* copies or substantial portions of the Software.
|
|
13
|
+
*
|
|
14
|
+
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
15
|
+
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
|
|
16
|
+
* FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
|
|
17
|
+
* COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
|
|
18
|
+
* IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
|
|
19
|
+
* CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
20
|
+
*/
|
|
21
|
+
export {};
|
|
@@ -20,8 +20,9 @@
|
|
|
20
20
|
*/
|
|
21
21
|
import "./secret-details.scss";
|
|
22
22
|
import React from "react";
|
|
23
|
+
import { ObservableToggleSet } from "../../utils";
|
|
23
24
|
import type { KubeObjectDetailsProps } from "../kube-object-details";
|
|
24
|
-
import
|
|
25
|
+
import { Secret } from "../../../common/k8s-api/endpoints";
|
|
25
26
|
interface Props extends KubeObjectDetailsProps<Secret> {
|
|
26
27
|
}
|
|
27
28
|
export declare class SecretDetails extends React.Component<Props> {
|
|
@@ -29,13 +30,13 @@ export declare class SecretDetails extends React.Component<Props> {
|
|
|
29
30
|
data: {
|
|
30
31
|
[name: string]: string;
|
|
31
32
|
};
|
|
32
|
-
revealSecret:
|
|
33
|
-
[name: string]: boolean;
|
|
34
|
-
};
|
|
33
|
+
revealSecret: ObservableToggleSet<string>;
|
|
35
34
|
constructor(props: Props);
|
|
36
35
|
componentDidMount(): Promise<void>;
|
|
37
36
|
saveSecret: () => Promise<void>;
|
|
38
37
|
editData: (name: string, value: string, encoded: boolean) => void;
|
|
38
|
+
renderSecret: ([name, value]: [string, string]) => JSX.Element;
|
|
39
|
+
renderData(): JSX.Element;
|
|
39
40
|
render(): JSX.Element;
|
|
40
41
|
}
|
|
41
42
|
export {};
|
|
@@ -20,7 +20,7 @@
|
|
|
20
20
|
*/
|
|
21
21
|
import "./crd-details.scss";
|
|
22
22
|
import React from "react";
|
|
23
|
-
import
|
|
23
|
+
import { CustomResourceDefinition } from "../../../common/k8s-api/endpoints/crd.api";
|
|
24
24
|
import type { KubeObjectDetailsProps } from "../kube-object-details";
|
|
25
25
|
interface Props extends KubeObjectDetailsProps<CustomResourceDefinition> {
|
|
26
26
|
}
|
|
@@ -21,8 +21,8 @@
|
|
|
21
21
|
import "./crd-resource-details.scss";
|
|
22
22
|
import React from "react";
|
|
23
23
|
import type { KubeObjectDetailsProps } from "../kube-object-details";
|
|
24
|
-
import
|
|
25
|
-
import
|
|
24
|
+
import { AdditionalPrinterColumnsV1, CustomResourceDefinition } from "../../../common/k8s-api/endpoints/crd.api";
|
|
25
|
+
import { KubeObject, KubeObjectMetadata, KubeObjectStatus } from "../../../common/k8s-api/kube-object";
|
|
26
26
|
interface Props extends KubeObjectDetailsProps<KubeObject> {
|
|
27
27
|
crd: CustomResourceDefinition;
|
|
28
28
|
}
|
|
@@ -30,10 +30,9 @@ export declare class EntitySettings extends React.Component<Props> {
|
|
|
30
30
|
get entityId(): string;
|
|
31
31
|
get entity(): CatalogEntity;
|
|
32
32
|
get menuItems(): import("../../../extensions/registries").RegisteredEntitySetting[];
|
|
33
|
-
|
|
33
|
+
get activeSetting(): import("../../../extensions/registries").RegisteredEntitySetting;
|
|
34
34
|
onTabChange: (tabId: string) => void;
|
|
35
35
|
renderNavigation(): JSX.Element;
|
|
36
|
-
ensureActiveTab(): void;
|
|
37
36
|
render(): JSX.Element;
|
|
38
37
|
}
|
|
39
38
|
export {};
|
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
import "./event-details.scss";
|
|
22
22
|
import React from "react";
|
|
23
23
|
import type { KubeObjectDetailsProps } from "../kube-object-details";
|
|
24
|
-
import
|
|
24
|
+
import { KubeEvent } from "../../../common/k8s-api/endpoints/events.api";
|
|
25
25
|
interface Props extends KubeObjectDetailsProps<KubeEvent> {
|
|
26
26
|
}
|
|
27
27
|
export declare class EventDetails extends React.Component<Props> {
|
|
@@ -20,7 +20,7 @@
|
|
|
20
20
|
*/
|
|
21
21
|
import "./kube-event-details.scss";
|
|
22
22
|
import React from "react";
|
|
23
|
-
import
|
|
23
|
+
import { KubeObject } from "../../../common/k8s-api/kube-object";
|
|
24
24
|
export interface KubeEventDetailsProps {
|
|
25
25
|
object: KubeObject;
|
|
26
26
|
}
|
|
@@ -24,6 +24,9 @@ import type { SelectOption, SelectProps } from "../select";
|
|
|
24
24
|
export declare class NamespaceSelectFilter extends React.Component<SelectProps> {
|
|
25
25
|
static isMultiSelection: import("mobx").IObservableValue<boolean>;
|
|
26
26
|
static isMenuOpen: import("mobx").IObservableValue<boolean>;
|
|
27
|
+
/**
|
|
28
|
+
* Only updated on every open
|
|
29
|
+
*/
|
|
27
30
|
private selected;
|
|
28
31
|
private didToggle;
|
|
29
32
|
constructor(props: SelectProps);
|
|
@@ -30,18 +30,71 @@ export declare class NamespaceStore extends KubeObjectStore<Namespace> {
|
|
|
30
30
|
onContextChange(callback: (namespaces: string[]) => void, opts?: IReactionOptions): IReactionDisposer;
|
|
31
31
|
private autoLoadAllowedNamespaces;
|
|
32
32
|
private get initialNamespaces();
|
|
33
|
-
|
|
33
|
+
/**
|
|
34
|
+
* @private
|
|
35
|
+
* The current value (list of namespaces names) in the storage layer
|
|
36
|
+
*/
|
|
37
|
+
private get selectedNamespaces();
|
|
34
38
|
get allowedNamespaces(): string[];
|
|
39
|
+
/**
|
|
40
|
+
* The list of selected namespace names (for filtering)
|
|
41
|
+
*/
|
|
35
42
|
get contextNamespaces(): string[];
|
|
43
|
+
/**
|
|
44
|
+
* The set of select namespace names (for filtering)
|
|
45
|
+
*/
|
|
46
|
+
get selectedNames(): Set<string>;
|
|
47
|
+
/**
|
|
48
|
+
* Is true when the the set of namespace names selected is implicitly all
|
|
49
|
+
*
|
|
50
|
+
* Namely, this will be true if the user has deselected all namespaces from
|
|
51
|
+
* the filter or if the user has clicked the "All Namespaces" option
|
|
52
|
+
*/
|
|
53
|
+
get areAllSelectedImplicitly(): boolean;
|
|
36
54
|
subscribe(): typeof noop;
|
|
37
55
|
protected loadItems(params: KubeObjectStoreLoadingParams<Namespace>): Promise<Namespace[]>;
|
|
38
56
|
selectNamespaces(namespace: string | string[]): void;
|
|
39
57
|
clearSelected(namespaces?: string | string[]): void;
|
|
58
|
+
/**
|
|
59
|
+
* Checks if namespace names are selected for filtering
|
|
60
|
+
* @param namespaces One or several names of namespaces to check if they are selected
|
|
61
|
+
* @returns `true` if all the provided names are selected
|
|
62
|
+
*/
|
|
40
63
|
hasContext(namespaces: string | string[]): boolean;
|
|
64
|
+
/**
|
|
65
|
+
* Is `true` if all available namespaces are selected, otherwise `false`
|
|
66
|
+
*/
|
|
41
67
|
get hasAllContexts(): boolean;
|
|
68
|
+
/**
|
|
69
|
+
* Acts like `toggleSingle` but can work on several at a time
|
|
70
|
+
* @param namespaces One or many names of namespaces to select
|
|
71
|
+
*/
|
|
42
72
|
toggleContext(namespaces: string | string[]): void;
|
|
73
|
+
/**
|
|
74
|
+
* Toggles the selection state of `namespace`. Namely, if it was previously
|
|
75
|
+
* specifically or implicitly selected then after this call it will be
|
|
76
|
+
* explicitly deselected.
|
|
77
|
+
* @param namespace The name of a namespace
|
|
78
|
+
*/
|
|
43
79
|
toggleSingle(namespace: string): void;
|
|
44
|
-
|
|
80
|
+
/**
|
|
81
|
+
* Makes the given namespace the sole selected namespace
|
|
82
|
+
*/
|
|
83
|
+
selectSingle(namespace: string): void;
|
|
84
|
+
/**
|
|
85
|
+
* Selects all available namespaces.
|
|
86
|
+
*
|
|
87
|
+
* Note: If new namespaces appear in the future those will be selected too
|
|
88
|
+
*/
|
|
89
|
+
selectAll(): void;
|
|
90
|
+
/**
|
|
91
|
+
* This function selects all namespaces implicitly.
|
|
92
|
+
*
|
|
93
|
+
* NOTE: does not toggle any namespaces
|
|
94
|
+
* @param selectAll NOT USED
|
|
95
|
+
* @deprecated Use `NamespaceStore.selectAll` instead.
|
|
96
|
+
*/
|
|
97
|
+
toggleAll(selectAll?: boolean): void;
|
|
45
98
|
remove(item: Namespace): Promise<void>;
|
|
46
99
|
}
|
|
47
100
|
export declare const namespaceStore: NamespaceStore;
|
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
import "./endpoint-details.scss";
|
|
22
22
|
import React from "react";
|
|
23
23
|
import type { KubeObjectDetailsProps } from "../kube-object-details";
|
|
24
|
-
import
|
|
24
|
+
import { Endpoint } from "../../../common/k8s-api/endpoints";
|
|
25
25
|
interface Props extends KubeObjectDetailsProps<Endpoint> {
|
|
26
26
|
}
|
|
27
27
|
export declare class EndpointDetails extends React.Component<Props> {
|
|
@@ -20,7 +20,7 @@
|
|
|
20
20
|
*/
|
|
21
21
|
import "./ingress-details.scss";
|
|
22
22
|
import React from "react";
|
|
23
|
-
import
|
|
23
|
+
import { ILoadBalancerIngress, Ingress } from "../../../common/k8s-api/endpoints";
|
|
24
24
|
import type { KubeObjectDetailsProps } from "../kube-object-details";
|
|
25
25
|
import { IIngressMetrics } from "../../../common/k8s-api/endpoints/ingress.api";
|
|
26
26
|
interface Props extends KubeObjectDetailsProps<Ingress> {
|
|
@@ -20,7 +20,7 @@
|
|
|
20
20
|
*/
|
|
21
21
|
import "./network-policy-details.scss";
|
|
22
22
|
import React from "react";
|
|
23
|
-
import
|
|
23
|
+
import { IPolicyEgress, IPolicyIngress, NetworkPolicy } from "../../../common/k8s-api/endpoints/network-policy.api";
|
|
24
24
|
import type { KubeObjectDetailsProps } from "../kube-object-details";
|
|
25
25
|
interface Props extends KubeObjectDetailsProps<NetworkPolicy> {
|
|
26
26
|
}
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Copyright (c) 2021 OpenLens Authors
|
|
3
|
+
*
|
|
4
|
+
* Permission is hereby granted, free of charge, to any person obtaining a copy of
|
|
5
|
+
* this software and associated documentation files (the "Software"), to deal in
|
|
6
|
+
* the Software without restriction, including without limitation the rights to
|
|
7
|
+
* use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
|
|
8
|
+
* the Software, and to permit persons to whom the Software is furnished to do so,
|
|
9
|
+
* subject to the following conditions:
|
|
10
|
+
*
|
|
11
|
+
* The above copyright notice and this permission notice shall be included in all
|
|
12
|
+
* copies or substantial portions of the Software.
|
|
13
|
+
*
|
|
14
|
+
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
15
|
+
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
|
|
16
|
+
* FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
|
|
17
|
+
* COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
|
|
18
|
+
* IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
|
|
19
|
+
* CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
20
|
+
*/
|
|
21
|
+
import "./port-forward-details.scss";
|
|
22
|
+
import React from "react";
|
|
23
|
+
import { PortForwardItem } from "../../port-forward";
|
|
24
|
+
interface Props {
|
|
25
|
+
portForward: PortForwardItem;
|
|
26
|
+
hideDetails(): void;
|
|
27
|
+
}
|
|
28
|
+
export declare class PortForwardDetails extends React.Component<Props> {
|
|
29
|
+
renderResourceName(): JSX.Element;
|
|
30
|
+
renderContent(): JSX.Element;
|
|
31
|
+
render(): JSX.Element;
|
|
32
|
+
}
|
|
33
|
+
export {};
|
|
@@ -20,9 +20,18 @@
|
|
|
20
20
|
*/
|
|
21
21
|
import "./port-forwards.scss";
|
|
22
22
|
import React from "react";
|
|
23
|
+
import type { RouteComponentProps } from "react-router-dom";
|
|
23
24
|
import { PortForwardItem } from "../../port-forward";
|
|
24
|
-
|
|
25
|
+
import { PortForwardsRouteParams } from "../../../common/routes";
|
|
26
|
+
interface Props extends RouteComponentProps<PortForwardsRouteParams> {
|
|
27
|
+
}
|
|
28
|
+
export declare class PortForwards extends React.Component<Props> {
|
|
25
29
|
componentDidMount(): void;
|
|
30
|
+
get selectedPortForward(): PortForwardItem;
|
|
31
|
+
onDetails: (item: PortForwardItem) => void;
|
|
32
|
+
showDetails: (item: PortForwardItem) => void;
|
|
33
|
+
hideDetails: () => void;
|
|
26
34
|
renderRemoveDialogMessage(selectedItems: PortForwardItem[]): JSX.Element;
|
|
27
35
|
render(): JSX.Element;
|
|
28
36
|
}
|
|
37
|
+
export {};
|
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
import "./service-details.scss";
|
|
22
22
|
import React from "react";
|
|
23
23
|
import type { KubeObjectDetailsProps } from "../kube-object-details";
|
|
24
|
-
import
|
|
24
|
+
import { Service } from "../../../common/k8s-api/endpoints";
|
|
25
25
|
interface Props extends KubeObjectDetailsProps<Service> {
|
|
26
26
|
}
|
|
27
27
|
export declare class ServiceDetails extends React.Component<Props> {
|
|
@@ -31,7 +31,6 @@ export declare class ServicePortComponent extends React.Component<Props> {
|
|
|
31
31
|
isPortForwarded: boolean;
|
|
32
32
|
constructor(props: Props);
|
|
33
33
|
componentDidMount(): void;
|
|
34
|
-
init(): void;
|
|
35
34
|
checkExistingPortForwarding(): Promise<void>;
|
|
36
35
|
portForward(): Promise<void>;
|
|
37
36
|
stopPortForward(): Promise<void>;
|
package/dist/src/renderer/components/+pod-security-policies/pod-security-policy-details.d.ts
CHANGED
|
@@ -21,17 +21,18 @@
|
|
|
21
21
|
import "./pod-security-policy-details.scss";
|
|
22
22
|
import React from "react";
|
|
23
23
|
import type { KubeObjectDetailsProps } from "../kube-object-details";
|
|
24
|
-
import
|
|
24
|
+
import { PodSecurityPolicy } from "../../../common/k8s-api/endpoints";
|
|
25
25
|
interface Props extends KubeObjectDetailsProps<PodSecurityPolicy> {
|
|
26
26
|
}
|
|
27
|
+
interface RuleGroup {
|
|
28
|
+
rule: string;
|
|
29
|
+
ranges?: {
|
|
30
|
+
max: number;
|
|
31
|
+
min: number;
|
|
32
|
+
}[];
|
|
33
|
+
}
|
|
27
34
|
export declare class PodSecurityPolicyDetails extends React.Component<Props> {
|
|
28
|
-
renderRuleGroup(title: React.ReactNode, group:
|
|
29
|
-
rule: string;
|
|
30
|
-
ranges?: {
|
|
31
|
-
max: number;
|
|
32
|
-
min: number;
|
|
33
|
-
}[];
|
|
34
|
-
}): JSX.Element;
|
|
35
|
+
renderRuleGroup(title: React.ReactNode, group: RuleGroup): JSX.Element;
|
|
35
36
|
render(): JSX.Element;
|
|
36
37
|
}
|
|
37
38
|
export {};
|
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
import "./storage-class-details.scss";
|
|
22
22
|
import React from "react";
|
|
23
23
|
import type { KubeObjectDetailsProps } from "../kube-object-details";
|
|
24
|
-
import
|
|
24
|
+
import { StorageClass } from "../../../common/k8s-api/endpoints";
|
|
25
25
|
interface Props extends KubeObjectDetailsProps<StorageClass> {
|
|
26
26
|
}
|
|
27
27
|
export declare class StorageClassDetails extends React.Component<Props> {
|
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
import "./cronjob-details.scss";
|
|
22
22
|
import React from "react";
|
|
23
23
|
import type { KubeObjectDetailsProps } from "../kube-object-details";
|
|
24
|
-
import
|
|
24
|
+
import { CronJob } from "../../../common/k8s-api/endpoints";
|
|
25
25
|
interface Props extends KubeObjectDetailsProps<CronJob> {
|
|
26
26
|
}
|
|
27
27
|
export declare class CronJobDetails extends React.Component<Props> {
|
|
@@ -35,7 +35,6 @@ export declare class PodContainerPort extends React.Component<Props> {
|
|
|
35
35
|
isPortForwarded: boolean;
|
|
36
36
|
constructor(props: Props);
|
|
37
37
|
componentDidMount(): void;
|
|
38
|
-
init(): void;
|
|
39
38
|
checkExistingPortForwarding(): Promise<void>;
|
|
40
39
|
portForward(): Promise<void>;
|
|
41
40
|
stopPortForward(): Promise<void>;
|
|
@@ -29,12 +29,9 @@ interface Props extends OptionalProps {
|
|
|
29
29
|
interface OptionalProps {
|
|
30
30
|
maxCpu?: number;
|
|
31
31
|
maxMemory?: number;
|
|
32
|
-
showTitle?: boolean;
|
|
33
32
|
}
|
|
34
33
|
export declare class PodDetailsList extends React.Component<Props> {
|
|
35
|
-
static defaultProps: OptionalProps;
|
|
36
34
|
private metricsWatcher;
|
|
37
|
-
private sortingCallbacks;
|
|
38
35
|
componentDidMount(): void;
|
|
39
36
|
componentWillUnmount(): void;
|
|
40
37
|
renderCpuUsage(id: string, usage: number): string | 0 | JSX.Element;
|