mirror of
https://github.com/lensapp/lens.git
synced 2025-05-20 05:10:56 +00:00
170 lines
5.8 KiB
TypeScript
170 lines
5.8 KiB
TypeScript
/**
|
|
* Copyright (c) OpenLens Authors. All rights reserved.
|
|
* Licensed under MIT License. See LICENSE in root directory for more information.
|
|
*/
|
|
|
|
import "./deployment-details.scss";
|
|
|
|
import React from "react";
|
|
import kebabCase from "lodash/kebabCase";
|
|
import { disposeOnUnmount, observer } from "mobx-react";
|
|
import { DrawerItem } from "../drawer";
|
|
import { Badge } from "../badge";
|
|
import { Deployment, getMetricsForDeployments, type IPodMetrics } from "../../../common/k8s-api/endpoints";
|
|
import { PodDetailsTolerations } from "../+workloads-pods/pod-details-tolerations";
|
|
import { PodDetailsAffinities } from "../+workloads-pods/pod-details-affinities";
|
|
import { podsStore } from "../+workloads-pods/pods.store";
|
|
import type { KubeObjectDetailsProps } from "../kube-object-details";
|
|
import { ResourceMetrics, ResourceMetricsText } from "../resource-metrics";
|
|
import { deploymentStore } from "./deployments.store";
|
|
import { PodCharts, podMetricTabs } from "../+workloads-pods/pod-charts";
|
|
import { makeObservable, observable, reaction } from "mobx";
|
|
import { PodDetailsList } from "../+workloads-pods/pod-details-list";
|
|
import { KubeObjectMeta } from "../kube-object-meta";
|
|
import { replicaSetStore } from "../+workloads-replicasets/replicasets.store";
|
|
import { DeploymentReplicaSets } from "./deployment-replicasets";
|
|
import { getActiveClusterEntity } from "../../api/catalog-entity-registry";
|
|
import { ClusterMetricsResourceType } from "../../../common/cluster-types";
|
|
import { boundMethod, Disposer } from "../../utils";
|
|
import logger from "../../../common/logger";
|
|
import type { KubeObjectStore } from "../../../common/k8s-api/kube-object.store";
|
|
import type { KubeObject } from "../../../common/k8s-api/kube-object";
|
|
import { withInjectables } from "@ogre-tools/injectable-react";
|
|
import kubeWatchApiInjectable
|
|
from "../../kube-watch-api/kube-watch-api.injectable";
|
|
|
|
export interface DeploymentDetailsProps extends KubeObjectDetailsProps<Deployment> {
|
|
}
|
|
|
|
interface Dependencies {
|
|
subscribeStores: (stores: KubeObjectStore<KubeObject>[]) => Disposer;
|
|
}
|
|
|
|
@observer
|
|
class NonInjectedDeploymentDetails extends React.Component<DeploymentDetailsProps & Dependencies> {
|
|
@observable metrics: IPodMetrics = null;
|
|
|
|
constructor(props: DeploymentDetailsProps & Dependencies) {
|
|
super(props);
|
|
makeObservable(this);
|
|
}
|
|
|
|
componentDidMount() {
|
|
disposeOnUnmount(this, [
|
|
reaction(() => this.props.object, () => {
|
|
this.metrics = null;
|
|
}),
|
|
|
|
this.props.subscribeStores([
|
|
podsStore,
|
|
replicaSetStore,
|
|
]),
|
|
]);
|
|
}
|
|
|
|
@boundMethod
|
|
async loadMetrics() {
|
|
const { object: deployment } = this.props;
|
|
|
|
this.metrics = await getMetricsForDeployments([deployment], deployment.getNs(), "");
|
|
}
|
|
|
|
render() {
|
|
const { object: deployment } = this.props;
|
|
|
|
if (!deployment) {
|
|
return null;
|
|
}
|
|
|
|
if (!(deployment instanceof Deployment)) {
|
|
logger.error("[DeploymentDetails]: passed object that is not an instanceof Deployment", deployment);
|
|
|
|
return null;
|
|
}
|
|
|
|
const { status, spec } = deployment;
|
|
const nodeSelector = deployment.getNodeSelectors();
|
|
const selectors = deployment.getSelectors();
|
|
const childPods = deploymentStore.getChildPods(deployment);
|
|
const replicaSets = replicaSetStore.getReplicaSetsByOwner(deployment);
|
|
const isMetricHidden = getActiveClusterEntity()?.isMetricHidden(ClusterMetricsResourceType.Deployment);
|
|
|
|
return (
|
|
<div className="DeploymentDetails">
|
|
{!isMetricHidden && podsStore.isLoaded && (
|
|
<ResourceMetrics
|
|
loader={this.loadMetrics}
|
|
tabs={podMetricTabs} object={deployment} params={{ metrics: this.metrics }}
|
|
>
|
|
<PodCharts/>
|
|
</ResourceMetrics>
|
|
)}
|
|
<KubeObjectMeta object={deployment}/>
|
|
<DrawerItem name="Replicas">
|
|
{`${spec.replicas} desired, ${status.updatedReplicas || 0} updated`},{" "}
|
|
{`${status.replicas || 0} total, ${status.availableReplicas || 0} available`},{" "}
|
|
{`${status.unavailableReplicas || 0} unavailable`}
|
|
</DrawerItem>
|
|
{selectors.length > 0 &&
|
|
<DrawerItem name="Selector" labelsOnly>
|
|
{
|
|
selectors.map(label => <Badge key={label} label={label}/>)
|
|
}
|
|
</DrawerItem>
|
|
}
|
|
{nodeSelector.length > 0 &&
|
|
<DrawerItem name="Node Selector">
|
|
{
|
|
nodeSelector.map(label => (
|
|
<Badge key={label} label={label}/>
|
|
))
|
|
}
|
|
</DrawerItem>
|
|
}
|
|
<DrawerItem name="Strategy Type">
|
|
{spec.strategy.type}
|
|
</DrawerItem>
|
|
<DrawerItem name="Conditions" className="conditions" labelsOnly>
|
|
{
|
|
deployment.getConditions().map(condition => {
|
|
const { type, message, lastTransitionTime, status } = condition;
|
|
|
|
return (
|
|
<Badge
|
|
key={type}
|
|
label={type}
|
|
disabled={status === "False"}
|
|
className={kebabCase(type)}
|
|
tooltip={(
|
|
<>
|
|
<p>{message}</p>
|
|
<p>Last transition time: {lastTransitionTime}</p>
|
|
</>
|
|
)}
|
|
/>
|
|
);
|
|
})
|
|
}
|
|
</DrawerItem>
|
|
<PodDetailsTolerations workload={deployment}/>
|
|
<PodDetailsAffinities workload={deployment}/>
|
|
<ResourceMetricsText metrics={this.metrics}/>
|
|
<DeploymentReplicaSets replicaSets={replicaSets}/>
|
|
<PodDetailsList pods={childPods} owner={deployment}/>
|
|
</div>
|
|
);
|
|
}
|
|
}
|
|
|
|
export const DeploymentDetails = withInjectables<Dependencies, DeploymentDetailsProps>(
|
|
NonInjectedDeploymentDetails,
|
|
|
|
{
|
|
getProps: (di, props) => ({
|
|
subscribeStores: di.inject(kubeWatchApiInjectable).subscribeStores,
|
|
...props,
|
|
}),
|
|
},
|
|
);
|
|
|