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>
45 lines
2.2 KiB
TypeScript
45 lines
2.2 KiB
TypeScript
/**
|
|
* Copyright (c) OpenLens Authors. All rights reserved.
|
|
* Licensed under MIT License. See LICENSE in root directory for more information.
|
|
*/
|
|
import { getInjectable, lifecycleEnum } from "@ogre-tools/injectable";
|
|
import type { Cluster } from "../../common/cluster/cluster";
|
|
import directoryForTempInjectable from "../../common/app-paths/directory-for-temp/directory-for-temp.injectable";
|
|
import { KubeconfigManager } from "./kubeconfig-manager";
|
|
import loggerInjectable from "../../common/logger.injectable";
|
|
import joinPathsInjectable from "../../common/path/join-paths.injectable";
|
|
import getDirnameOfPathInjectable from "../../common/path/get-dirname.injectable";
|
|
import pathExistsInjectable from "../../common/fs/path-exists.injectable";
|
|
import writeFileInjectable from "../../common/fs/write-file.injectable";
|
|
import removePathInjectable from "../../common/fs/remove.injectable";
|
|
import lensProxyCertificateInjectable from "../../common/certificate/lens-proxy-certificate.injectable";
|
|
import kubeAuthProxyServerInjectable from "../cluster/kube-auth-proxy-server.injectable";
|
|
import kubeAuthProxyUrlInjectable from "../cluster/auth-proxy-url.injectable";
|
|
import loadKubeconfigInjectable from "../../common/cluster/load-kubeconfig.injectable";
|
|
|
|
const kubeconfigManagerInjectable = getInjectable({
|
|
id: "kubeconfig-manager",
|
|
|
|
instantiate: (di, cluster) => new KubeconfigManager(
|
|
{
|
|
directoryForTemp: di.inject(directoryForTempInjectable),
|
|
logger: di.inject(loggerInjectable),
|
|
joinPaths: di.inject(joinPathsInjectable),
|
|
getDirnameOfPath: di.inject(getDirnameOfPathInjectable),
|
|
removePath: di.inject(removePathInjectable),
|
|
pathExists: di.inject(pathExistsInjectable),
|
|
writeFile: di.inject(writeFileInjectable),
|
|
certificate: di.inject(lensProxyCertificateInjectable).get(),
|
|
loadKubeconfig: di.inject(loadKubeconfigInjectable, cluster),
|
|
kubeAuthProxyServer: di.inject(kubeAuthProxyServerInjectable, cluster),
|
|
kubeAuthProxyUrl: di.inject(kubeAuthProxyUrlInjectable, cluster),
|
|
},
|
|
cluster,
|
|
),
|
|
lifecycle: lifecycleEnum.keyedSingleton({
|
|
getInstanceKey: (di, cluster: Cluster) => cluster.id,
|
|
}),
|
|
});
|
|
|
|
export default kubeconfigManagerInjectable;
|