/** * 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 "./pods.scss"; import React, { Fragment } from "react"; import { observer } from "mobx-react"; import { Link } from "react-router-dom"; import { podsStore } from "./pods.store"; import type { RouteComponentProps } from "react-router"; import { volumeClaimStore } from "../+storage-volume-claims/volume-claim.store"; import { eventStore } from "../+events/event.store"; import { getDetailsUrl, KubeObjectListLayout } from "../kube-object"; import { nodesApi, Pod } from "../../api/endpoints"; import { StatusBrick } from "../status-brick"; import { cssNames, stopPropagation } from "../../utils"; import toPairs from "lodash/toPairs"; import startCase from "lodash/startCase"; import kebabCase from "lodash/kebabCase"; import { lookupApiLink } from "../../api/kube-api"; import { KubeObjectStatusIcon } from "../kube-object-status-icon"; import { Badge } from "../badge"; import type { PodsRouteParams } from "../../../common/routes"; enum columnId { name = "name", namespace = "namespace", containers = "containers", restarts = "restarts", age = "age", qos = "qos", node = "node", owners = "owners", status = "status", } interface Props extends RouteComponentProps { } @observer export class Pods extends React.Component { renderContainersStatus(pod: Pod) { return pod.getContainerStatuses().map(containerStatus => { const { name, state, ready } = containerStatus; return ( (
{name} ({status}{ready ? ", ready" : ""})
{toPairs(state[status]).map(([name, value]) => (
{startCase(name)}
{value}
))}
)) }} />
); }); } render() { return ( pod.getName(), [columnId.namespace]: (pod: Pod) => pod.getNs(), [columnId.containers]: (pod: Pod) => pod.getContainers().length, [columnId.restarts]: (pod: Pod) => pod.getRestartsCount(), [columnId.owners]: (pod: Pod) => pod.getOwnerRefs().map(ref => ref.kind), [columnId.qos]: (pod: Pod) => pod.getQosClass(), [columnId.node]: (pod: Pod) => pod.getNodeName(), [columnId.age]: (pod: Pod) => pod.getTimeDiffFromNow(), [columnId.status]: (pod: Pod) => pod.getStatusMessage(), }} searchFilters={[ (pod: Pod) => pod.getSearchFields(), (pod: Pod) => pod.getStatusMessage(), (pod: Pod) => pod.status.podIP, (pod: Pod) => pod.getNodeName(), ]} renderHeaderTitle="Pods" renderTableHeader={[ { title: "Name", className: "name", sortBy: columnId.name, id: columnId.name }, { className: "warning", showWithColumn: columnId.name }, { title: "Namespace", className: "namespace", sortBy: columnId.namespace, id: columnId.namespace }, { title: "Containers", className: "containers", sortBy: columnId.containers, id: columnId.containers }, { title: "Restarts", className: "restarts", sortBy: columnId.restarts, id: columnId.restarts }, { title: "Controlled By", className: "owners", sortBy: columnId.owners, id: columnId.owners }, { title: "Node", className: "node", sortBy: columnId.node, id: columnId.node }, { title: "QoS", className: "qos", sortBy: columnId.qos, id: columnId.qos }, { title: "Age", className: "age", sortBy: columnId.age, id: columnId.age }, { title: "Status", className: "status", sortBy: columnId.status, id: columnId.status }, ]} renderTableContents={(pod: Pod) => [ , , pod.getNs(), this.renderContainersStatus(pod), pod.getRestartsCount(), pod.getOwnerRefs().map(ref => { const { kind, name } = ref; const detailsLink = getDetailsUrl(lookupApiLink(ref, pod)); return ( {kind} ); }), pod.getNodeName() ? {pod.getNodeName()} : "", pod.getQosClass(), pod.getAge(), { title: pod.getStatusMessage(), className: kebabCase(pod.getStatusMessage()) } ]} /> ); } }