mirror of
https://github.com/lensapp/lens.git
synced 2025-05-20 05:10:56 +00:00
* Clickable links in pods details Signed-off-by: Piotr Roszatycki <piotr.roszatycki@gmail.com> * Make linter happy Signed-off-by: Piotr Roszatycki <piotr.roszatycki@gmail.com> * Use withInjectables Signed-off-by: Piotr Roszatycki <piotr.roszatycki@gmail.com> * ServiceAccounts are namespaced Signed-off-by: Piotr Roszatycki <piotr.roszatycki@gmail.com> * Revert legacy APIs Signed-off-by: Piotr Roszatycki <piotr.roszatycki@gmail.com> * Make linter happy Signed-off-by: Piotr Roszatycki <piotr.roszatycki@gmail.com> Signed-off-by: Piotr Roszatycki <piotr.roszatycki@gmail.com>
255 lines
8.9 KiB
TypeScript
255 lines
8.9 KiB
TypeScript
/**
|
|
* Copyright (c) OpenLens Authors. All rights reserved.
|
|
* Licensed under MIT License. See LICENSE in root directory for more information.
|
|
*/
|
|
|
|
import "./pod-details.scss";
|
|
|
|
import React from "react";
|
|
import kebabCase from "lodash/kebabCase";
|
|
import { disposeOnUnmount, observer } from "mobx-react";
|
|
import { Link } from "react-router-dom";
|
|
import { observable, reaction, makeObservable } from "mobx";
|
|
import { Pod } from "../../../common/k8s-api/endpoints";
|
|
import type { NodeApi, PriorityClassApi, RuntimeClassApi, ServiceAccountApi } from "../../../common/k8s-api/endpoints";
|
|
import { DrawerItem, DrawerTitle } from "../drawer";
|
|
import { Badge } from "../badge";
|
|
import { cssNames, stopPropagation, toJS } from "../../utils";
|
|
import { PodDetailsContainer } from "./pod-details-container";
|
|
import { PodDetailsAffinities } from "./pod-details-affinities";
|
|
import { PodDetailsTolerations } from "./pod-details-tolerations";
|
|
import { PodDetailsSecrets } from "./pod-details-secrets";
|
|
import { ResourceMetrics } from "../resource-metrics";
|
|
import type { KubeObjectDetailsProps } from "../kube-object-details";
|
|
import { getItemMetrics } from "../../../common/k8s-api/endpoints/metrics.api";
|
|
import { PodCharts, podMetricTabs } from "./pod-charts";
|
|
import { KubeObjectMeta } from "../kube-object-meta";
|
|
import { ClusterMetricsResourceType } from "../../../common/cluster-types";
|
|
import logger from "../../../common/logger";
|
|
import { PodVolumes } from "./details/volumes/view";
|
|
import type { PodMetricData, RequestPodMetrics } from "../../../common/k8s-api/endpoints/metrics.api/request-pod-metrics.injectable";
|
|
import { withInjectables } from "@ogre-tools/injectable-react";
|
|
import requestPodMetricsInjectable from "../../../common/k8s-api/endpoints/metrics.api/request-pod-metrics.injectable";
|
|
import type { GetActiveClusterEntity } from "../../api/catalog/entity/get-active-cluster-entity.injectable";
|
|
import type { GetDetailsUrl } from "../kube-detail-params/get-details-url.injectable";
|
|
import getActiveClusterEntityInjectable from "../../api/catalog/entity/get-active-cluster-entity.injectable";
|
|
import getDetailsUrlInjectable from "../kube-detail-params/get-details-url.injectable";
|
|
import nodeApiInjectable from "../../../common/k8s-api/endpoints/node.api.injectable";
|
|
import runtimeClassApiInjectable from "../../../common/k8s-api/endpoints/runtime-class.api.injectable";
|
|
import serviceAccountApiInjectable from "../../../common/k8s-api/endpoints/service-account.api.injectable";
|
|
import priorityClassApiInjectable from "../../../common/k8s-api/endpoints/priority-class.api.injectable";
|
|
|
|
export interface PodDetailsProps extends KubeObjectDetailsProps<Pod> {
|
|
}
|
|
|
|
interface Dependencies {
|
|
requestPodMetrics: RequestPodMetrics;
|
|
getActiveClusterEntity: GetActiveClusterEntity;
|
|
getDetailsUrl: GetDetailsUrl;
|
|
nodeApi: NodeApi;
|
|
priorityClassApi: PriorityClassApi;
|
|
runtimeClassApi: RuntimeClassApi;
|
|
serviceAccountApi: ServiceAccountApi;
|
|
}
|
|
|
|
@observer
|
|
class NonInjectedPodDetails extends React.Component<PodDetailsProps & Dependencies> {
|
|
@observable metrics: PodMetricData | null = null;
|
|
@observable containerMetrics: PodMetricData | null = null;
|
|
|
|
constructor(props: PodDetailsProps & Dependencies) {
|
|
super(props);
|
|
makeObservable(this);
|
|
}
|
|
|
|
componentDidMount() {
|
|
disposeOnUnmount(this, [
|
|
reaction(() => this.props.object, () => {
|
|
this.metrics = null;
|
|
this.containerMetrics = null;
|
|
}),
|
|
]);
|
|
}
|
|
|
|
loadMetrics = async () => {
|
|
const { object: pod, requestPodMetrics } = this.props;
|
|
|
|
this.metrics = await requestPodMetrics([pod], pod.getNs());
|
|
this.containerMetrics = await requestPodMetrics([pod], pod.getNs(), "container, namespace");
|
|
};
|
|
|
|
render() {
|
|
const { object: pod, getActiveClusterEntity, getDetailsUrl, nodeApi } = this.props;
|
|
|
|
if (!pod) {
|
|
return null;
|
|
}
|
|
|
|
if (!(pod instanceof Pod)) {
|
|
logger.error("[PodDetails]: passed object that is not an instanceof Pod", pod);
|
|
|
|
return null;
|
|
}
|
|
|
|
const { status, spec } = pod;
|
|
const { conditions = [], podIP } = status ?? {};
|
|
const podIPs = pod.getIPs();
|
|
const { nodeName } = spec ?? {};
|
|
const nodeSelector = pod.getNodeSelectors();
|
|
const isMetricHidden = getActiveClusterEntity()?.isMetricHidden(ClusterMetricsResourceType.Pod);
|
|
const initContainers = pod.getInitContainers();
|
|
const containers = pod.getContainers();
|
|
|
|
const namespace = pod.getNs();
|
|
const priorityClassName = pod.getPriorityClassName();
|
|
const runtimeClassName = pod.getRuntimeClassName();
|
|
const serviceAccountName = pod.getServiceAccountName();
|
|
|
|
const priorityClassDetailsUrl = getDetailsUrl(this.props.priorityClassApi.getUrl({
|
|
name: priorityClassName,
|
|
}));
|
|
const runtimeClassDetailsUrl = getDetailsUrl(this.props.runtimeClassApi.getUrl({
|
|
name: runtimeClassName,
|
|
}));
|
|
const serviceAccountDetailsUrl = getDetailsUrl(this.props.serviceAccountApi.getUrl({
|
|
name: serviceAccountName,
|
|
namespace,
|
|
}));
|
|
|
|
return (
|
|
<div className="PodDetails">
|
|
{!isMetricHidden && (
|
|
<ResourceMetrics
|
|
loader={this.loadMetrics}
|
|
tabs={podMetricTabs}
|
|
object={pod}
|
|
metrics={this.metrics}
|
|
>
|
|
<PodCharts />
|
|
</ResourceMetrics>
|
|
)}
|
|
|
|
<KubeObjectMeta object={pod} />
|
|
|
|
<DrawerItem name="Status">
|
|
<span className={cssNames("status", kebabCase(pod.getStatusMessage()))}>
|
|
{pod.getStatusMessage()}
|
|
</span>
|
|
</DrawerItem>
|
|
<DrawerItem name="Node" hidden={!nodeName}>
|
|
<Link to={getDetailsUrl(nodeApi.getUrl({ name: nodeName }))}>
|
|
{nodeName}
|
|
</Link>
|
|
</DrawerItem>
|
|
<DrawerItem name="Pod IP">
|
|
{podIP}
|
|
</DrawerItem>
|
|
<DrawerItem
|
|
name="Pod IPs"
|
|
hidden={podIPs.length === 0}
|
|
labelsOnly
|
|
>
|
|
{podIPs.map(label => <Badge key={label} label={label} />)}
|
|
</DrawerItem>
|
|
<DrawerItem name="Service Account">
|
|
<Link
|
|
key="link"
|
|
to={serviceAccountDetailsUrl}
|
|
onClick={stopPropagation}
|
|
>
|
|
{serviceAccountName}
|
|
</Link>
|
|
</DrawerItem>
|
|
<DrawerItem name="Priority Class" hidden={priorityClassName === ""}>
|
|
<Link
|
|
key="link"
|
|
to={priorityClassDetailsUrl}
|
|
onClick={stopPropagation}
|
|
>
|
|
{priorityClassName}
|
|
</Link>
|
|
</DrawerItem>
|
|
<DrawerItem name="QoS Class">
|
|
{pod.getQosClass()}
|
|
</DrawerItem>
|
|
<DrawerItem name="Runtime Class" hidden={runtimeClassName === ""}>
|
|
<Link
|
|
key="link"
|
|
to={runtimeClassDetailsUrl}
|
|
onClick={stopPropagation}
|
|
>
|
|
{runtimeClassName}
|
|
</Link>
|
|
</DrawerItem>
|
|
|
|
<DrawerItem
|
|
name="Conditions"
|
|
className="conditions"
|
|
hidden={conditions.length === 0}
|
|
labelsOnly
|
|
>
|
|
{
|
|
conditions.map(({ type, status, lastTransitionTime }) => (
|
|
<Badge
|
|
key={type}
|
|
label={type}
|
|
disabled={status === "False"}
|
|
tooltip={`Last transition time: ${lastTransitionTime}`}
|
|
/>
|
|
))
|
|
}
|
|
</DrawerItem>
|
|
|
|
<DrawerItem name="Node Selector" hidden={nodeSelector.length === 0}>
|
|
{nodeSelector.map(label => <Badge key={label} label={label} />)}
|
|
</DrawerItem>
|
|
|
|
<PodDetailsTolerations workload={pod} />
|
|
<PodDetailsAffinities workload={pod} />
|
|
|
|
<DrawerItem name="Secrets" hidden={pod.getSecrets().length === 0}>
|
|
<PodDetailsSecrets pod={pod} />
|
|
</DrawerItem>
|
|
|
|
{initContainers.length > 0 && (
|
|
<>
|
|
<DrawerTitle>Init Containers</DrawerTitle>
|
|
{initContainers.map(container => (
|
|
<PodDetailsContainer
|
|
key={container.name}
|
|
pod={pod}
|
|
container={container}
|
|
/>
|
|
))}
|
|
</>
|
|
)}
|
|
|
|
<DrawerTitle>Containers</DrawerTitle>
|
|
{containers.map(container => (
|
|
<PodDetailsContainer
|
|
key={container.name}
|
|
pod={pod}
|
|
container={container}
|
|
metrics={getItemMetrics(toJS(this.containerMetrics), container.name)}
|
|
/>
|
|
))}
|
|
|
|
<PodVolumes pod={pod} />
|
|
</div>
|
|
);
|
|
}
|
|
}
|
|
|
|
export const PodDetails = withInjectables<Dependencies, PodDetailsProps>(NonInjectedPodDetails, {
|
|
getProps: (di, props) => ({
|
|
...props,
|
|
requestPodMetrics: di.inject(requestPodMetricsInjectable),
|
|
getActiveClusterEntity: di.inject(getActiveClusterEntityInjectable),
|
|
getDetailsUrl: di.inject(getDetailsUrlInjectable),
|
|
nodeApi: di.inject(nodeApiInjectable),
|
|
priorityClassApi: di.inject(priorityClassApiInjectable),
|
|
runtimeClassApi: di.inject(runtimeClassApiInjectable),
|
|
serviceAccountApi: di.inject(serviceAccountApiInjectable),
|
|
}),
|
|
});
|