mirror of
https://github.com/lensapp/lens.git
synced 2025-05-20 05:10:56 +00:00
- requestNamespaceListPermissions is infallable so no need to have the extra try/catch - Refactor isMetricHidden method away from Cluster - Refactor shouldShowResource out of Cluster - Refactor isInLocalKubeconfig out of Cluster - Remove depecrated and unused workspace from Cluster - Refactor out kubectl as a dependency of Cluster - Remove from cluster getter used only once - Split out ClusterConnection from Cluster - Also split out KubeAuthProxyServer from ContextHandler - Rename ContextHandler to PrometheusHandler - Cleanup onNetworkOffline/Online impls within ClusterManager - Remove annotations from ClusterConnection - Remove mobx annotations from Cluster - Rename loadConfigFromFileInjectable - Remove all uses of dead createClusterInjectionToken - Fix type errors related to broadcastConnectionUpdate Signed-off-by: Sebastian Malton <sebastian@malton.name>
38 lines
1.9 KiB
TypeScript
38 lines
1.9 KiB
TypeScript
/**
|
|
* Copyright (c) OpenLens Authors. All rights reserved.
|
|
* Licensed under MIT License. See LICENSE in root directory for more information.
|
|
*/
|
|
import { getInjectable } from "@ogre-tools/injectable";
|
|
import { LensProxy } from "./lens-proxy";
|
|
import routerInjectable from "../router/router.injectable";
|
|
import httpProxy from "http-proxy";
|
|
import shellApiRequestInjectable from "./proxy-functions/shell-api-request.injectable";
|
|
import lensProxyPortInjectable from "./lens-proxy-port.injectable";
|
|
import contentSecurityPolicyInjectable from "../../common/vars/content-security-policy.injectable";
|
|
import emitAppEventInjectable from "../../common/app-event-bus/emit-event.injectable";
|
|
import loggerInjectable from "../../common/logger.injectable";
|
|
import lensProxyCertificateInjectable from "../../common/certificate/lens-proxy-certificate.injectable";
|
|
import getClusterForRequestInjectable from "./get-cluster-for-request.injectable";
|
|
import kubeAuthProxyServerInjectable from "../cluster/kube-auth-proxy-server.injectable";
|
|
import kubeApiUpgradeRequestInjectable from "./proxy-functions/kube-api-upgrade-request.injectable";
|
|
|
|
const lensProxyInjectable = getInjectable({
|
|
id: "lens-proxy",
|
|
|
|
instantiate: (di) => new LensProxy({
|
|
router: di.inject(routerInjectable),
|
|
proxy: httpProxy.createProxy(),
|
|
kubeApiUpgradeRequest: di.inject(kubeApiUpgradeRequestInjectable),
|
|
shellApiRequest: di.inject(shellApiRequestInjectable),
|
|
getClusterForRequest: di.inject(getClusterForRequestInjectable),
|
|
lensProxyPort: di.inject(lensProxyPortInjectable),
|
|
contentSecurityPolicy: di.inject(contentSecurityPolicyInjectable),
|
|
emitAppEvent: di.inject(emitAppEventInjectable),
|
|
logger: di.inject(loggerInjectable),
|
|
certificate: di.inject(lensProxyCertificateInjectable).get(),
|
|
getKubeAuthProxyServer: (cluster) => di.inject(kubeAuthProxyServerInjectable, cluster),
|
|
}),
|
|
});
|
|
|
|
export default lensProxyInjectable;
|