mirror of
https://github.com/lensapp/lens.git
synced 2025-05-20 05:10:56 +00:00
232 lines
7.8 KiB
TypeScript
232 lines
7.8 KiB
TypeScript
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 { autorun, observable, reaction, toJS } from "mobx";
|
|
import { Trans } from "@lingui/macro";
|
|
import { IPodMetrics, nodesApi, Pod, pvcApi, configMapApi } from "../../api/endpoints";
|
|
import { DrawerItem, DrawerTitle } from "../drawer";
|
|
import { Badge } from "../badge";
|
|
import { autobind, cssNames, interval } from "../../utils";
|
|
import { PodDetailsContainer } from "./pod-details-container";
|
|
import { PodDetailsAffinities } from "./pod-details-affinities";
|
|
import { PodDetailsTolerations } from "./pod-details-tolerations";
|
|
import { Icon } from "../icon";
|
|
import { KubeEventDetails } from "../+events/kube-event-details";
|
|
import { PodDetailsSecrets } from "./pod-details-secrets";
|
|
import { ResourceMetrics } from "../resource-metrics";
|
|
import { podsStore } from "./pods.store";
|
|
import { getDetailsUrl } from "../../navigation";
|
|
import { KubeObjectDetailsProps } from "../kube-object";
|
|
import { getItemMetrics } from "../../api/endpoints/metrics.api";
|
|
import { PodCharts, podMetricTabs } from "./pod-charts";
|
|
import { KubeObjectMeta } from "../kube-object/kube-object-meta";
|
|
import { kubeObjectDetailRegistry } from "../../api/kube-object-detail-registry";
|
|
|
|
interface Props extends KubeObjectDetailsProps<Pod> {
|
|
}
|
|
|
|
@observer
|
|
export class PodDetails extends React.Component<Props> {
|
|
@observable containerMetrics: IPodMetrics;
|
|
|
|
private watcher = interval(60, () => this.loadMetrics());
|
|
|
|
componentDidMount() {
|
|
disposeOnUnmount(this, [
|
|
autorun(() => {
|
|
this.containerMetrics = null;
|
|
this.loadMetrics();
|
|
}),
|
|
reaction(() => this.props.object, () => {
|
|
podsStore.reset();
|
|
})
|
|
]);
|
|
this.watcher.start();
|
|
}
|
|
|
|
componentWillUnmount() {
|
|
podsStore.reset();
|
|
}
|
|
|
|
@autobind()
|
|
async loadMetrics() {
|
|
const { object: pod } = this.props;
|
|
this.containerMetrics = await podsStore.loadContainerMetrics(pod);
|
|
}
|
|
|
|
render() {
|
|
const { object: pod } = this.props;
|
|
if (!pod) return null;
|
|
const { status, spec } = pod;
|
|
const { conditions, podIP } = status;
|
|
const { nodeName } = spec;
|
|
const nodeSelector = pod.getNodeSelectors();
|
|
const volumes = pod.getVolumes();
|
|
const labels = pod.getLabels();
|
|
const metrics = podsStore.metrics;
|
|
return (
|
|
<div className="PodDetails">
|
|
<ResourceMetrics
|
|
loader={() => podsStore.loadMetrics(pod)}
|
|
tabs={podMetricTabs} object={pod} params={{ metrics }}
|
|
>
|
|
<PodCharts/>
|
|
</ResourceMetrics>
|
|
<KubeObjectMeta object={pod}/>
|
|
<DrawerItem name={<Trans>Status</Trans>}>
|
|
<span className={cssNames("status", kebabCase(pod.getStatusMessage()))}>{pod.getStatusMessage()}</span>
|
|
</DrawerItem>
|
|
<DrawerItem name={<Trans>Node</Trans>}>
|
|
{nodeName && (
|
|
<Link to={getDetailsUrl(nodesApi.getUrl({ name: nodeName }))}>
|
|
{nodeName}
|
|
</Link>
|
|
)}
|
|
</DrawerItem>
|
|
<DrawerItem name={<Trans>Pod IP</Trans>}>
|
|
{podIP}
|
|
</DrawerItem>
|
|
<DrawerItem name={<Trans>Priority Class</Trans>}>
|
|
{pod.getPriorityClassName()}
|
|
</DrawerItem>
|
|
<DrawerItem name={<Trans>QoS Class</Trans>}>
|
|
{pod.getQosClass()}
|
|
</DrawerItem>
|
|
{conditions &&
|
|
<DrawerItem name={<Trans>Conditions</Trans>} className="conditions" labelsOnly>
|
|
{
|
|
conditions.map(condition => {
|
|
const { type, status, lastTransitionTime } = condition;
|
|
return (
|
|
<Badge
|
|
key={type}
|
|
label={type}
|
|
className={cssNames({ disabled: status === "False" })}
|
|
tooltip={<Trans>Last transition time: {lastTransitionTime}</Trans>}
|
|
/>
|
|
)
|
|
})
|
|
}
|
|
</DrawerItem>
|
|
}
|
|
{nodeSelector.length > 0 &&
|
|
<DrawerItem name={<Trans>Node Selector</Trans>}>
|
|
{
|
|
nodeSelector.map(label => (
|
|
<Badge key={label} label={label}/>
|
|
))
|
|
}
|
|
</DrawerItem>
|
|
}
|
|
<PodDetailsTolerations workload={pod}/>
|
|
<PodDetailsAffinities workload={pod}/>
|
|
|
|
{pod.getSecrets().length > 0 && (
|
|
<DrawerItem name={<Trans>Secrets</Trans>}>
|
|
<PodDetailsSecrets pod={pod}/>
|
|
</DrawerItem>
|
|
)}
|
|
|
|
{pod.getInitContainers() && pod.getInitContainers().length > 0 &&
|
|
<DrawerTitle title={<Trans>Init Containers</Trans>}/>
|
|
}
|
|
{
|
|
pod.getInitContainers() && pod.getInitContainers().map(container => {
|
|
return <PodDetailsContainer key={container.name} pod={pod} container={container}/>
|
|
})
|
|
}
|
|
<DrawerTitle title={<Trans>Containers</Trans>}/>
|
|
{
|
|
pod.getContainers().map(container => {
|
|
const { name } = container;
|
|
const metrics = getItemMetrics(toJS(this.containerMetrics), name);
|
|
return (
|
|
<PodDetailsContainer
|
|
key={name}
|
|
pod={pod}
|
|
container={container}
|
|
metrics={metrics}
|
|
/>
|
|
)
|
|
})
|
|
}
|
|
|
|
{volumes.length > 0 && (
|
|
<>
|
|
<DrawerTitle title={<Trans>Volumes</Trans>}/>
|
|
{volumes.map(volume => {
|
|
const claimName = volume.persistentVolumeClaim ? volume.persistentVolumeClaim.claimName : null;
|
|
const configMap = volume.configMap ? volume.configMap.name : null;
|
|
const type = Object.keys(volume)[1]
|
|
|
|
return (
|
|
<div key={volume.name} className="volume">
|
|
<div className="title flex gaps">
|
|
<Icon small material="storage"/>
|
|
<span>{volume.name}</span>
|
|
</div>
|
|
<DrawerItem name={<Trans>Type</Trans>}>
|
|
{type}
|
|
</DrawerItem>
|
|
{ type == "configMap" && (
|
|
<div>
|
|
{configMap && (
|
|
<DrawerItem name={<Trans>Name</Trans>}>
|
|
<Link
|
|
to={getDetailsUrl(configMapApi.getUrl({
|
|
name: configMap,
|
|
namespace: pod.getNs(),
|
|
}))}>{configMap}
|
|
</Link>
|
|
</DrawerItem>
|
|
)}
|
|
</div>
|
|
)}
|
|
{ type === "emptyDir" && (
|
|
<div>
|
|
{ volume.emptyDir.medium && (
|
|
<DrawerItem name={<Trans>Medium</Trans>}>
|
|
{volume.emptyDir.medium}
|
|
</DrawerItem>
|
|
)}
|
|
{ volume.emptyDir.sizeLimit && (
|
|
<DrawerItem name={<Trans>Size Limit</Trans>}>
|
|
{volume.emptyDir.sizeLimit}
|
|
</DrawerItem>
|
|
)}
|
|
</div>
|
|
)}
|
|
|
|
{claimName && (
|
|
<DrawerItem name={<Trans>Claim Name</Trans>}>
|
|
<Link
|
|
to={getDetailsUrl(pvcApi.getUrl({
|
|
name: claimName,
|
|
namespace: pod.getNs(),
|
|
}))}
|
|
>{claimName}
|
|
</Link>
|
|
</DrawerItem>
|
|
)}
|
|
</div>
|
|
)
|
|
})}
|
|
</>
|
|
)}
|
|
<KubeEventDetails object={pod}/>
|
|
</div>
|
|
)
|
|
}
|
|
}
|
|
|
|
kubeObjectDetailRegistry.add({
|
|
kind: "Pod",
|
|
apiVersions: ["v1"],
|
|
components: {
|
|
Details: (props: any) => <PodDetails {...props} />
|
|
}
|
|
})
|