mirror of
https://github.com/lensapp/lens.git
synced 2025-05-20 05:10:56 +00:00
127 lines
4.3 KiB
TypeScript
127 lines
4.3 KiB
TypeScript
import "./pod-details-container.scss"
|
|
|
|
import * as React from "react";
|
|
import { t, Trans } from "@lingui/macro";
|
|
import { IPodContainer, Pod } from "../../api/endpoints";
|
|
import { DrawerItem } from "../drawer";
|
|
import { cssNames } from "../../utils";
|
|
import { StatusBrick } from "../status-brick";
|
|
import { Badge } from "../badge";
|
|
import { ContainerEnvironment } from "./pod-container-env";
|
|
import { ResourceMetrics } from "../resource-metrics";
|
|
import { IMetrics } from "../../api/endpoints/metrics.api";
|
|
import { ContainerCharts } from "./container-charts";
|
|
import { _i18n } from "../../i18n";
|
|
|
|
interface Props {
|
|
pod: Pod;
|
|
container: IPodContainer;
|
|
metrics?: { [key: string]: IMetrics };
|
|
}
|
|
|
|
export class PodDetailsContainer extends React.Component<Props> {
|
|
render() {
|
|
const { pod, container, metrics } = this.props
|
|
if (!pod || !container) return null
|
|
const { name, image, imagePullPolicy, ports, volumeMounts, command, args } = container
|
|
const status = pod.getContainerStatuses().find(status => status.name === container.name)
|
|
const state = status ? Object.keys(status.state)[0] : ""
|
|
const ready = status ? status.ready : ""
|
|
const liveness = pod.getLivenessProbe(container)
|
|
const readiness = pod.getReadinessProbe(container)
|
|
const isInitContainer = !!pod.getInitContainers().find(c => c.name == name);
|
|
const metricTabs = [
|
|
<Trans>CPU</Trans>,
|
|
<Trans>Memory</Trans>,
|
|
<Trans>Filesystem</Trans>,
|
|
];
|
|
return (
|
|
<div className="PodDetailsContainer">
|
|
<div className="pod-container-title">
|
|
<StatusBrick className={cssNames(state, { ready })}/>{name}
|
|
</div>
|
|
{!isInitContainer &&
|
|
<ResourceMetrics tabs={metricTabs} params={{ metrics }}>
|
|
<ContainerCharts/>
|
|
</ResourceMetrics>
|
|
}
|
|
{status &&
|
|
<DrawerItem name={<Trans>Status</Trans>}>
|
|
<span className={cssNames("status", state)}>
|
|
{state}{ready ? `, ${_i18n._(t`ready`)}` : ""}
|
|
{state === 'terminated' ? ` - ${status.state.terminated.reason} (${_i18n._(t`exit code`)}: ${status.state.terminated.exitCode})` : ''}
|
|
</span>
|
|
</DrawerItem>
|
|
}
|
|
<DrawerItem name={<Trans>Image</Trans>}>
|
|
{image}
|
|
</DrawerItem>
|
|
{imagePullPolicy && imagePullPolicy !== "IfNotPresent" &&
|
|
<DrawerItem name={<Trans>ImagePullPolicy</Trans>}>
|
|
{imagePullPolicy}
|
|
</DrawerItem>
|
|
}
|
|
{ports && ports.length > 0 &&
|
|
<DrawerItem name={<Trans>Ports</Trans>}>
|
|
{
|
|
ports.map(port => {
|
|
const { name, containerPort, protocol } = port;
|
|
const key = `${container.name}-port-${containerPort}-${protocol}`
|
|
return (
|
|
<div key={key}>
|
|
{name ? name + ': ' : ''}{containerPort}/{protocol}
|
|
</div>
|
|
)
|
|
})
|
|
}
|
|
</DrawerItem>
|
|
}
|
|
{<ContainerEnvironment container={container} namespace={pod.getNs()}/>}
|
|
{volumeMounts && volumeMounts.length > 0 &&
|
|
<DrawerItem name={<Trans>Mounts</Trans>}>
|
|
{
|
|
volumeMounts.map(mount => {
|
|
const { name, mountPath, readOnly } = mount;
|
|
return (
|
|
<React.Fragment key={name + mountPath}>
|
|
<span className="mount-path">{mountPath}</span>
|
|
<span className="mount-from">from {name} ({readOnly ? 'ro' : 'rw'})</span>
|
|
</React.Fragment>
|
|
)
|
|
})
|
|
}
|
|
</DrawerItem>
|
|
}
|
|
{liveness.length > 0 &&
|
|
<DrawerItem name={<Trans>Liveness</Trans>} labelsOnly>
|
|
{
|
|
liveness.map((value, index) => (
|
|
<Badge key={index} label={value}/>
|
|
))
|
|
}
|
|
</DrawerItem>
|
|
}
|
|
{readiness.length > 0 &&
|
|
<DrawerItem name={<Trans>Readiness</Trans>} labelsOnly>
|
|
{
|
|
readiness.map((value, index) => (
|
|
<Badge key={index} label={value}/>
|
|
))
|
|
}
|
|
</DrawerItem>
|
|
}
|
|
{command &&
|
|
<DrawerItem name={<Trans>Command</Trans>}>
|
|
{command}
|
|
</DrawerItem>
|
|
}
|
|
|
|
{args &&
|
|
<DrawerItem name={<Trans>Arguments</Trans>}>
|
|
{args.join(' ')}
|
|
</DrawerItem>
|
|
}
|
|
</div>
|
|
)
|
|
}
|
|
} |