mirror of
https://github.com/lensapp/lens.git
synced 2025-05-20 05:10:56 +00:00
* Re-implement deployment revisions * Fix css Signed-off-by: Lauri Nevala <lauri.nevala@gmail.com>
160 lines
5.9 KiB
TypeScript
160 lines
5.9 KiB
TypeScript
/**
|
|
* 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 "./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 } from "../../api/endpoints";
|
|
import { cssNames } from "../../utils";
|
|
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 { KubeObjectDetailsProps } from "../kube-object";
|
|
import { ResourceMetrics, ResourceMetricsText } from "../resource-metrics";
|
|
import { deploymentStore } from "./deployments.store";
|
|
import { PodCharts, podMetricTabs } from "../+workloads-pods/pod-charts";
|
|
import { reaction } from "mobx";
|
|
import { PodDetailsList } from "../+workloads-pods/pod-details-list";
|
|
import { KubeObjectMeta } from "../kube-object/kube-object-meta";
|
|
import { kubeObjectDetailRegistry } from "../../api/kube-object-detail-registry";
|
|
import { ResourceType } from "../cluster-settings/components/cluster-metrics-setting";
|
|
import { ClusterStore } from "../../../common/cluster-store";
|
|
import { replicaSetStore } from "../+workloads-replicasets/replicasets.store";
|
|
import { DeploymentReplicaSets } from "./deployment-replicasets";
|
|
|
|
interface Props extends KubeObjectDetailsProps<Deployment> {
|
|
}
|
|
|
|
@observer
|
|
export class DeploymentDetails extends React.Component<Props> {
|
|
@disposeOnUnmount
|
|
clean = reaction(() => this.props.object, () => {
|
|
deploymentStore.reset();
|
|
});
|
|
|
|
componentDidMount() {
|
|
podsStore.reloadAll();
|
|
replicaSetStore.reloadAll();
|
|
}
|
|
|
|
componentWillUnmount() {
|
|
deploymentStore.reset();
|
|
}
|
|
|
|
render() {
|
|
const { object: deployment } = this.props;
|
|
|
|
if (!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 metrics = deploymentStore.metrics;
|
|
const isMetricHidden = ClusterStore.getInstance().isMetricHidden(ResourceType.Deployment);
|
|
|
|
return (
|
|
<div className="DeploymentDetails">
|
|
{!isMetricHidden && podsStore.isLoaded && (
|
|
<ResourceMetrics
|
|
loader={() => deploymentStore.loadMetrics(deployment)}
|
|
tabs={podMetricTabs} object={deployment} params={{ 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}
|
|
className={cssNames({ disabled: status === "False" }, kebabCase(type))}
|
|
tooltip={(
|
|
<>
|
|
<p>{message}</p>
|
|
<p>Last transition time: {lastTransitionTime}</p>
|
|
</>
|
|
)}
|
|
/>
|
|
);
|
|
})
|
|
}
|
|
</DrawerItem>
|
|
<PodDetailsTolerations workload={deployment}/>
|
|
<PodDetailsAffinities workload={deployment}/>
|
|
<ResourceMetricsText metrics={metrics}/>
|
|
<DeploymentReplicaSets replicaSets={replicaSets}/>
|
|
<PodDetailsList pods={childPods} owner={deployment}/>
|
|
</div>
|
|
);
|
|
}
|
|
}
|
|
|
|
kubeObjectDetailRegistry.add({
|
|
kind: "Deployment",
|
|
apiVersions: ["apps/v1"],
|
|
components: {
|
|
Details: (props: any) => <DeploymentDetails {...props} />
|
|
}
|
|
});
|
|
kubeObjectDetailRegistry.add({
|
|
kind: "Deployment",
|
|
apiVersions: ["apps/v1"],
|
|
priority: 5,
|
|
components: {
|
|
Details: (props: any) => <KubeEventDetails {...props} />
|
|
}
|
|
});
|