/** * Copyright (c) 2021 OpenLens Authors * * Permission is hereby granted, free of charge, to any person obtaining a copy of * this software and associated documentation files (the "Software"), to deal in * the Software without restriction, including without limitation the rights to * use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of * the Software, and to permit persons to whom the Software is furnished to do so, * subject to the following conditions: * * The above copyright notice and this permission notice shall be included in all * copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS * FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR * COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ import "./pod-details-container.scss"; import React from "react"; import type { IPodContainer, IPodContainerStatus, 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 type { IMetrics } from "../../api/endpoints/metrics.api"; import { ContainerCharts } from "./container-charts"; import { LocaleDate } from "../locale-date"; import { getActiveClusterEntity } from "../../api/catalog-entity-registry"; import { ClusterMetricsResourceType } from "../../../main/cluster"; interface Props { pod: Pod; container: IPodContainer; metrics?: { [key: string]: IMetrics }; } export class PodDetailsContainer extends React.Component { renderStatus(state: string, status: IPodContainerStatus) { const ready = status ? status.ready : ""; return ( {state}{ready ? `, ready` : ""} {state === "terminated" ? ` - ${status.state.terminated.reason} (exit code: ${status.state.terminated.exitCode})` : ""} ); } renderLastState(lastState: string, status: IPodContainerStatus) { if (lastState === "terminated") { return ( {lastState}
Reason: {status.lastState.terminated.reason} - exit code: {status.lastState.terminated.exitCode}
Started at: {}
Finished at: {}
); } return null; } 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 lastState = status ? Object.keys(status.lastState)[0] : ""; const ready = status ? status.ready : ""; const imageId = status? status.imageID : ""; const liveness = pod.getLivenessProbe(container); const readiness = pod.getReadinessProbe(container); const startup = pod.getStartupProbe(container); const isInitContainer = !!pod.getInitContainers().find(c => c.name == name); const metricTabs = [ "CPU", "Memory", "Filesystem", ]; const isMetricHidden = getActiveClusterEntity()?.isMetricHidden(ClusterMetricsResourceType.Container); return (
{name}
{!isMetricHidden && !isInitContainer && } {status && {this.renderStatus(state, status)} } {lastState && {this.renderLastState(lastState, status)} } {imagePullPolicy && imagePullPolicy !== "IfNotPresent" && {imagePullPolicy} } {ports && ports.length > 0 && { ports.map((port) => { const key = `${container.name}-port-${port.containerPort}-${port.protocol}`; return ( ); }) } } {} {volumeMounts && volumeMounts.length > 0 && { volumeMounts.map(mount => { const { name, mountPath, readOnly } = mount; return ( {mountPath} from {name} ({readOnly ? "ro" : "rw"}) ); }) } } {liveness.length > 0 && { liveness.map((value, index) => ( )) } } {readiness.length > 0 && { readiness.map((value, index) => ( )) } } {startup.length > 0 && { startup.map((value, index) => ( )) } } {command && {command.join(" ")} } {args && {args.join(" ")} }
); } }