mirror of
https://github.com/lensapp/lens.git
synced 2025-05-20 05:10:56 +00:00
* adding port-forward for containers in pods address review comments use more idiomatic approach for async code move some files in advance of merge conflict with Lens restructure work * Separate the port forward links in the UI (so they don't all spin when one link is clicked) * minor fixes * addressed review comments (replaced <p> with <div>, moved key attribute to proper element) * fix lint issue * removed extraneous <div> from pod container port details Signed-off-by: Jim Ehrismann <jehrismann@mirantis.com>
125 lines
4.3 KiB
TypeScript
125 lines
4.3 KiB
TypeScript
import "./pod-details-container.scss"
|
|
|
|
import 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 { PodContainerPort } from "./pod-container-port";
|
|
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 key = `${container.name}-port-${port.containerPort}-${port.protocol}`
|
|
return(
|
|
<PodContainerPort pod={pod} port={port} key={key}/>
|
|
)
|
|
})
|
|
}
|
|
</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.join(' ')}
|
|
</DrawerItem>
|
|
}
|
|
|
|
{args &&
|
|
<DrawerItem name={<Trans>Arguments</Trans>}>
|
|
{args.join(' ')}
|
|
</DrawerItem>
|
|
}
|
|
</div>
|
|
)
|
|
}
|
|
} |