mirror of
https://github.com/lensapp/lens.git
synced 2025-05-20 05:10:56 +00:00
* fix lint Signed-off-by: Roman <ixrock@gmail.com> * fixes & refactoring Signed-off-by: Roman <ixrock@gmail.com> * fix lint, micro-refactoring Signed-off-by: Roman <ixrock@gmail.com> * more refactoring, clean up, responding to comments Signed-off-by: Roman <ixrock@gmail.com> * fix: remove extra check for cluster.allowedApi from processing buffered watch-api events Signed-off-by: Roman <ixrock@gmail.com> * refactoring, detaching NamespaceStore from KubeObjectStore Signed-off-by: Roman <ixrock@gmail.com> * fix: wait for contextReady in NamespaceStore Signed-off-by: Roman <ixrock@gmail.com> * refactoring & fixes Signed-off-by: Roman <ixrock@gmail.com> * fix lint Signed-off-by: Roman <ixrock@gmail.com> * fixes: reloading context stores on NamespaceSelect-change Signed-off-by: Roman <ixrock@gmail.com> * optimize loading all resources when "all namespaces" selected -> single request per resource (when have rights) Signed-off-by: Roman <ixrock@gmail.com> * use native k8s api watches Signed-off-by: Jari Kolehmainen <jari.kolehmainen@gmail.com> * retry watch when it makes sense Signed-off-by: Jari Kolehmainen <jari.kolehmainen@gmail.com> * workaround for browser connection limits Signed-off-by: Jari Kolehmainen <jari.kolehmainen@gmail.com> * cleanup Signed-off-by: Jari Kolehmainen <jari.kolehmainen@gmail.com> * cleanup Signed-off-by: Jari Kolehmainen <jari.kolehmainen@gmail.com> * use always random subdomain for getResponse Signed-off-by: Jari Kolehmainen <jari.kolehmainen@gmail.com> * resubscribe stores on contextNamespace change Signed-off-by: Jari Kolehmainen <jari.kolehmainen@gmail.com> * fix Signed-off-by: Jari Kolehmainen <jari.kolehmainen@gmail.com> * modify watch event before calling callback Signed-off-by: Jari Kolehmainen <jari.kolehmainen@gmail.com> Co-authored-by: Roman <ixrock@gmail.com>
123 lines
3.8 KiB
TypeScript
123 lines
3.8 KiB
TypeScript
import "./job-details.scss";
|
|
|
|
import React from "react";
|
|
import kebabCase from "lodash/kebabCase";
|
|
import { observer } from "mobx-react";
|
|
import { DrawerItem } from "../drawer";
|
|
import { Badge } from "../badge";
|
|
import { PodDetailsStatuses } from "../+workloads-pods/pod-details-statuses";
|
|
import { Link } from "react-router-dom";
|
|
import { PodDetailsTolerations } from "../+workloads-pods/pod-details-tolerations";
|
|
import { PodDetailsAffinities } from "../+workloads-pods/pod-details-affinities";
|
|
import { KubeEventDetails } from "../+events/kube-event-details";
|
|
import { podsStore } from "../+workloads-pods/pods.store";
|
|
import { jobStore } from "./job.store";
|
|
import { getDetailsUrl, KubeObjectDetailsProps } from "../kube-object";
|
|
import { Job } from "../../api/endpoints";
|
|
import { PodDetailsList } from "../+workloads-pods/pod-details-list";
|
|
import { lookupApiLink } from "../../api/kube-api";
|
|
import { KubeObjectMeta } from "../kube-object/kube-object-meta";
|
|
import { kubeObjectDetailRegistry } from "../../api/kube-object-detail-registry";
|
|
|
|
interface Props extends KubeObjectDetailsProps<Job> {
|
|
}
|
|
|
|
@observer
|
|
export class JobDetails extends React.Component<Props> {
|
|
async componentDidMount() {
|
|
podsStore.reloadAll();
|
|
}
|
|
|
|
render() {
|
|
const { object: job } = this.props;
|
|
|
|
if (!job) return null;
|
|
const selectors = job.getSelectors();
|
|
const nodeSelector = job.getNodeSelectors();
|
|
const images = job.getImages();
|
|
const childPods = jobStore.getChildPods(job);
|
|
const ownerRefs = job.getOwnerRefs();
|
|
const condition = job.getCondition();
|
|
|
|
return (
|
|
<div className="JobDetails">
|
|
<KubeObjectMeta object={job}/>
|
|
<DrawerItem name="Selector" labelsOnly>
|
|
{
|
|
Object.keys(selectors).map(label => <Badge key={label} label={label}/>)
|
|
}
|
|
</DrawerItem>
|
|
{nodeSelector.length > 0 &&
|
|
<DrawerItem name="Node Selector" labelsOnly>
|
|
{
|
|
nodeSelector.map(label => (
|
|
<Badge key={label} label={label}/>
|
|
))
|
|
}
|
|
</DrawerItem>
|
|
}
|
|
{images.length > 0 &&
|
|
<DrawerItem name="Images">
|
|
{
|
|
images.map(image => <p key={image}>{image}</p>)
|
|
}
|
|
</DrawerItem>
|
|
}
|
|
{ownerRefs.length > 0 &&
|
|
<DrawerItem name="Controlled by">
|
|
{
|
|
ownerRefs.map(ref => {
|
|
const { name, kind } = ref;
|
|
const detailsUrl = getDetailsUrl(lookupApiLink(ref, job));
|
|
|
|
return (
|
|
<p key={name}>
|
|
{kind} <Link to={detailsUrl}>{name}</Link>
|
|
</p>
|
|
);
|
|
})
|
|
}
|
|
</DrawerItem>
|
|
}
|
|
<DrawerItem name="Conditions" className="conditions" labelsOnly>
|
|
{condition && (
|
|
<Badge
|
|
className={kebabCase(condition.type)}
|
|
label={condition.type}
|
|
tooltip={condition.message}
|
|
/>
|
|
)}
|
|
</DrawerItem>
|
|
<DrawerItem name="Completions">
|
|
{job.getDesiredCompletions()}
|
|
</DrawerItem>
|
|
<DrawerItem name="Parallelism">
|
|
{job.getParallelism()}
|
|
</DrawerItem>
|
|
<PodDetailsTolerations workload={job}/>
|
|
<PodDetailsAffinities workload={job}/>
|
|
<DrawerItem name="Pod Status" className="pod-status">
|
|
<PodDetailsStatuses pods={childPods}/>
|
|
</DrawerItem>
|
|
<PodDetailsList pods={childPods} owner={job}/>
|
|
</div>
|
|
);
|
|
}
|
|
}
|
|
|
|
kubeObjectDetailRegistry.add({
|
|
kind: "Job",
|
|
apiVersions: ["batch/v1"],
|
|
components: {
|
|
Details: (props: any) => <JobDetails {...props}/>
|
|
}
|
|
});
|
|
kubeObjectDetailRegistry.add({
|
|
kind: "Job",
|
|
apiVersions: ["batch/v1"],
|
|
priority: 5,
|
|
components: {
|
|
Details: (props: any) => <KubeEventDetails {...props}/>
|
|
}
|
|
});
|