Fixed ResourceUtilization component for POD Memory Limits (#23982)

Signed-off-by: Deepankumar Loganathan <deepan0433@gmail.com>
This commit is contained in:
Deepankumar
2024-04-04 17:36:41 +02:00
committed by GitHub
parent 7882ea60d3
commit e6d474f1bb
2 changed files with 6 additions and 1 deletions
+5
View File
@@ -0,0 +1,5 @@
---
'@backstage/plugin-kubernetes-react': patch
---
Fixed ResourceUtilization component for POD Memory Limits
@@ -129,7 +129,7 @@ export const PodDrawer = ({ podAndErrors, open }: PodDrawerProps) => {
title="Memory limits"
usage={podMetrics.memory.currentUsage}
total={podMetrics.memory.limitTotal}
totalFormatted={bytesToMiB(podMetrics.memory.requestTotal)}
totalFormatted={bytesToMiB(podMetrics.memory.limitTotal)}
/>
</Grid>
</Grid>