mirror of
https://github.com/lensapp/lens.git
synced 2025-05-20 05:10:56 +00:00
* Make sure release details are updates when opening details Signed-off-by: Janne Savolainen <janne.savolainen@live.fi> * Relax filtering of resources to prevent crashing when release has installed resources in another namespace Signed-off-by: Janne Savolainen <janne.savolainen@live.fi> * Add Open Closed Principle compliant way to introduce global overrides without modification in getDiForUnitTesting Signed-off-by: Janne Savolainen <janne.savolainen@live.fi> * Rework helm release details to fix multiple bugs Signed-off-by: Janne Savolainen <janne.savolainen@live.fi> * Remove redundant optional chaining Signed-off-by: Janne Savolainen <janne.savolainen@live.fi> * Simplify code Signed-off-by: Janne Savolainen <janne.savolainen@live.fi>
25 lines
821 B
TypeScript
25 lines
821 B
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 type { HelmReleaseDto } from "../../../../common/k8s-api/endpoints/helm-releases.api";
|
|
|
|
import { apiBase } from "../../../../common/k8s-api";
|
|
import { endpoint } from "../../../../common/k8s-api/endpoints/helm-releases.api";
|
|
|
|
export type CallForHelmReleases = (
|
|
namespace?: string
|
|
) => Promise<HelmReleaseDto[]>;
|
|
|
|
const callForHelmReleasesInjectable = getInjectable({
|
|
id: "call-for-helm-releases",
|
|
|
|
instantiate: (): CallForHelmReleases => async (namespace) =>
|
|
await apiBase.get<HelmReleaseDto[]>(endpoint({ namespace })),
|
|
|
|
causesSideEffects: true,
|
|
});
|
|
|
|
export default callForHelmReleasesInjectable;
|